123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520 |
- #include "visual_script_func_nodes.h"
- #include "scene/main/scene_main_loop.h"
- #include "os/os.h"
- #include "scene/main/node.h"
- #include "visual_script_nodes.h"
- #include "io/resource_loader.h"
- #include "globals.h"
- //////////////////////////////////////////
- ////////////////CALL//////////////////////
- //////////////////////////////////////////
- int VisualScriptFunctionCall::get_output_sequence_port_count() const {
- if (method_cache.flags&METHOD_FLAG_CONST || call_mode==CALL_MODE_BASIC_TYPE)
- return 0;
- else
- return 1;
- }
- bool VisualScriptFunctionCall::has_input_sequence_port() const{
- if (method_cache.flags&METHOD_FLAG_CONST || call_mode==CALL_MODE_BASIC_TYPE)
- return false;
- else
- return true;
- }
- #ifdef TOOLS_ENABLED
- static Node* _find_script_node(Node* p_edited_scene,Node* p_current_node,const Ref<Script> &script) {
- if (p_edited_scene!=p_current_node && p_current_node->get_owner()!=p_edited_scene)
- return NULL;
- Ref<Script> scr = p_current_node->get_script();
- if (scr.is_valid() && scr==script)
- return p_current_node;
- for(int i=0;i<p_current_node->get_child_count();i++) {
- Node *n = _find_script_node(p_edited_scene,p_current_node->get_child(i),script);
- if (n)
- return n;
- }
- return NULL;
- }
- #endif
- Node *VisualScriptFunctionCall::_get_base_node() const {
- #ifdef TOOLS_ENABLED
- Ref<Script> script = get_visual_script();
- if (!script.is_valid())
- return NULL;
- MainLoop * main_loop = OS::get_singleton()->get_main_loop();
- if (!main_loop)
- return NULL;
- SceneTree *scene_tree = main_loop->cast_to<SceneTree>();
- if (!scene_tree)
- return NULL;
- Node *edited_scene = scene_tree->get_edited_scene_root();
- if (!edited_scene)
- return NULL;
- Node* script_node = _find_script_node(edited_scene,edited_scene,script);
- if (!script_node)
- return NULL;
- if (!script_node->has_node(base_path))
- return NULL;
- Node *path_to = script_node->get_node(base_path);
- return path_to;
- #else
- return NULL;
- #endif
- }
- StringName VisualScriptFunctionCall::_get_base_type() const {
- if (call_mode==CALL_MODE_SELF && get_visual_script().is_valid())
- return get_visual_script()->get_instance_base_type();
- else if (call_mode==CALL_MODE_NODE_PATH && get_visual_script().is_valid()) {
- Node *path = _get_base_node();
- if (path)
- return path->get_type();
- }
- return base_type;
- }
- int VisualScriptFunctionCall::get_input_value_port_count() const{
- if (call_mode==CALL_MODE_BASIC_TYPE) {
- Vector<StringName> names = Variant::get_method_argument_names(basic_type,function);
- return names.size() + (rpc_call_mode>=RPC_RELIABLE_TO_ID?1:0) + 1;
- } else {
- MethodBind *mb = ObjectTypeDB::get_method(_get_base_type(),function);
- if (mb) {
- return mb->get_argument_count() + (call_mode==CALL_MODE_INSTANCE?1:0) + (rpc_call_mode>=RPC_RELIABLE_TO_ID?1:0) - use_default_args;
- }
- return method_cache.arguments.size() + (call_mode==CALL_MODE_INSTANCE?1:0) + (rpc_call_mode>=RPC_RELIABLE_TO_ID?1:0) - use_default_args;
- }
- }
- int VisualScriptFunctionCall::get_output_value_port_count() const{
- if (call_mode==CALL_MODE_BASIC_TYPE) {
- bool returns=false;
- Variant::get_method_return_type(basic_type,function,&returns);
- return returns?1:0;
- } else {
- int ret;
- MethodBind *mb = ObjectTypeDB::get_method(_get_base_type(),function);
- if (mb) {
- ret = mb->has_return() ? 1 : 0;
- } else
- ret = 1; //it is assumed that script always returns something
- if (call_mode==CALL_MODE_INSTANCE) {
- ret++;
- }
- return ret;
- }
- }
- String VisualScriptFunctionCall::get_output_sequence_port_text(int p_port) const {
- return String();
- }
- PropertyInfo VisualScriptFunctionCall::get_input_value_port_info(int p_idx) const{
- if (call_mode==CALL_MODE_INSTANCE || call_mode==CALL_MODE_BASIC_TYPE) {
- if (p_idx==0) {
- PropertyInfo pi;
- pi.type=(call_mode==CALL_MODE_INSTANCE?Variant::OBJECT:basic_type);
- pi.name=(call_mode==CALL_MODE_INSTANCE?String("instance"):Variant::get_type_name(basic_type).to_lower());
- return pi;
- } else {
- p_idx--;
- }
- }
- if (rpc_call_mode>=RPC_RELIABLE_TO_ID) {
- if (p_idx==0) {
- return PropertyInfo(Variant::INT,"peer_id");
- } else {
- p_idx--;
- }
- }
- #ifdef DEBUG_METHODS_ENABLED
- if (call_mode==CALL_MODE_BASIC_TYPE) {
- Vector<StringName> names = Variant::get_method_argument_names(basic_type,function);
- Vector<Variant::Type> types = Variant::get_method_argument_types(basic_type,function);
- return PropertyInfo(types[p_idx],names[p_idx]);
- } else {
- MethodBind *mb = ObjectTypeDB::get_method(_get_base_type(),function);
- if (mb) {
- return mb->get_argument_info(p_idx);
- }
- if (p_idx>=0 && p_idx < method_cache.arguments.size()) {
- return method_cache.arguments[p_idx];
- }
- return PropertyInfo();
- }
- #else
- return PropertyInfo();
- #endif
- }
- PropertyInfo VisualScriptFunctionCall::get_output_value_port_info(int p_idx) const{
- #ifdef DEBUG_METHODS_ENABLED
- if (call_mode==CALL_MODE_BASIC_TYPE) {
- return PropertyInfo(Variant::get_method_return_type(basic_type,function),"");
- } else {
- if (call_mode==CALL_MODE_INSTANCE) {
- if (p_idx==0) {
- return PropertyInfo(Variant::OBJECT,"pass");
- } else {
- p_idx--;
- }
- }
- PropertyInfo ret;
- /*MethodBind *mb = ObjectTypeDB::get_method(_get_base_type(),function);
- if (mb) {
- ret = mb->get_argument_info(-1);
- } else {*/
- ret = method_cache.return_val;
- //}
- if (call_mode==CALL_MODE_INSTANCE) {
- ret.name="return";
- } else {
- ret.name="";
- }
- return ret;
- }
- #else
- return PropertyInfo();
- #endif
- }
- String VisualScriptFunctionCall::get_caption() const {
- static const char*cname[5]= {
- "CallSelf",
- "CallNode",
- "CallInstance",
- "CallBasic",
- "CallSingleton"
- };
- String caption = cname[call_mode];
- if (rpc_call_mode) {
- caption+=" (RPC)";
- }
- return caption;
- }
- String VisualScriptFunctionCall::get_text() const {
- if (call_mode==CALL_MODE_SELF)
- return " "+String(function)+"()";
- if (call_mode==CALL_MODE_SINGLETON)
- return String(singleton)+":"+String(function)+"()";
- else if (call_mode==CALL_MODE_BASIC_TYPE)
- return Variant::get_type_name(basic_type)+"."+String(function)+"()";
- else if (call_mode==CALL_MODE_NODE_PATH)
- return " ["+String(base_path.simplified())+"]."+String(function)+"()";
- else
- return " "+base_type+"."+String(function)+"()";
- }
- void VisualScriptFunctionCall::set_basic_type(Variant::Type p_type) {
- if (basic_type==p_type)
- return;
- basic_type=p_type;
- _change_notify();
- ports_changed_notify();
- }
- Variant::Type VisualScriptFunctionCall::get_basic_type() const{
- return basic_type;
- }
- void VisualScriptFunctionCall::set_base_type(const StringName& p_type) {
- if (base_type==p_type)
- return;
- base_type=p_type;
- _change_notify();
- ports_changed_notify();
- }
- StringName VisualScriptFunctionCall::get_base_type() const{
- return base_type;
- }
- void VisualScriptFunctionCall::set_base_script(const String& p_path) {
- if (base_script==p_path)
- return;
- base_script=p_path;
- _change_notify();
- ports_changed_notify();
- }
- String VisualScriptFunctionCall::get_base_script() const {
- return base_script;
- }
- void VisualScriptFunctionCall::set_singleton(const StringName& p_path) {
- if (singleton==p_path)
- return;
- singleton=p_path;
- Object *obj = Globals::get_singleton()->get_singleton_object(singleton);
- if (obj) {
- base_type=obj->get_type();
- }
- _change_notify();
- ports_changed_notify();
- }
- StringName VisualScriptFunctionCall::get_singleton() const {
- return singleton;
- }
- void VisualScriptFunctionCall::_update_method_cache() {
- StringName type;
- Ref<Script> script;
- if (call_mode==CALL_MODE_NODE_PATH) {
- Node* node=_get_base_node();
- if (node) {
- type=node->get_type();
- base_type=type; //cache, too
- script = node->get_script();
- }
- } else if (call_mode==CALL_MODE_SELF) {
- if (get_visual_script().is_valid()) {
- type=get_visual_script()->get_instance_base_type();
- base_type=type; //cache, too
- script=get_visual_script();
- }
- } else if (call_mode==CALL_MODE_SINGLETON) {
- Object *obj = Globals::get_singleton()->get_singleton_object(singleton);
- if (obj) {
- type=obj->get_type();
- script=obj->get_script();
- }
- } else if (call_mode==CALL_MODE_INSTANCE) {
- type=base_type;
- if (base_script!=String()) {
- if (!ResourceCache::has(base_script) && ScriptServer::edit_request_func) {
- ScriptServer::edit_request_func(base_script); //make sure it's loaded
- }
- if (ResourceCache::has(base_script)) {
- script = Ref<Resource>( ResourceCache::get(base_script) );
- } else {
- return;
- }
- }
- }
- // print_line("BASE: "+String(type)+" FUNC: "+String(function));
- MethodBind *mb = ObjectTypeDB::get_method(type,function);
- if (mb) {
- use_default_args=mb->get_default_argument_count();
- method_cache = MethodInfo();
- for(int i=0;i<mb->get_argument_count();i++) {
- #ifdef DEBUG_METHODS_ENABLED
- method_cache.arguments.push_back(mb->get_argument_info(i));
- #else
- method_cache.arguments.push_back(PropertyInfo());
- #endif
- }
- if (mb->is_const()) {
- method_cache.flags|=METHOD_FLAG_CONST;
- }
- #ifdef DEBUG_METHODS_ENABLED
- method_cache.return_val = mb->get_argument_info(-1);
- #endif
- } else if (script.is_valid() && script->has_method(function)) {
- method_cache = script->get_method_info(function);
- use_default_args=method_cache.default_arguments.size();
- }
- }
- void VisualScriptFunctionCall::set_function(const StringName& p_type){
- if (function==p_type)
- return;
- function=p_type;
- if (call_mode==CALL_MODE_BASIC_TYPE) {
- use_default_args = Variant::get_method_default_arguments(basic_type,function).size();
- } else {
- //update all caches
- _update_method_cache();
- }
- _change_notify();
- ports_changed_notify();
- }
- StringName VisualScriptFunctionCall::get_function() const {
- return function;
- }
- void VisualScriptFunctionCall::set_base_path(const NodePath& p_type) {
- if (base_path==p_type)
- return;
- base_path=p_type;
- _change_notify();
- ports_changed_notify();
- }
- NodePath VisualScriptFunctionCall::get_base_path() const {
- return base_path;
- }
- void VisualScriptFunctionCall::set_call_mode(CallMode p_mode) {
- if (call_mode==p_mode)
- return;
- call_mode=p_mode;
- _change_notify();
- ports_changed_notify();
- }
- VisualScriptFunctionCall::CallMode VisualScriptFunctionCall::get_call_mode() const {
- return call_mode;
- }
- void VisualScriptFunctionCall::set_use_default_args(int p_amount) {
- if (use_default_args==p_amount)
- return;
- use_default_args=p_amount;
- ports_changed_notify();
- }
- void VisualScriptFunctionCall::set_rpc_call_mode(VisualScriptFunctionCall::RPCCallMode p_mode) {
- if (rpc_call_mode==p_mode)
- return;
- rpc_call_mode=p_mode;
- ports_changed_notify();
- _change_notify();
- }
- VisualScriptFunctionCall::RPCCallMode VisualScriptFunctionCall::get_rpc_call_mode() const{
- return rpc_call_mode;
- }
- int VisualScriptFunctionCall::get_use_default_args() const{
- return use_default_args;
- }
- void VisualScriptFunctionCall::set_validate(bool p_amount) {
- validate=p_amount;
- }
- bool VisualScriptFunctionCall::get_validate() const {
- return validate;
- }
- void VisualScriptFunctionCall::_set_argument_cache(const Dictionary& p_cache) {
- //so everything works in case all else fails
- method_cache=MethodInfo::from_dict(p_cache);
- }
- Dictionary VisualScriptFunctionCall::_get_argument_cache() const {
- return method_cache;
- }
- void VisualScriptFunctionCall::_validate_property(PropertyInfo& property) const {
- if (property.name=="function/base_type") {
- if (call_mode!=CALL_MODE_INSTANCE) {
- property.usage=PROPERTY_USAGE_NOEDITOR;
- }
- }
- if (property.name=="function/base_script") {
- if (call_mode!=CALL_MODE_INSTANCE) {
- property.usage=0;
- }
- }
- if (property.name=="function/basic_type") {
- if (call_mode!=CALL_MODE_BASIC_TYPE) {
- property.usage=0;
- }
- }
- if (property.name=="function/singleton") {
- if (call_mode!=CALL_MODE_SINGLETON) {
- property.usage=0;
- } else {
- List<Globals::Singleton> names;
- Globals::get_singleton()->get_singletons(&names);
- property.hint=PROPERTY_HINT_ENUM;
- String sl;
- for (List<Globals::Singleton>::Element *E=names.front();E;E=E->next()) {
- if (sl!=String())
- sl+=",";
- sl+=E->get().name;
- }
- property.hint_string=sl;
- }
- }
- if (property.name=="function/node_path") {
- if (call_mode!=CALL_MODE_NODE_PATH) {
- property.usage=0;
- } else {
- Node *bnode = _get_base_node();
- if (bnode) {
- property.hint_string=bnode->get_path(); //convert to loong string
- } else {
- }
- }
- }
- if (property.name=="function/function") {
- if (call_mode==CALL_MODE_BASIC_TYPE) {
- property.hint=PROPERTY_HINT_METHOD_OF_VARIANT_TYPE;
- property.hint_string=Variant::get_type_name(basic_type);
- } else if (call_mode==CALL_MODE_SELF && get_visual_script().is_valid()) {
- property.hint=PROPERTY_HINT_METHOD_OF_SCRIPT;
- property.hint_string=itos(get_visual_script()->get_instance_ID());
- } else if (call_mode==CALL_MODE_SINGLETON) {
- Object *obj = Globals::get_singleton()->get_singleton_object(singleton);
- if (obj) {
- property.hint=PROPERTY_HINT_METHOD_OF_INSTANCE;
- property.hint_string=itos(obj->get_instance_ID());
- } else {
- property.hint=PROPERTY_HINT_METHOD_OF_BASE_TYPE;
- property.hint_string=base_type;//should be cached
- }
- } else if (call_mode==CALL_MODE_INSTANCE) {
- property.hint=PROPERTY_HINT_METHOD_OF_BASE_TYPE;
- property.hint_string=base_type;
- if (base_script!=String()) {
- if (!ResourceCache::has(base_script) && ScriptServer::edit_request_func) {
- ScriptServer::edit_request_func(base_script); //make sure it's loaded
- }
- if (ResourceCache::has(base_script)) {
- Ref<Script> script = Ref<Resource>( ResourceCache::get(base_script) );
- if (script.is_valid()) {
- property.hint=PROPERTY_HINT_METHOD_OF_SCRIPT;
- property.hint_string=itos(script->get_instance_ID());
- }
- }
- }
- } else if (call_mode==CALL_MODE_NODE_PATH) {
- Node *node = _get_base_node();
- if (node) {
- property.hint=PROPERTY_HINT_METHOD_OF_INSTANCE;
- property.hint_string=itos(node->get_instance_ID());
- } else {
- property.hint=PROPERTY_HINT_METHOD_OF_BASE_TYPE;
- property.hint_string=get_base_type();
- }
- }
- }
- if (property.name=="function/use_default_args") {
- property.hint=PROPERTY_HINT_RANGE;
- int mc=0;
- if (call_mode==CALL_MODE_BASIC_TYPE) {
- mc = Variant::get_method_default_arguments(basic_type,function).size();
- } else {
- MethodBind *mb = ObjectTypeDB::get_method(_get_base_type(),function);
- if (mb) {
- mc=mb->get_default_argument_count();
- }
- }
- if (mc==0) {
- property.usage=0; //do not show
- } else {
- property.hint_string="0,"+itos(mc)+",1";
- }
- }
- if (property.name=="rpc/call_mode") {
- if (call_mode==CALL_MODE_BASIC_TYPE) {
- property.usage=0;
- }
- }
- }
- void VisualScriptFunctionCall::_bind_methods() {
- ObjectTypeDB::bind_method(_MD("set_base_type","base_type"),&VisualScriptFunctionCall::set_base_type);
- ObjectTypeDB::bind_method(_MD("get_base_type"),&VisualScriptFunctionCall::get_base_type);
- ObjectTypeDB::bind_method(_MD("set_base_script","base_script"),&VisualScriptFunctionCall::set_base_script);
- ObjectTypeDB::bind_method(_MD("get_base_script"),&VisualScriptFunctionCall::get_base_script);
- ObjectTypeDB::bind_method(_MD("set_basic_type","basic_type"),&VisualScriptFunctionCall::set_basic_type);
- ObjectTypeDB::bind_method(_MD("get_basic_type"),&VisualScriptFunctionCall::get_basic_type);
- ObjectTypeDB::bind_method(_MD("set_singleton","singleton"),&VisualScriptFunctionCall::set_singleton);
- ObjectTypeDB::bind_method(_MD("get_singleton"),&VisualScriptFunctionCall::get_singleton);
- ObjectTypeDB::bind_method(_MD("set_function","function"),&VisualScriptFunctionCall::set_function);
- ObjectTypeDB::bind_method(_MD("get_function"),&VisualScriptFunctionCall::get_function);
- ObjectTypeDB::bind_method(_MD("set_call_mode","mode"),&VisualScriptFunctionCall::set_call_mode);
- ObjectTypeDB::bind_method(_MD("get_call_mode"),&VisualScriptFunctionCall::get_call_mode);
- ObjectTypeDB::bind_method(_MD("set_base_path","base_path"),&VisualScriptFunctionCall::set_base_path);
- ObjectTypeDB::bind_method(_MD("get_base_path"),&VisualScriptFunctionCall::get_base_path);
- ObjectTypeDB::bind_method(_MD("set_use_default_args","amount"),&VisualScriptFunctionCall::set_use_default_args);
- ObjectTypeDB::bind_method(_MD("get_use_default_args"),&VisualScriptFunctionCall::get_use_default_args);
- ObjectTypeDB::bind_method(_MD("_set_argument_cache","argument_cache"),&VisualScriptFunctionCall::_set_argument_cache);
- ObjectTypeDB::bind_method(_MD("_get_argument_cache"),&VisualScriptFunctionCall::_get_argument_cache);
- ObjectTypeDB::bind_method(_MD("set_rpc_call_mode","mode"),&VisualScriptFunctionCall::set_rpc_call_mode);
- ObjectTypeDB::bind_method(_MD("get_rpc_call_mode"),&VisualScriptFunctionCall::get_rpc_call_mode);
- ObjectTypeDB::bind_method(_MD("set_validate","enable"),&VisualScriptFunctionCall::set_validate);
- ObjectTypeDB::bind_method(_MD("get_validate"),&VisualScriptFunctionCall::get_validate);
- String bt;
- for(int i=0;i<Variant::VARIANT_MAX;i++) {
- if (i>0)
- bt+=",";
- bt+=Variant::get_type_name(Variant::Type(i));
- }
- List<String> script_extensions;
- for(int i=0;i<ScriptServer::get_language_count();i++) {
- ScriptServer::get_language(i)->get_recognized_extensions(&script_extensions);
- }
- String script_ext_hint;
- for (List<String>::Element *E=script_extensions.front();E;E=E->next()) {
- if (script_ext_hint!=String())
- script_ext_hint+=",";
- script_ext_hint+="*."+E->get();
- }
- ADD_PROPERTY(PropertyInfo(Variant::INT,"function/call_mode",PROPERTY_HINT_ENUM,"Self,Node Path,Instance,Basic Type,Singleton"),_SCS("set_call_mode"),_SCS("get_call_mode"));
- ADD_PROPERTY(PropertyInfo(Variant::STRING,"function/base_type",PROPERTY_HINT_TYPE_STRING,"Object"),_SCS("set_base_type"),_SCS("get_base_type"));
- ADD_PROPERTY(PropertyInfo(Variant::STRING,"function/base_script",PROPERTY_HINT_FILE,script_ext_hint),_SCS("set_base_script"),_SCS("get_base_script"));
- ADD_PROPERTY(PropertyInfo(Variant::STRING,"function/singleton"),_SCS("set_singleton"),_SCS("get_singleton"));
- ADD_PROPERTY(PropertyInfo(Variant::INT,"function/basic_type",PROPERTY_HINT_ENUM,bt),_SCS("set_basic_type"),_SCS("get_basic_type"));
- ADD_PROPERTY(PropertyInfo(Variant::NODE_PATH,"function/node_path",PROPERTY_HINT_NODE_PATH_TO_EDITED_NODE),_SCS("set_base_path"),_SCS("get_base_path"));
- ADD_PROPERTY(PropertyInfo(Variant::DICTIONARY,"function/argument_cache",PROPERTY_HINT_NONE,"",PROPERTY_USAGE_NOEDITOR),_SCS("_set_argument_cache"),_SCS("_get_argument_cache"));
- ADD_PROPERTY(PropertyInfo(Variant::STRING,"function/function"),_SCS("set_function"),_SCS("get_function")); //when set, if loaded properly, will override argument count.
- ADD_PROPERTY(PropertyInfo(Variant::INT,"function/use_default_args"),_SCS("set_use_default_args"),_SCS("get_use_default_args"));
- ADD_PROPERTY(PropertyInfo(Variant::BOOL,"function/validate"),_SCS("set_validate"),_SCS("get_validate"));
- ADD_PROPERTY(PropertyInfo(Variant::INT,"rpc/call_mode",PROPERTY_HINT_ENUM,"Disabled,Reliable,Unreliable,ReliableToID,UnreliableToID"),_SCS("set_rpc_call_mode"),_SCS("get_rpc_call_mode")); //when set, if loaded properly, will override argument count.
- BIND_CONSTANT( CALL_MODE_SELF );
- BIND_CONSTANT( CALL_MODE_NODE_PATH);
- BIND_CONSTANT( CALL_MODE_INSTANCE);
- BIND_CONSTANT( CALL_MODE_BASIC_TYPE );
- }
- class VisualScriptNodeInstanceFunctionCall : public VisualScriptNodeInstance {
- public:
- VisualScriptFunctionCall::CallMode call_mode;
- NodePath node_path;
- int input_args;
- bool validate;
- bool returns;
- VisualScriptFunctionCall::RPCCallMode rpc_mode;
- StringName function;
- StringName singleton;
- VisualScriptFunctionCall *node;
- VisualScriptInstance *instance;
- //virtual int get_working_memory_size() const { return 0; }
- //virtual bool is_output_port_unsequenced(int p_idx) const { return false; }
- //virtual bool get_output_port_unsequenced(int p_idx,Variant* r_value,Variant* p_working_mem,String &r_error) const { return true; }
- _FORCE_INLINE_ bool call_rpc(Object* p_base,const Variant** p_args,int p_argcount) {
- if (!p_base)
- return false;
- Node * node = p_base->cast_to<Node>();
- if (!node)
- return false;
- int to_id=0;
- bool reliable=true;
- if (rpc_mode>=VisualScriptFunctionCall::RPC_RELIABLE_TO_ID) {
- to_id = *p_args[0];
- p_args+=1;
- p_argcount-=1;
- if (rpc_mode==VisualScriptFunctionCall::RPC_UNRELIABLE_TO_ID) {
- reliable=false;
- }
- } else if (rpc_mode==VisualScriptFunctionCall::RPC_UNRELIABLE) {
- reliable=false;
- }
- node->rpcp(to_id,!reliable,function,p_args,p_argcount);
- return true;
- }
- virtual int step(const Variant** p_inputs,Variant** p_outputs,StartMode p_start_mode,Variant* p_working_mem,Variant::CallError& r_error,String& r_error_str) {
- switch(call_mode) {
- case VisualScriptFunctionCall::CALL_MODE_SELF: {
- Object *object=instance->get_owner_ptr();
- if (rpc_mode) {
- call_rpc(object,p_inputs,input_args);
- } else if (returns) {
- *p_outputs[0] = object->call(function,p_inputs,input_args,r_error);
- } else {
- object->call(function,p_inputs,input_args,r_error);
- }
- } break;
- case VisualScriptFunctionCall::CALL_MODE_NODE_PATH: {
- Node* node = instance->get_owner_ptr()->cast_to<Node>();
- if (!node) {
- r_error.error=Variant::CallError::CALL_ERROR_INVALID_METHOD;
- r_error_str="Base object is not a Node!";
- return 0;
- }
- Node* another = node->get_node(node_path);
- if (!node) {
- r_error.error=Variant::CallError::CALL_ERROR_INVALID_METHOD;
- r_error_str="Path does not lead Node!";
- return 0;
- }
- if (rpc_mode) {
- call_rpc(node,p_inputs,input_args);
- } else if (returns) {
- *p_outputs[0] = another->call(function,p_inputs,input_args,r_error);
- } else {
- another->call(function,p_inputs,input_args,r_error);
- }
- } break;
- case VisualScriptFunctionCall::CALL_MODE_INSTANCE:
- case VisualScriptFunctionCall::CALL_MODE_BASIC_TYPE: {
- Variant v = *p_inputs[0];
- if (rpc_mode) {
- Object *obj = v;
- if (obj) {
- call_rpc(obj,p_inputs+1,input_args-1);
- }
- } else if (returns) {
- if (call_mode==VisualScriptFunctionCall::CALL_MODE_INSTANCE) {
- *p_outputs[1] = v.call(function,p_inputs+1,input_args,r_error);
- } else {
- *p_outputs[0] = v.call(function,p_inputs+1,input_args,r_error);
- }
- } else {
- v.call(function,p_inputs+1,input_args,r_error);
- }
- if (call_mode==VisualScriptFunctionCall::CALL_MODE_INSTANCE) {
- *p_outputs[0]=*p_inputs[0];
- }
- } break;
- case VisualScriptFunctionCall::CALL_MODE_SINGLETON: {
- Object *object=Globals::get_singleton()->get_singleton_object(singleton);
- if (!object) {
- r_error.error=Variant::CallError::CALL_ERROR_INVALID_METHOD;
- r_error_str="Invalid singleton name: '"+String(singleton)+"'";
- return 0;
- }
- if (rpc_mode) {
- call_rpc(object,p_inputs,input_args);
- } else if (returns) {
- *p_outputs[0] = object->call(function,p_inputs,input_args,r_error);
- } else {
- object->call(function,p_inputs,input_args,r_error);
- }
- } break;
- }
- if (!validate) {
- //ignore call errors if validation is disabled
- r_error.error=Variant::CallError::CALL_OK;
- r_error_str=String();
- }
- return 0;
- }
- };
- VisualScriptNodeInstance* VisualScriptFunctionCall::instance(VisualScriptInstance* p_instance) {
- VisualScriptNodeInstanceFunctionCall * instance = memnew(VisualScriptNodeInstanceFunctionCall );
- instance->node=this;
- instance->instance=p_instance;
- instance->singleton=singleton;
- instance->function=function;
- instance->call_mode=call_mode;
- instance->returns=get_output_value_port_count();
- instance->node_path=base_path;
- instance->input_args = get_input_value_port_count() - ( (call_mode==CALL_MODE_BASIC_TYPE || call_mode==CALL_MODE_INSTANCE) ? 1: 0 );
- instance->rpc_mode=rpc_call_mode;
- instance->validate=validate;
- return instance;
- }
- VisualScriptFunctionCall::TypeGuess VisualScriptFunctionCall::guess_output_type(TypeGuess* p_inputs, int p_output) const {
- if (p_output==0 && call_mode==CALL_MODE_INSTANCE) {
- return p_inputs[0];
- }
- return VisualScriptNode::guess_output_type(p_inputs,p_output);
- }
- VisualScriptFunctionCall::VisualScriptFunctionCall() {
- validate=true;
- call_mode=CALL_MODE_SELF;
- basic_type=Variant::NIL;
- use_default_args=0;
- base_type="Object";
- rpc_call_mode=RPC_DISABLED;
- }
- template<VisualScriptFunctionCall::CallMode cmode>
- static Ref<VisualScriptNode> create_function_call_node(const String& p_name) {
- Ref<VisualScriptFunctionCall> node;
- node.instance();
- node->set_call_mode(cmode);
- return node;
- }
- //////////////////////////////////////////
- ////////////////SET//////////////////////
- //////////////////////////////////////////
- static const char* event_type_names[InputEvent::TYPE_MAX]={
- "None",
- "Key",
- "MouseMotion",
- "MouseButton",
- "JoystickMotion",
- "JoystickButton",
- "ScreenTouch",
- "ScreenDrag",
- "Action"
- };
- int VisualScriptPropertySet::get_output_sequence_port_count() const {
- return call_mode!=CALL_MODE_BASIC_TYPE ? 1 : 0;
- }
- bool VisualScriptPropertySet::has_input_sequence_port() const{
- return call_mode!=CALL_MODE_BASIC_TYPE ? true : false;
- }
- Node *VisualScriptPropertySet::_get_base_node() const {
- #ifdef TOOLS_ENABLED
- Ref<Script> script = get_visual_script();
- if (!script.is_valid())
- return NULL;
- MainLoop * main_loop = OS::get_singleton()->get_main_loop();
- if (!main_loop)
- return NULL;
- SceneTree *scene_tree = main_loop->cast_to<SceneTree>();
- if (!scene_tree)
- return NULL;
- Node *edited_scene = scene_tree->get_edited_scene_root();
- if (!edited_scene)
- return NULL;
- Node* script_node = _find_script_node(edited_scene,edited_scene,script);
- if (!script_node)
- return NULL;
- if (!script_node->has_node(base_path))
- return NULL;
- Node *path_to = script_node->get_node(base_path);
- return path_to;
- #else
- return NULL;
- #endif
- }
- StringName VisualScriptPropertySet::_get_base_type() const {
- if (call_mode==CALL_MODE_SELF && get_visual_script().is_valid())
- return get_visual_script()->get_instance_base_type();
- else if (call_mode==CALL_MODE_NODE_PATH && get_visual_script().is_valid()) {
- Node *path = _get_base_node();
- if (path)
- return path->get_type();
- }
- return base_type;
- }
- int VisualScriptPropertySet::get_input_value_port_count() const{
- int pc = (call_mode==CALL_MODE_BASIC_TYPE || call_mode==CALL_MODE_INSTANCE)?2:1;
- return pc;
- }
- int VisualScriptPropertySet::get_output_value_port_count() const{
- return (call_mode==CALL_MODE_BASIC_TYPE || call_mode==CALL_MODE_INSTANCE) ? 1 : 0;
- }
- String VisualScriptPropertySet::get_output_sequence_port_text(int p_port) const {
- return String();
- }
- PropertyInfo VisualScriptPropertySet::get_input_value_port_info(int p_idx) const{
- if (call_mode==CALL_MODE_INSTANCE || call_mode==CALL_MODE_BASIC_TYPE) {
- if (p_idx==0) {
- PropertyInfo pi;
- pi.type=(call_mode==CALL_MODE_INSTANCE?Variant::OBJECT:basic_type);
- pi.name=(call_mode==CALL_MODE_INSTANCE?String("instance"):Variant::get_type_name(basic_type).to_lower());
- return pi;
- } else {
- p_idx--;
- }
- }
- PropertyInfo pinfo=type_cache;
- pinfo.name="value";
- return pinfo;
- }
- PropertyInfo VisualScriptPropertySet::get_output_value_port_info(int p_idx) const{
- if (call_mode==CALL_MODE_BASIC_TYPE) {
- return PropertyInfo(basic_type,"out");
- } else if (call_mode==CALL_MODE_INSTANCE) {
- return PropertyInfo(Variant::OBJECT,"pass");
- } else {
- return PropertyInfo();
- }
- }
- String VisualScriptPropertySet::get_caption() const {
- static const char*cname[4]= {
- "SelfSet",
- "NodeSet",
- "InstanceSet",
- "BasicSet"
- };
- return cname[call_mode];
- }
- String VisualScriptPropertySet::get_text() const {
- String prop;
- if (call_mode==CALL_MODE_BASIC_TYPE)
- prop=Variant::get_type_name(basic_type)+"."+property;
- else if (call_mode==CALL_MODE_NODE_PATH)
- prop=String(base_path)+":"+property;
- else if (call_mode==CALL_MODE_SELF)
- prop=property;
- else if (call_mode==CALL_MODE_INSTANCE)
- prop=String(base_type)+":"+property;
- return prop;
- }
- void VisualScriptPropertySet::_update_base_type() {
- //cache it because this information may not be available on load
- if (call_mode==CALL_MODE_NODE_PATH) {
- Node* node=_get_base_node();
- if (node) {
- base_type=node->get_type();
- }
- } else if (call_mode==CALL_MODE_SELF) {
- if (get_visual_script().is_valid()) {
- base_type=get_visual_script()->get_instance_base_type();
- }
- }
- }
- void VisualScriptPropertySet::set_basic_type(Variant::Type p_type) {
- if (basic_type==p_type)
- return;
- basic_type=p_type;
- _change_notify();
- _update_base_type();
- ports_changed_notify();
- }
- Variant::Type VisualScriptPropertySet::get_basic_type() const{
- return basic_type;
- }
- void VisualScriptPropertySet::set_event_type(InputEvent::Type p_type) {
- if (event_type==p_type)
- return;
- event_type=p_type;
- if (call_mode==CALL_MODE_BASIC_TYPE) {
- _update_cache();
- }
- _change_notify();
- _update_base_type();
- ports_changed_notify();
- }
- InputEvent::Type VisualScriptPropertySet::get_event_type() const{
- return event_type;
- }
- void VisualScriptPropertySet::set_base_type(const StringName& p_type) {
- if (base_type==p_type)
- return;
- base_type=p_type;
- _change_notify();
- ports_changed_notify();
- }
- StringName VisualScriptPropertySet::get_base_type() const{
- return base_type;
- }
- void VisualScriptPropertySet::set_base_script(const String& p_path) {
- if (base_script==p_path)
- return;
- base_script=p_path;
- _change_notify();
- ports_changed_notify();
- }
- String VisualScriptPropertySet::get_base_script() const {
- return base_script;
- }
- void VisualScriptPropertySet::_update_cache() {
- if (!OS::get_singleton()->get_main_loop())
- return;
- if (!OS::get_singleton()->get_main_loop()->cast_to<SceneTree>())
- return;
- if (!OS::get_singleton()->get_main_loop()->cast_to<SceneTree>()->is_editor_hint()) //only update cache if editor exists, it's pointless otherwise
- return;
- if (call_mode==CALL_MODE_BASIC_TYPE) {
- //not super efficient..
- Variant v;
- if (basic_type==Variant::INPUT_EVENT) {
- InputEvent ev;
- ev.type=event_type;
- v=ev;
- } else {
- Variant::CallError ce;
- v = Variant::construct(basic_type,NULL,0,ce);
- }
- List<PropertyInfo> pinfo;
- v.get_property_list(&pinfo);
- for (List<PropertyInfo>::Element *E=pinfo.front();E;E=E->next()) {
- if (E->get().name==property) {
- type_cache=E->get();
- }
- }
- } else {
- StringName type;
- Ref<Script> script;
- Node *node=NULL;
- if (call_mode==CALL_MODE_NODE_PATH) {
- node=_get_base_node();
- if (node) {
- type=node->get_type();
- base_type=type; //cache, too
- script = node->get_script();
- }
- } else if (call_mode==CALL_MODE_SELF) {
- if (get_visual_script().is_valid()) {
- type=get_visual_script()->get_instance_base_type();
- base_type=type; //cache, too
- script=get_visual_script();
- }
- } else if (call_mode==CALL_MODE_INSTANCE) {
- type=base_type;
- if (base_script!=String()) {
- if (!ResourceCache::has(base_script) && ScriptServer::edit_request_func) {
- ScriptServer::edit_request_func(base_script); //make sure it's loaded
- }
- if (ResourceCache::has(base_script)) {
- script = Ref<Resource>( ResourceCache::get(base_script) );
- } else {
- return;
- }
- }
- }
- List<PropertyInfo> pinfo;
- if (node) {
- node->get_property_list(&pinfo);
- } else {
- ObjectTypeDB::get_property_list(type,&pinfo);
- }
- if (script.is_valid()) {
- script->get_script_property_list(&pinfo);
- }
- for (List<PropertyInfo>::Element *E=pinfo.front();E;E=E->next()) {
- if (E->get().name==property) {
- type_cache=E->get();
- return;
- }
- }
- }
- }
- void VisualScriptPropertySet::set_property(const StringName& p_type){
- if (property==p_type)
- return;
- property=p_type;
- _update_cache();
- _change_notify();
- ports_changed_notify();
- }
- StringName VisualScriptPropertySet::get_property() const {
- return property;
- }
- void VisualScriptPropertySet::set_base_path(const NodePath& p_type) {
- if (base_path==p_type)
- return;
- base_path=p_type;
- _update_base_type();
- _change_notify();
- ports_changed_notify();
- }
- NodePath VisualScriptPropertySet::get_base_path() const {
- return base_path;
- }
- void VisualScriptPropertySet::set_call_mode(CallMode p_mode) {
- if (call_mode==p_mode)
- return;
- call_mode=p_mode;
- _update_base_type();
- _change_notify();
- ports_changed_notify();
- }
- VisualScriptPropertySet::CallMode VisualScriptPropertySet::get_call_mode() const {
- return call_mode;
- }
- void VisualScriptPropertySet::_set_type_cache(const Dictionary &p_type) {
- type_cache=PropertyInfo::from_dict(p_type);
- }
- Dictionary VisualScriptPropertySet::_get_type_cache() const {
- return type_cache;
- }
- void VisualScriptPropertySet::_validate_property(PropertyInfo& property) const {
- if (property.name=="property/base_type") {
- if (call_mode!=CALL_MODE_INSTANCE) {
- property.usage=PROPERTY_USAGE_NOEDITOR;
- }
- }
- if (property.name=="property/base_script") {
- if (call_mode!=CALL_MODE_INSTANCE) {
- property.usage=0;
- }
- }
- if (property.name=="property/basic_type") {
- if (call_mode!=CALL_MODE_BASIC_TYPE) {
- property.usage=0;
- }
- }
- if (property.name=="property/event_type") {
- if (call_mode!=CALL_MODE_BASIC_TYPE || basic_type!=Variant::INPUT_EVENT) {
- property.usage=0;
- }
- }
- if (property.name=="property/node_path") {
- if (call_mode!=CALL_MODE_NODE_PATH) {
- property.usage=0;
- } else {
- Node *bnode = _get_base_node();
- if (bnode) {
- property.hint_string=bnode->get_path(); //convert to loong string
- } else {
- }
- }
- }
- if (property.name=="property/property") {
- if (call_mode==CALL_MODE_BASIC_TYPE) {
- property.hint=PROPERTY_HINT_PROPERTY_OF_VARIANT_TYPE;
- property.hint_string=Variant::get_type_name(basic_type);
- } else if (call_mode==CALL_MODE_SELF && get_visual_script().is_valid()) {
- property.hint=PROPERTY_HINT_PROPERTY_OF_SCRIPT;
- property.hint_string=itos(get_visual_script()->get_instance_ID());
- } else if (call_mode==CALL_MODE_INSTANCE) {
- property.hint=PROPERTY_HINT_PROPERTY_OF_BASE_TYPE;
- property.hint_string=base_type;
- if (base_script!=String()) {
- if (!ResourceCache::has(base_script) && ScriptServer::edit_request_func) {
- ScriptServer::edit_request_func(base_script); //make sure it's loaded
- }
- if (ResourceCache::has(base_script)) {
- Ref<Script> script = Ref<Resource>( ResourceCache::get(base_script) );
- if (script.is_valid()) {
- property.hint=PROPERTY_HINT_PROPERTY_OF_SCRIPT;
- property.hint_string=itos(script->get_instance_ID());
- }
- }
- }
- } else if (call_mode==CALL_MODE_NODE_PATH) {
- Node *node = _get_base_node();
- if (node) {
- property.hint=PROPERTY_HINT_PROPERTY_OF_INSTANCE;
- property.hint_string=itos(node->get_instance_ID());
- } else {
- property.hint=PROPERTY_HINT_PROPERTY_OF_BASE_TYPE;
- property.hint_string=get_base_type();
- }
- }
- }
- }
- void VisualScriptPropertySet::_bind_methods() {
- ObjectTypeDB::bind_method(_MD("set_base_type","base_type"),&VisualScriptPropertySet::set_base_type);
- ObjectTypeDB::bind_method(_MD("get_base_type"),&VisualScriptPropertySet::get_base_type);
- ObjectTypeDB::bind_method(_MD("set_base_script","base_script"),&VisualScriptPropertySet::set_base_script);
- ObjectTypeDB::bind_method(_MD("get_base_script"),&VisualScriptPropertySet::get_base_script);
- ObjectTypeDB::bind_method(_MD("set_basic_type","basic_type"),&VisualScriptPropertySet::set_basic_type);
- ObjectTypeDB::bind_method(_MD("get_basic_type"),&VisualScriptPropertySet::get_basic_type);
- ObjectTypeDB::bind_method(_MD("_set_type_cache","type_cache"),&VisualScriptPropertySet::_set_type_cache);
- ObjectTypeDB::bind_method(_MD("_get_type_cache"),&VisualScriptPropertySet::_get_type_cache);
- ObjectTypeDB::bind_method(_MD("set_event_type","event_type"),&VisualScriptPropertySet::set_event_type);
- ObjectTypeDB::bind_method(_MD("get_event_type"),&VisualScriptPropertySet::get_event_type);
- ObjectTypeDB::bind_method(_MD("set_property","property"),&VisualScriptPropertySet::set_property);
- ObjectTypeDB::bind_method(_MD("get_property"),&VisualScriptPropertySet::get_property);
- ObjectTypeDB::bind_method(_MD("set_call_mode","mode"),&VisualScriptPropertySet::set_call_mode);
- ObjectTypeDB::bind_method(_MD("get_call_mode"),&VisualScriptPropertySet::get_call_mode);
- ObjectTypeDB::bind_method(_MD("set_base_path","base_path"),&VisualScriptPropertySet::set_base_path);
- ObjectTypeDB::bind_method(_MD("get_base_path"),&VisualScriptPropertySet::get_base_path);
- String bt;
- for(int i=0;i<Variant::VARIANT_MAX;i++) {
- if (i>0)
- bt+=",";
- bt+=Variant::get_type_name(Variant::Type(i));
- }
- String et;
- for(int i=0;i<InputEvent::TYPE_MAX;i++) {
- if (i>0)
- et+=",";
- et+=event_type_names[i];
- }
- List<String> script_extensions;
- for(int i=0;i<ScriptServer::get_language_count();i++) {
- ScriptServer::get_language(i)->get_recognized_extensions(&script_extensions);
- }
- String script_ext_hint;
- for (List<String>::Element *E=script_extensions.front();E;E=E->next()) {
- if (script_ext_hint!=String())
- script_ext_hint+=",";
- script_ext_hint+="*."+E->get();
- }
- ADD_PROPERTY(PropertyInfo(Variant::INT,"property/set_mode",PROPERTY_HINT_ENUM,"Self,Node Path,Instance,Basic Type"),_SCS("set_call_mode"),_SCS("get_call_mode"));
- ADD_PROPERTY(PropertyInfo(Variant::STRING,"property/base_type",PROPERTY_HINT_TYPE_STRING,"Object"),_SCS("set_base_type"),_SCS("get_base_type"));
- ADD_PROPERTY(PropertyInfo(Variant::STRING,"property/base_script",PROPERTY_HINT_FILE,script_ext_hint),_SCS("set_base_script"),_SCS("get_base_script"));
- ADD_PROPERTY(PropertyInfo(Variant::INT,"property/type_cache",PROPERTY_HINT_NONE,"",PROPERTY_USAGE_NOEDITOR),_SCS("_set_type_cache"),_SCS("_get_type_cache"));
- ADD_PROPERTY(PropertyInfo(Variant::INT,"property/basic_type",PROPERTY_HINT_ENUM,bt),_SCS("set_basic_type"),_SCS("get_basic_type"));
- ADD_PROPERTY(PropertyInfo(Variant::INT,"property/event_type",PROPERTY_HINT_ENUM,et),_SCS("set_event_type"),_SCS("get_event_type"));
- ADD_PROPERTY(PropertyInfo(Variant::NODE_PATH,"property/node_path",PROPERTY_HINT_NODE_PATH_TO_EDITED_NODE),_SCS("set_base_path"),_SCS("get_base_path"));
- ADD_PROPERTY(PropertyInfo(Variant::STRING,"property/property"),_SCS("set_property"),_SCS("get_property"));
- BIND_CONSTANT( CALL_MODE_SELF );
- BIND_CONSTANT( CALL_MODE_NODE_PATH);
- BIND_CONSTANT( CALL_MODE_INSTANCE);
- }
- class VisualScriptNodeInstancePropertySet : public VisualScriptNodeInstance {
- public:
- VisualScriptPropertySet::CallMode call_mode;
- NodePath node_path;
- StringName property;
- VisualScriptPropertySet *node;
- VisualScriptInstance *instance;
- //virtual int get_working_memory_size() const { return 0; }
- //virtual bool is_output_port_unsequenced(int p_idx) const { return false; }
- //virtual bool get_output_port_unsequenced(int p_idx,Variant* r_value,Variant* p_working_mem,String &r_error) const { return true; }
- virtual int step(const Variant** p_inputs,Variant** p_outputs,StartMode p_start_mode,Variant* p_working_mem,Variant::CallError& r_error,String& r_error_str) {
- switch(call_mode) {
- case VisualScriptPropertySet::CALL_MODE_SELF: {
- Object *object=instance->get_owner_ptr();
- bool valid;
- object->set(property,*p_inputs[0],&valid);
- if (!valid) {
- r_error.error=Variant::CallError::CALL_ERROR_INVALID_METHOD;
- r_error_str="Invalid set value '"+String(*p_inputs[0])+"' on property '"+String(property)+"' of type "+object->get_type();
- }
- } break;
- case VisualScriptPropertySet::CALL_MODE_NODE_PATH: {
- Node* node = instance->get_owner_ptr()->cast_to<Node>();
- if (!node) {
- r_error.error=Variant::CallError::CALL_ERROR_INVALID_METHOD;
- r_error_str="Base object is not a Node!";
- return 0;
- }
- Node* another = node->get_node(node_path);
- if (!node) {
- r_error.error=Variant::CallError::CALL_ERROR_INVALID_METHOD;
- r_error_str="Path does not lead Node!";
- return 0;
- }
- bool valid;
- another->set(property,*p_inputs[0],&valid);
- if (!valid) {
- r_error.error=Variant::CallError::CALL_ERROR_INVALID_METHOD;
- r_error_str="Invalid set value '"+String(*p_inputs[0])+"' on property '"+String(property)+"' of type "+another->get_type();
- }
- } break;
- case VisualScriptPropertySet::CALL_MODE_INSTANCE:
- case VisualScriptPropertySet::CALL_MODE_BASIC_TYPE: {
- Variant v = *p_inputs[0];
- bool valid;
- v.set(property,*p_inputs[1],&valid);
- if (!valid) {
- r_error.error=Variant::CallError::CALL_ERROR_INVALID_METHOD;
- r_error_str="Invalid set value '"+String(*p_inputs[1])+"' ("+Variant::get_type_name(p_inputs[1]->get_type())+") on property '"+String(property)+"' of type "+Variant::get_type_name(v.get_type());
- }
- *p_outputs[0]=v;
- } break;
- }
- return 0;
- }
- };
- VisualScriptNodeInstance* VisualScriptPropertySet::instance(VisualScriptInstance* p_instance) {
- VisualScriptNodeInstancePropertySet * instance = memnew(VisualScriptNodeInstancePropertySet );
- instance->node=this;
- instance->instance=p_instance;
- instance->property=property;
- instance->call_mode=call_mode;
- instance->node_path=base_path;
- return instance;
- }
- VisualScriptPropertySet::TypeGuess VisualScriptPropertySet::guess_output_type(TypeGuess* p_inputs, int p_output) const {
- if (p_output==0 && call_mode==CALL_MODE_INSTANCE) {
- return p_inputs[0];
- }
- return VisualScriptNode::guess_output_type(p_inputs,p_output);
- }
- VisualScriptPropertySet::VisualScriptPropertySet() {
- call_mode=CALL_MODE_SELF;
- base_type="Object";
- basic_type=Variant::NIL;
- event_type=InputEvent::NONE;
- }
- template<VisualScriptPropertySet::CallMode cmode>
- static Ref<VisualScriptNode> create_property_set_node(const String& p_name) {
- Ref<VisualScriptPropertySet> node;
- node.instance();
- node->set_call_mode(cmode);
- return node;
- }
- //////////////////////////////////////////
- ////////////////GET//////////////////////
- //////////////////////////////////////////
- int VisualScriptPropertyGet::get_output_sequence_port_count() const {
- return 0;// (call_mode==CALL_MODE_SELF || call_mode==CALL_MODE_NODE_PATH)?0:1;
- }
- bool VisualScriptPropertyGet::has_input_sequence_port() const{
- return false;//(call_mode==CALL_MODE_SELF || call_mode==CALL_MODE_NODE_PATH)?false:true;
- }
- void VisualScriptPropertyGet::_update_base_type() {
- //cache it because this information may not be available on load
- if (call_mode==CALL_MODE_NODE_PATH) {
- Node* node=_get_base_node();
- if (node) {
- base_type=node->get_type();
- }
- } else if (call_mode==CALL_MODE_SELF) {
- if (get_visual_script().is_valid()) {
- base_type=get_visual_script()->get_instance_base_type();
- }
- }
- }
- Node *VisualScriptPropertyGet::_get_base_node() const {
- #ifdef TOOLS_ENABLED
- Ref<Script> script = get_visual_script();
- if (!script.is_valid())
- return NULL;
- MainLoop * main_loop = OS::get_singleton()->get_main_loop();
- if (!main_loop)
- return NULL;
- SceneTree *scene_tree = main_loop->cast_to<SceneTree>();
- if (!scene_tree)
- return NULL;
- Node *edited_scene = scene_tree->get_edited_scene_root();
- if (!edited_scene)
- return NULL;
- Node* script_node = _find_script_node(edited_scene,edited_scene,script);
- if (!script_node)
- return NULL;
- if (!script_node->has_node(base_path))
- return NULL;
- Node *path_to = script_node->get_node(base_path);
- return path_to;
- #else
- return NULL;
- #endif
- }
- StringName VisualScriptPropertyGet::_get_base_type() const {
- if (call_mode==CALL_MODE_SELF && get_visual_script().is_valid())
- return get_visual_script()->get_instance_base_type();
- else if (call_mode==CALL_MODE_NODE_PATH && get_visual_script().is_valid()) {
- Node *path = _get_base_node();
- if (path)
- return path->get_type();
- }
- return base_type;
- }
- int VisualScriptPropertyGet::get_input_value_port_count() const{
- return (call_mode==CALL_MODE_BASIC_TYPE || call_mode==CALL_MODE_INSTANCE)?1:0;
- }
- int VisualScriptPropertyGet::get_output_value_port_count() const{
- return 1;
- }
- String VisualScriptPropertyGet::get_output_sequence_port_text(int p_port) const {
- return String();
- }
- PropertyInfo VisualScriptPropertyGet::get_input_value_port_info(int p_idx) const{
- if (call_mode==CALL_MODE_INSTANCE || call_mode==CALL_MODE_BASIC_TYPE) {
- if (p_idx==0) {
- PropertyInfo pi;
- pi.type=(call_mode==CALL_MODE_INSTANCE?Variant::OBJECT:basic_type);
- pi.name=(call_mode==CALL_MODE_INSTANCE?String("instance"):Variant::get_type_name(basic_type).to_lower());
- return pi;
- } else {
- p_idx--;
- }
- }
- return PropertyInfo();
- }
- PropertyInfo VisualScriptPropertyGet::get_output_value_port_info(int p_idx) const{
- return PropertyInfo(type_cache,"value");
- }
- String VisualScriptPropertyGet::get_caption() const {
- static const char*cname[4]= {
- "SelfGet",
- "NodeGet",
- "InstanceGet",
- "BasicGet"
- };
- return cname[call_mode];
- }
- String VisualScriptPropertyGet::get_text() const {
- String prop;
- if (call_mode==CALL_MODE_BASIC_TYPE)
- prop=Variant::get_type_name(basic_type)+"."+property;
- else if (call_mode==CALL_MODE_NODE_PATH)
- prop=String(base_path)+":"+property;
- else if (call_mode==CALL_MODE_SELF)
- prop=property;
- else if (call_mode==CALL_MODE_INSTANCE)
- prop=String(base_type)+":"+property;
- return prop;
- }
- void VisualScriptPropertyGet::set_base_type(const StringName& p_type) {
- if (base_type==p_type)
- return;
- base_type=p_type;
- _change_notify();
- ports_changed_notify();
- }
- StringName VisualScriptPropertyGet::get_base_type() const{
- return base_type;
- }
- void VisualScriptPropertyGet::set_base_script(const String& p_path) {
- if (base_script==p_path)
- return;
- base_script=p_path;
- _change_notify();
- ports_changed_notify();
- }
- String VisualScriptPropertyGet::get_base_script() const {
- return base_script;
- }
- void VisualScriptPropertyGet::_update_cache() {
- if (call_mode==CALL_MODE_BASIC_TYPE) {
- //not super efficient..
- Variant v;
- if (basic_type==Variant::INPUT_EVENT) {
- InputEvent ev;
- ev.type=event_type;
- v=ev;
- } else {
- Variant::CallError ce;
- v = Variant::construct(basic_type,NULL,0,ce);
- }
- List<PropertyInfo> pinfo;
- v.get_property_list(&pinfo);
- for (List<PropertyInfo>::Element *E=pinfo.front();E;E=E->next()) {
- if (E->get().name==property) {
- type_cache=E->get().type;
- return;
- }
- }
- } else {
- StringName type;
- Ref<Script> script;
- Node *node=NULL;
- if (call_mode==CALL_MODE_NODE_PATH) {
- node=_get_base_node();
- if (node) {
- type=node->get_type();
- base_type=type; //cache, too
- script = node->get_script();
- }
- } else if (call_mode==CALL_MODE_SELF) {
- if (get_visual_script().is_valid()) {
- type=get_visual_script()->get_instance_base_type();
- base_type=type; //cache, too
- script=get_visual_script();
- }
- } else if (call_mode==CALL_MODE_INSTANCE) {
- type=base_type;
- if (base_script!=String()) {
- if (!ResourceCache::has(base_script) && ScriptServer::edit_request_func) {
- ScriptServer::edit_request_func(base_script); //make sure it's loaded
- }
- if (ResourceCache::has(base_script)) {
- script = Ref<Resource>( ResourceCache::get(base_script) );
- } else {
- return;
- }
- }
- }
- bool valid=false;
- Variant::Type type_ret;
- type_ret=ObjectTypeDB::get_property_type(base_type,property,&valid);
- if (valid) {
- type_cache=type_ret;
- return; //all dandy
- }
- if (node) {
- Variant prop = node->get(property,&valid);
- if (valid) {
- type_cache=prop.get_type();
- return; //all dandy again
- }
- }
- if (script.is_valid()) {
- type_ret=script->get_static_property_type(property,&valid);
- if (valid) {
- type_cache=type_ret;
- return; //all dandy
- }
- }
- }
- }
- void VisualScriptPropertyGet::set_property(const StringName& p_type){
- if (property==p_type)
- return;
- property=p_type;
- _update_cache();
- _change_notify();
- ports_changed_notify();
- }
- StringName VisualScriptPropertyGet::get_property() const {
- return property;
- }
- void VisualScriptPropertyGet::set_base_path(const NodePath& p_type) {
- if (base_path==p_type)
- return;
- base_path=p_type;
- _change_notify();
- _update_base_type();
- ports_changed_notify();
- }
- NodePath VisualScriptPropertyGet::get_base_path() const {
- return base_path;
- }
- void VisualScriptPropertyGet::set_call_mode(CallMode p_mode) {
- if (call_mode==p_mode)
- return;
- call_mode=p_mode;
- _change_notify();
- _update_base_type();
- ports_changed_notify();
- }
- VisualScriptPropertyGet::CallMode VisualScriptPropertyGet::get_call_mode() const {
- return call_mode;
- }
- void VisualScriptPropertyGet::set_basic_type(Variant::Type p_type) {
- if (basic_type==p_type)
- return;
- basic_type=p_type;
- _change_notify();
- ports_changed_notify();
- }
- Variant::Type VisualScriptPropertyGet::get_basic_type() const{
- return basic_type;
- }
- void VisualScriptPropertyGet::set_event_type(InputEvent::Type p_type) {
- if (event_type==p_type)
- return;
- event_type=p_type;
- if(call_mode==CALL_MODE_BASIC_TYPE) {
- _update_cache();
- }
- _change_notify();
- _update_base_type();
- ports_changed_notify();
- }
- InputEvent::Type VisualScriptPropertyGet::get_event_type() const{
- return event_type;
- }
- void VisualScriptPropertyGet::_set_type_cache(Variant::Type p_type) {
- type_cache=p_type;
- }
- Variant::Type VisualScriptPropertyGet::_get_type_cache() const {
- return type_cache;
- }
- void VisualScriptPropertyGet::_validate_property(PropertyInfo& property) const {
- if (property.name=="property/base_type") {
- if (call_mode!=CALL_MODE_INSTANCE) {
- property.usage=PROPERTY_USAGE_NOEDITOR;
- }
- }
- if (property.name=="property/base_script") {
- if (call_mode!=CALL_MODE_INSTANCE) {
- property.usage=0;
- }
- }
- if (property.name=="property/basic_type") {
- if (call_mode!=CALL_MODE_BASIC_TYPE) {
- property.usage=0;
- }
- }
- if (property.name=="property/event_type") {
- if (call_mode!=CALL_MODE_BASIC_TYPE || basic_type!=Variant::INPUT_EVENT) {
- property.usage=0;
- }
- }
- if (property.name=="property/node_path") {
- if (call_mode!=CALL_MODE_NODE_PATH) {
- property.usage=0;
- } else {
- Node *bnode = _get_base_node();
- if (bnode) {
- property.hint_string=bnode->get_path(); //convert to loong string
- } else {
- }
- }
- }
- if (property.name=="property/property") {
- if (call_mode==CALL_MODE_BASIC_TYPE) {
- property.hint=PROPERTY_HINT_PROPERTY_OF_VARIANT_TYPE;
- property.hint_string=Variant::get_type_name(basic_type);
- } else if (call_mode==CALL_MODE_SELF && get_visual_script().is_valid()) {
- property.hint=PROPERTY_HINT_PROPERTY_OF_SCRIPT;
- property.hint_string=itos(get_visual_script()->get_instance_ID());
- } else if (call_mode==CALL_MODE_INSTANCE) {
- property.hint=PROPERTY_HINT_PROPERTY_OF_BASE_TYPE;
- property.hint_string=base_type;
- if (base_script!=String()) {
- if (!ResourceCache::has(base_script) && ScriptServer::edit_request_func) {
- ScriptServer::edit_request_func(base_script); //make sure it's loaded
- }
- if (ResourceCache::has(base_script)) {
- Ref<Script> script = Ref<Resource>( ResourceCache::get(base_script) );
- if (script.is_valid()) {
- property.hint=PROPERTY_HINT_PROPERTY_OF_SCRIPT;
- property.hint_string=itos(script->get_instance_ID());
- }
- }
- }
- } else if (call_mode==CALL_MODE_NODE_PATH) {
- Node *node = _get_base_node();
- if (node) {
- property.hint=PROPERTY_HINT_PROPERTY_OF_INSTANCE;
- property.hint_string=itos(node->get_instance_ID());
- } else {
- property.hint=PROPERTY_HINT_PROPERTY_OF_BASE_TYPE;
- property.hint_string=get_base_type();
- }
- }
- }
- }
- void VisualScriptPropertyGet::_bind_methods() {
- ObjectTypeDB::bind_method(_MD("set_base_type","base_type"),&VisualScriptPropertyGet::set_base_type);
- ObjectTypeDB::bind_method(_MD("get_base_type"),&VisualScriptPropertyGet::get_base_type);
- ObjectTypeDB::bind_method(_MD("set_base_script","base_script"),&VisualScriptPropertyGet::set_base_script);
- ObjectTypeDB::bind_method(_MD("get_base_script"),&VisualScriptPropertyGet::get_base_script);
- ObjectTypeDB::bind_method(_MD("set_basic_type","basic_type"),&VisualScriptPropertyGet::set_basic_type);
- ObjectTypeDB::bind_method(_MD("get_basic_type"),&VisualScriptPropertyGet::get_basic_type);
- ObjectTypeDB::bind_method(_MD("_set_type_cache","type_cache"),&VisualScriptPropertyGet::_set_type_cache);
- ObjectTypeDB::bind_method(_MD("_get_type_cache"),&VisualScriptPropertyGet::_get_type_cache);
- ObjectTypeDB::bind_method(_MD("set_event_type","event_type"),&VisualScriptPropertyGet::set_event_type);
- ObjectTypeDB::bind_method(_MD("get_event_type"),&VisualScriptPropertyGet::get_event_type);
- ObjectTypeDB::bind_method(_MD("set_property","property"),&VisualScriptPropertyGet::set_property);
- ObjectTypeDB::bind_method(_MD("get_property"),&VisualScriptPropertyGet::get_property);
- ObjectTypeDB::bind_method(_MD("set_call_mode","mode"),&VisualScriptPropertyGet::set_call_mode);
- ObjectTypeDB::bind_method(_MD("get_call_mode"),&VisualScriptPropertyGet::get_call_mode);
- ObjectTypeDB::bind_method(_MD("set_base_path","base_path"),&VisualScriptPropertyGet::set_base_path);
- ObjectTypeDB::bind_method(_MD("get_base_path"),&VisualScriptPropertyGet::get_base_path);
- String bt;
- for(int i=0;i<Variant::VARIANT_MAX;i++) {
- if (i>0)
- bt+=",";
- bt+=Variant::get_type_name(Variant::Type(i));
- }
- String et;
- for(int i=0;i<InputEvent::TYPE_MAX;i++) {
- if (i>0)
- et+=",";
- et+=event_type_names[i];
- }
- List<String> script_extensions;
- for(int i=0;i<ScriptServer::get_language_count();i++) {
- ScriptServer::get_language(i)->get_recognized_extensions(&script_extensions);
- }
- String script_ext_hint;
- for (List<String>::Element *E=script_extensions.front();E;E=E->next()) {
- if (script_ext_hint!=String())
- script_ext_hint+=",";
- script_ext_hint+="."+E->get();
- }
- ADD_PROPERTY(PropertyInfo(Variant::INT,"property/set_mode",PROPERTY_HINT_ENUM,"Self,Node Path,Instance,Basic Type"),_SCS("set_call_mode"),_SCS("get_call_mode"));
- ADD_PROPERTY(PropertyInfo(Variant::STRING,"property/base_type",PROPERTY_HINT_TYPE_STRING,"Object"),_SCS("set_base_type"),_SCS("get_base_type"));
- ADD_PROPERTY(PropertyInfo(Variant::STRING,"property/base_script",PROPERTY_HINT_FILE,script_ext_hint),_SCS("set_base_script"),_SCS("get_base_script"));
- ADD_PROPERTY(PropertyInfo(Variant::INT,"property/type_cache",PROPERTY_HINT_NONE,"",PROPERTY_USAGE_NOEDITOR),_SCS("_set_type_cache"),_SCS("_get_type_cache"));
- ADD_PROPERTY(PropertyInfo(Variant::INT,"property/basic_type",PROPERTY_HINT_ENUM,bt),_SCS("set_basic_type"),_SCS("get_basic_type"));
- ADD_PROPERTY(PropertyInfo(Variant::INT,"property/event_type",PROPERTY_HINT_ENUM,et),_SCS("set_event_type"),_SCS("get_event_type"));
- ADD_PROPERTY(PropertyInfo(Variant::NODE_PATH,"property/node_path",PROPERTY_HINT_NODE_PATH_TO_EDITED_NODE),_SCS("set_base_path"),_SCS("get_base_path"));
- ADD_PROPERTY(PropertyInfo(Variant::STRING,"property/property"),_SCS("set_property"),_SCS("get_property"));
- BIND_CONSTANT( CALL_MODE_SELF );
- BIND_CONSTANT( CALL_MODE_NODE_PATH);
- BIND_CONSTANT( CALL_MODE_INSTANCE);
- }
- class VisualScriptNodeInstancePropertyGet : public VisualScriptNodeInstance {
- public:
- VisualScriptPropertyGet::CallMode call_mode;
- NodePath node_path;
- StringName property;
- VisualScriptPropertyGet *node;
- VisualScriptInstance *instance;
- virtual int step(const Variant** p_inputs,Variant** p_outputs,StartMode p_start_mode,Variant* p_working_mem,Variant::CallError& r_error,String& r_error_str) {
- switch(call_mode) {
- case VisualScriptPropertyGet::CALL_MODE_SELF: {
- Object *object=instance->get_owner_ptr();
- bool valid;
- *p_outputs[0] = object->get(property,&valid);
- if (!valid) {
- r_error.error=Variant::CallError::CALL_ERROR_INVALID_METHOD;
- r_error_str=RTR("Invalid index property name.");
- return 0;
- }
- } break;
- case VisualScriptPropertyGet::CALL_MODE_NODE_PATH: {
- Node* node = instance->get_owner_ptr()->cast_to<Node>();
- if (!node) {
- r_error.error=Variant::CallError::CALL_ERROR_INVALID_METHOD;
- r_error_str=RTR("Base object is not a Node!");
- return 0;
- }
- Node* another = node->get_node(node_path);
- if (!node) {
- r_error.error=Variant::CallError::CALL_ERROR_INVALID_METHOD;
- r_error_str=RTR("Path does not lead Node!");
- return 0;
- }
- bool valid;
- *p_outputs[0] = another->get(property,&valid);
- if (!valid) {
- r_error.error=Variant::CallError::CALL_ERROR_INVALID_METHOD;
- r_error_str=vformat(RTR("Invalid index property name '%s' in node %s."),String(property),another->get_name());
- return 0;
- }
- } break;
- default: {
- bool valid;
- Variant v = *p_inputs[0];
- *p_outputs[0] = v.get(property,&valid);
- if (!valid) {
- r_error.error=Variant::CallError::CALL_ERROR_INVALID_METHOD;
- r_error_str=RTR("Invalid index property name.");
- }
- };
- }
- return 0;
- }
- };
- VisualScriptNodeInstance* VisualScriptPropertyGet::instance(VisualScriptInstance* p_instance) {
- VisualScriptNodeInstancePropertyGet * instance = memnew(VisualScriptNodeInstancePropertyGet );
- instance->node=this;
- instance->instance=p_instance;
- instance->property=property;
- instance->call_mode=call_mode;
- instance->node_path=base_path;
- return instance;
- }
- VisualScriptPropertyGet::VisualScriptPropertyGet() {
- call_mode=CALL_MODE_SELF;
- base_type="Object";
- basic_type=Variant::NIL;
- event_type=InputEvent::NONE;
- type_cache=Variant::NIL;
- }
- template<VisualScriptPropertyGet::CallMode cmode>
- static Ref<VisualScriptNode> create_property_get_node(const String& p_name) {
- Ref<VisualScriptPropertyGet> node;
- node.instance();
- node->set_call_mode(cmode);
- return node;
- }
- //////////////////////////////////////////
- ////////////////EMIT//////////////////////
- //////////////////////////////////////////
- int VisualScriptEmitSignal::get_output_sequence_port_count() const {
- return 1;
- }
- bool VisualScriptEmitSignal::has_input_sequence_port() const{
- return true;
- }
- int VisualScriptEmitSignal::get_input_value_port_count() const{
- Ref<VisualScript> vs = get_visual_script();
- if (vs.is_valid()) {
- if (!vs->has_custom_signal(name))
- return 0;
- return vs->custom_signal_get_argument_count(name);
- }
- return 0;
- }
- int VisualScriptEmitSignal::get_output_value_port_count() const{
- return 0;
- }
- String VisualScriptEmitSignal::get_output_sequence_port_text(int p_port) const {
- return String();
- }
- PropertyInfo VisualScriptEmitSignal::get_input_value_port_info(int p_idx) const{
- Ref<VisualScript> vs = get_visual_script();
- if (vs.is_valid()) {
- if (!vs->has_custom_signal(name))
- return PropertyInfo();
- return PropertyInfo(vs->custom_signal_get_argument_type(name,p_idx),vs->custom_signal_get_argument_name(name,p_idx));
- }
- return PropertyInfo();
- }
- PropertyInfo VisualScriptEmitSignal::get_output_value_port_info(int p_idx) const{
- return PropertyInfo();
- }
- String VisualScriptEmitSignal::get_caption() const {
- return "EmitSignal";
- }
- String VisualScriptEmitSignal::get_text() const {
- return "emit "+String(name);
- }
- void VisualScriptEmitSignal::set_signal(const StringName& p_type){
- if (name==p_type)
- return;
- name=p_type;
- _change_notify();
- ports_changed_notify();
- }
- StringName VisualScriptEmitSignal::get_signal() const {
- return name;
- }
- void VisualScriptEmitSignal::_validate_property(PropertyInfo& property) const {
- if (property.name=="signal/signal") {
- property.hint=PROPERTY_HINT_ENUM;
- List<StringName> sigs;
- Ref<VisualScript> vs = get_visual_script();
- if (vs.is_valid()) {
- vs->get_custom_signal_list(&sigs);
- }
- String ml;
- for (List<StringName>::Element *E=sigs.front();E;E=E->next()) {
- if (ml!=String())
- ml+=",";
- ml+=E->get();
- }
- property.hint_string=ml;
- }
- }
- void VisualScriptEmitSignal::_bind_methods() {
- ObjectTypeDB::bind_method(_MD("set_signal","name"),&VisualScriptEmitSignal::set_signal);
- ObjectTypeDB::bind_method(_MD("get_signal"),&VisualScriptEmitSignal::get_signal);
- ADD_PROPERTY(PropertyInfo(Variant::STRING,"signal/signal"),_SCS("set_signal"),_SCS("get_signal"));
- }
- class VisualScriptNodeInstanceEmitSignal : public VisualScriptNodeInstance {
- public:
- VisualScriptEmitSignal *node;
- VisualScriptInstance *instance;
- int argcount;
- StringName name;
- //virtual int get_working_memory_size() const { return 0; }
- //virtual bool is_output_port_unsequenced(int p_idx) const { return false; }
- //virtual bool get_output_port_unsequenced(int p_idx,Variant* r_value,Variant* p_working_mem,String &r_error) const { return true; }
- virtual int step(const Variant** p_inputs,Variant** p_outputs,StartMode p_start_mode,Variant* p_working_mem,Variant::CallError& r_error,String& r_error_str) {
- Object *obj = instance->get_owner_ptr();
- obj->emit_signal(name,p_inputs,argcount);
- return 0;
- }
- };
- VisualScriptNodeInstance* VisualScriptEmitSignal::instance(VisualScriptInstance* p_instance) {
- VisualScriptNodeInstanceEmitSignal * instance = memnew(VisualScriptNodeInstanceEmitSignal );
- instance->node=this;
- instance->instance=p_instance;
- instance->name=name;
- instance->argcount=get_input_value_port_count();
- return instance;
- }
- VisualScriptEmitSignal::VisualScriptEmitSignal() {
- }
- static Ref<VisualScriptNode> create_basic_type_call_node(const String& p_name) {
- Vector<String> path = p_name.split("/");
- ERR_FAIL_COND_V(path.size()<4,Ref<VisualScriptNode>());
- String base_type = path[2];
- String method = path[3];
- Ref<VisualScriptFunctionCall> node;
- node.instance();
- Variant::Type type=Variant::VARIANT_MAX;
- for(int i=0;i<Variant::VARIANT_MAX;i++) {
- if (Variant::get_type_name(Variant::Type(i))==base_type) {
- type=Variant::Type(i);
- break;
- }
- }
- ERR_FAIL_COND_V(type==Variant::VARIANT_MAX,Ref<VisualScriptNode>());
- node->set_call_mode(VisualScriptFunctionCall::CALL_MODE_BASIC_TYPE);
- node->set_basic_type(type);
- node->set_function(method);
- return node;
- }
- void register_visual_script_func_nodes() {
- VisualScriptLanguage::singleton->add_register_func("functions/call",create_node_generic<VisualScriptFunctionCall>);
- VisualScriptLanguage::singleton->add_register_func("functions/set",create_node_generic<VisualScriptPropertySet>);
- VisualScriptLanguage::singleton->add_register_func("functions/get",create_node_generic<VisualScriptPropertyGet>);
- //VisualScriptLanguage::singleton->add_register_func("functions/call_script/call_self",create_script_call_node<VisualScriptScriptCall::CALL_MODE_SELF>);
- // VisualScriptLanguage::singleton->add_register_func("functions/call_script/call_node",create_script_call_node<VisualScriptScriptCall::CALL_MODE_NODE_PATH>);
- VisualScriptLanguage::singleton->add_register_func("functions/emit_signal",create_node_generic<VisualScriptEmitSignal>);
- for(int i=0;i<Variant::VARIANT_MAX;i++) {
- Variant::Type t = Variant::Type(i);
- String type_name = Variant::get_type_name(t);
- Variant::CallError ce;
- Variant vt = Variant::construct(t,NULL,0,ce);
- List<MethodInfo> ml;
- vt.get_method_list(&ml);
- for (List<MethodInfo>::Element *E=ml.front();E;E=E->next()) {
- VisualScriptLanguage::singleton->add_register_func("functions/by_type/"+type_name+"/"+E->get().name,create_basic_type_call_node);
- }
- }
- }
|