visual_script.cpp 82 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715
  1. /*************************************************************************/
  2. /* visual_script.cpp */
  3. /*************************************************************************/
  4. /* This file is part of: */
  5. /* GODOT ENGINE */
  6. /* https://godotengine.org */
  7. /*************************************************************************/
  8. /* Copyright (c) 2007-2019 Juan Linietsky, Ariel Manzur. */
  9. /* Copyright (c) 2014-2019 Godot Engine contributors (cf. AUTHORS.md) */
  10. /* */
  11. /* Permission is hereby granted, free of charge, to any person obtaining */
  12. /* a copy of this software and associated documentation files (the */
  13. /* "Software"), to deal in the Software without restriction, including */
  14. /* without limitation the rights to use, copy, modify, merge, publish, */
  15. /* distribute, sublicense, and/or sell copies of the Software, and to */
  16. /* permit persons to whom the Software is furnished to do so, subject to */
  17. /* the following conditions: */
  18. /* */
  19. /* The above copyright notice and this permission notice shall be */
  20. /* included in all copies or substantial portions of the Software. */
  21. /* */
  22. /* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, */
  23. /* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF */
  24. /* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.*/
  25. /* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY */
  26. /* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, */
  27. /* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */
  28. /* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
  29. /*************************************************************************/
  30. #include "visual_script.h"
  31. #include "core/core_string_names.h"
  32. #include "core/os/os.h"
  33. #include "core/project_settings.h"
  34. #include "scene/main/node.h"
  35. #include "visual_script_nodes.h"
  36. //used by editor, this is not really saved
  37. void VisualScriptNode::set_breakpoint(bool p_breakpoint) {
  38. breakpoint = p_breakpoint;
  39. }
  40. bool VisualScriptNode::is_breakpoint() const {
  41. return breakpoint;
  42. }
  43. void VisualScriptNode::ports_changed_notify() {
  44. emit_signal("ports_changed");
  45. }
  46. void VisualScriptNode::set_default_input_value(int p_port, const Variant &p_value) {
  47. ERR_FAIL_INDEX(p_port, default_input_values.size());
  48. default_input_values[p_port] = p_value;
  49. #ifdef TOOLS_ENABLED
  50. for (Set<VisualScript *>::Element *E = scripts_used.front(); E; E = E->next()) {
  51. E->get()->set_edited(true);
  52. }
  53. #endif
  54. }
  55. Variant VisualScriptNode::get_default_input_value(int p_port) const {
  56. ERR_FAIL_INDEX_V(p_port, default_input_values.size(), Variant());
  57. return default_input_values[p_port];
  58. }
  59. void VisualScriptNode::_set_default_input_values(Array p_values) {
  60. default_input_values = p_values;
  61. }
  62. void VisualScriptNode::validate_input_default_values() {
  63. default_input_values.resize(MAX(default_input_values.size(), get_input_value_port_count())); //let it grow as big as possible, we don't want to lose values on resize
  64. //actually validate on save
  65. for (int i = 0; i < get_input_value_port_count(); i++) {
  66. Variant::Type expected = get_input_value_port_info(i).type;
  67. if (expected == Variant::NIL || expected == default_input_values[i].get_type()) {
  68. continue;
  69. } else {
  70. //not the same, reconvert
  71. Variant::CallError ce;
  72. Variant existing = default_input_values[i];
  73. const Variant *existingp = &existing;
  74. default_input_values[i] = Variant::construct(expected, &existingp, 1, ce, false);
  75. if (ce.error != Variant::CallError::CALL_OK) {
  76. //could not convert? force..
  77. default_input_values[i] = Variant::construct(expected, NULL, 0, ce, false);
  78. }
  79. }
  80. }
  81. }
  82. Array VisualScriptNode::_get_default_input_values() const {
  83. //validate on save, since on load there is little info about this
  84. Array values = default_input_values;
  85. values.resize(get_input_value_port_count());
  86. return values;
  87. }
  88. String VisualScriptNode::get_text() const {
  89. return "";
  90. }
  91. void VisualScriptNode::_bind_methods() {
  92. ClassDB::bind_method(D_METHOD("get_visual_script"), &VisualScriptNode::get_visual_script);
  93. ClassDB::bind_method(D_METHOD("set_default_input_value", "port_idx", "value"), &VisualScriptNode::set_default_input_value);
  94. ClassDB::bind_method(D_METHOD("get_default_input_value", "port_idx"), &VisualScriptNode::get_default_input_value);
  95. ClassDB::bind_method(D_METHOD("ports_changed_notify"), &VisualScriptNode::ports_changed_notify);
  96. ClassDB::bind_method(D_METHOD("_set_default_input_values", "values"), &VisualScriptNode::_set_default_input_values);
  97. ClassDB::bind_method(D_METHOD("_get_default_input_values"), &VisualScriptNode::_get_default_input_values);
  98. ADD_PROPERTY(PropertyInfo(Variant::ARRAY, "_default_input_values", PROPERTY_HINT_NONE, "", PROPERTY_USAGE_NOEDITOR | PROPERTY_USAGE_INTERNAL), "_set_default_input_values", "_get_default_input_values");
  99. ADD_SIGNAL(MethodInfo("ports_changed"));
  100. }
  101. VisualScriptNode::TypeGuess VisualScriptNode::guess_output_type(TypeGuess *p_inputs, int p_output) const {
  102. PropertyInfo pinfo = get_output_value_port_info(p_output);
  103. TypeGuess tg;
  104. tg.type = pinfo.type;
  105. if (pinfo.hint == PROPERTY_HINT_RESOURCE_TYPE) {
  106. tg.gdclass = pinfo.hint_string;
  107. }
  108. return tg;
  109. }
  110. Ref<VisualScript> VisualScriptNode::get_visual_script() const {
  111. if (scripts_used.size())
  112. return Ref<VisualScript>(scripts_used.front()->get());
  113. return Ref<VisualScript>();
  114. }
  115. VisualScriptNode::VisualScriptNode() {
  116. breakpoint = false;
  117. }
  118. ////////////////
  119. /////////////////////
  120. VisualScriptNodeInstance::VisualScriptNodeInstance() {
  121. sequence_outputs = NULL;
  122. input_ports = NULL;
  123. }
  124. VisualScriptNodeInstance::~VisualScriptNodeInstance() {
  125. if (sequence_outputs) {
  126. memdelete_arr(sequence_outputs);
  127. }
  128. if (input_ports) {
  129. memdelete_arr(input_ports);
  130. }
  131. if (output_ports) {
  132. memdelete_arr(output_ports);
  133. }
  134. }
  135. void VisualScript::add_function(const StringName &p_name) {
  136. ERR_FAIL_COND(instances.size());
  137. ERR_FAIL_COND(!String(p_name).is_valid_identifier());
  138. ERR_FAIL_COND(functions.has(p_name));
  139. functions[p_name] = Function();
  140. functions[p_name].scroll = Vector2(-50, -100);
  141. }
  142. bool VisualScript::has_function(const StringName &p_name) const {
  143. return functions.has(p_name);
  144. }
  145. void VisualScript::remove_function(const StringName &p_name) {
  146. ERR_FAIL_COND(instances.size());
  147. ERR_FAIL_COND(!functions.has(p_name));
  148. for (Map<int, Function::NodeData>::Element *E = functions[p_name].nodes.front(); E; E = E->next()) {
  149. E->get().node->disconnect("ports_changed", this, "_node_ports_changed");
  150. E->get().node->scripts_used.erase(this);
  151. }
  152. functions.erase(p_name);
  153. }
  154. void VisualScript::rename_function(const StringName &p_name, const StringName &p_new_name) {
  155. ERR_FAIL_COND(instances.size());
  156. ERR_FAIL_COND(!functions.has(p_name));
  157. if (p_new_name == p_name)
  158. return;
  159. ERR_FAIL_COND(!String(p_new_name).is_valid_identifier());
  160. ERR_FAIL_COND(functions.has(p_new_name));
  161. ERR_FAIL_COND(variables.has(p_new_name));
  162. ERR_FAIL_COND(custom_signals.has(p_new_name));
  163. functions[p_new_name] = functions[p_name];
  164. functions.erase(p_name);
  165. }
  166. void VisualScript::set_function_scroll(const StringName &p_name, const Vector2 &p_scroll) {
  167. ERR_FAIL_COND(!functions.has(p_name));
  168. functions[p_name].scroll = p_scroll;
  169. }
  170. Vector2 VisualScript::get_function_scroll(const StringName &p_name) const {
  171. ERR_FAIL_COND_V(!functions.has(p_name), Vector2());
  172. return functions[p_name].scroll;
  173. }
  174. void VisualScript::get_function_list(List<StringName> *r_functions) const {
  175. for (const Map<StringName, Function>::Element *E = functions.front(); E; E = E->next()) {
  176. r_functions->push_back(E->key());
  177. }
  178. r_functions->sort_custom<StringName::AlphCompare>();
  179. }
  180. int VisualScript::get_function_node_id(const StringName &p_name) const {
  181. ERR_FAIL_COND_V(!functions.has(p_name), -1);
  182. return functions[p_name].function_id;
  183. }
  184. void VisualScript::_node_ports_changed(int p_id) {
  185. StringName function;
  186. for (Map<StringName, Function>::Element *E = functions.front(); E; E = E->next()) {
  187. if (E->get().nodes.has(p_id)) {
  188. function = E->key();
  189. break;
  190. }
  191. }
  192. ERR_FAIL_COND(function == StringName());
  193. Function &func = functions[function];
  194. Ref<VisualScriptNode> vsn = func.nodes[p_id].node;
  195. vsn->validate_input_default_values();
  196. //must revalidate all the functions
  197. {
  198. List<SequenceConnection> to_remove;
  199. for (Set<SequenceConnection>::Element *E = func.sequence_connections.front(); E; E = E->next()) {
  200. if (E->get().from_node == p_id && E->get().from_output >= vsn->get_output_sequence_port_count()) {
  201. to_remove.push_back(E->get());
  202. }
  203. if (E->get().to_node == p_id && !vsn->has_input_sequence_port()) {
  204. to_remove.push_back(E->get());
  205. }
  206. }
  207. while (to_remove.size()) {
  208. func.sequence_connections.erase(to_remove.front()->get());
  209. to_remove.pop_front();
  210. }
  211. }
  212. {
  213. List<DataConnection> to_remove;
  214. for (Set<DataConnection>::Element *E = func.data_connections.front(); E; E = E->next()) {
  215. if (E->get().from_node == p_id && E->get().from_port >= vsn->get_output_value_port_count()) {
  216. to_remove.push_back(E->get());
  217. }
  218. if (E->get().to_node == p_id && E->get().to_port >= vsn->get_input_value_port_count()) {
  219. to_remove.push_back(E->get());
  220. }
  221. }
  222. while (to_remove.size()) {
  223. func.data_connections.erase(to_remove.front()->get());
  224. to_remove.pop_front();
  225. }
  226. }
  227. #ifdef TOOLS_ENABLED
  228. set_edited(true); //something changed, let's set as edited
  229. emit_signal("node_ports_changed", function, p_id);
  230. #endif
  231. }
  232. void VisualScript::add_node(const StringName &p_func, int p_id, const Ref<VisualScriptNode> &p_node, const Point2 &p_pos) {
  233. ERR_FAIL_COND(instances.size());
  234. ERR_FAIL_COND(!functions.has(p_func));
  235. for (Map<StringName, Function>::Element *E = functions.front(); E; E = E->next()) {
  236. ERR_FAIL_COND(E->get().nodes.has(p_id)); //id can exist only one in script, even for different functions
  237. }
  238. Function &func = functions[p_func];
  239. if (Object::cast_to<VisualScriptFunction>(*p_node)) {
  240. //the function indeed
  241. ERR_FAIL_COND_MSG(func.function_id >= 0, "A function node has already been set here.");
  242. func.function_id = p_id;
  243. }
  244. Function::NodeData nd;
  245. nd.node = p_node;
  246. nd.pos = p_pos;
  247. Ref<VisualScriptNode> vsn = p_node;
  248. vsn->connect("ports_changed", this, "_node_ports_changed", varray(p_id));
  249. vsn->scripts_used.insert(this);
  250. vsn->validate_input_default_values(); // Validate when fully loaded
  251. func.nodes[p_id] = nd;
  252. }
  253. void VisualScript::remove_node(const StringName &p_func, int p_id) {
  254. ERR_FAIL_COND(instances.size());
  255. ERR_FAIL_COND(!functions.has(p_func));
  256. Function &func = functions[p_func];
  257. ERR_FAIL_COND(!func.nodes.has(p_id));
  258. {
  259. List<SequenceConnection> to_remove;
  260. for (Set<SequenceConnection>::Element *E = func.sequence_connections.front(); E; E = E->next()) {
  261. if (E->get().from_node == p_id || E->get().to_node == p_id) {
  262. to_remove.push_back(E->get());
  263. }
  264. }
  265. while (to_remove.size()) {
  266. func.sequence_connections.erase(to_remove.front()->get());
  267. to_remove.pop_front();
  268. }
  269. }
  270. {
  271. List<DataConnection> to_remove;
  272. for (Set<DataConnection>::Element *E = func.data_connections.front(); E; E = E->next()) {
  273. if (E->get().from_node == p_id || E->get().to_node == p_id) {
  274. to_remove.push_back(E->get());
  275. }
  276. }
  277. while (to_remove.size()) {
  278. func.data_connections.erase(to_remove.front()->get());
  279. to_remove.pop_front();
  280. }
  281. }
  282. if (Object::cast_to<VisualScriptFunction>(func.nodes[p_id].node.ptr())) {
  283. func.function_id = -1; //revert to invalid
  284. }
  285. func.nodes[p_id].node->disconnect("ports_changed", this, "_node_ports_changed");
  286. func.nodes[p_id].node->scripts_used.erase(this);
  287. func.nodes.erase(p_id);
  288. }
  289. bool VisualScript::has_node(const StringName &p_func, int p_id) const {
  290. ERR_FAIL_COND_V(!functions.has(p_func), false);
  291. const Function &func = functions[p_func];
  292. return func.nodes.has(p_id);
  293. }
  294. Ref<VisualScriptNode> VisualScript::get_node(const StringName &p_func, int p_id) const {
  295. ERR_FAIL_COND_V(!functions.has(p_func), Ref<VisualScriptNode>());
  296. const Function &func = functions[p_func];
  297. ERR_FAIL_COND_V(!func.nodes.has(p_id), Ref<VisualScriptNode>());
  298. return func.nodes[p_id].node;
  299. }
  300. void VisualScript::set_node_position(const StringName &p_func, int p_id, const Point2 &p_pos) {
  301. ERR_FAIL_COND(instances.size());
  302. ERR_FAIL_COND(!functions.has(p_func));
  303. Function &func = functions[p_func];
  304. ERR_FAIL_COND(!func.nodes.has(p_id));
  305. func.nodes[p_id].pos = p_pos;
  306. }
  307. Point2 VisualScript::get_node_position(const StringName &p_func, int p_id) const {
  308. ERR_FAIL_COND_V(!functions.has(p_func), Point2());
  309. const Function &func = functions[p_func];
  310. ERR_FAIL_COND_V(!func.nodes.has(p_id), Point2());
  311. return func.nodes[p_id].pos;
  312. }
  313. void VisualScript::get_node_list(const StringName &p_func, List<int> *r_nodes) const {
  314. ERR_FAIL_COND(!functions.has(p_func));
  315. const Function &func = functions[p_func];
  316. for (const Map<int, Function::NodeData>::Element *E = func.nodes.front(); E; E = E->next()) {
  317. r_nodes->push_back(E->key());
  318. }
  319. }
  320. void VisualScript::sequence_connect(const StringName &p_func, int p_from_node, int p_from_output, int p_to_node) {
  321. ERR_FAIL_COND(instances.size());
  322. ERR_FAIL_COND(!functions.has(p_func));
  323. Function &func = functions[p_func];
  324. SequenceConnection sc;
  325. sc.from_node = p_from_node;
  326. sc.from_output = p_from_output;
  327. sc.to_node = p_to_node;
  328. ERR_FAIL_COND(func.sequence_connections.has(sc));
  329. func.sequence_connections.insert(sc);
  330. }
  331. void VisualScript::sequence_disconnect(const StringName &p_func, int p_from_node, int p_from_output, int p_to_node) {
  332. ERR_FAIL_COND(!functions.has(p_func));
  333. Function &func = functions[p_func];
  334. SequenceConnection sc;
  335. sc.from_node = p_from_node;
  336. sc.from_output = p_from_output;
  337. sc.to_node = p_to_node;
  338. ERR_FAIL_COND(!func.sequence_connections.has(sc));
  339. func.sequence_connections.erase(sc);
  340. }
  341. bool VisualScript::has_sequence_connection(const StringName &p_func, int p_from_node, int p_from_output, int p_to_node) const {
  342. ERR_FAIL_COND_V(!functions.has(p_func), false);
  343. const Function &func = functions[p_func];
  344. SequenceConnection sc;
  345. sc.from_node = p_from_node;
  346. sc.from_output = p_from_output;
  347. sc.to_node = p_to_node;
  348. return func.sequence_connections.has(sc);
  349. }
  350. void VisualScript::get_sequence_connection_list(const StringName &p_func, List<SequenceConnection> *r_connection) const {
  351. ERR_FAIL_COND(!functions.has(p_func));
  352. const Function &func = functions[p_func];
  353. for (const Set<SequenceConnection>::Element *E = func.sequence_connections.front(); E; E = E->next()) {
  354. r_connection->push_back(E->get());
  355. }
  356. }
  357. void VisualScript::data_connect(const StringName &p_func, int p_from_node, int p_from_port, int p_to_node, int p_to_port) {
  358. ERR_FAIL_COND(instances.size());
  359. ERR_FAIL_COND(!functions.has(p_func));
  360. Function &func = functions[p_func];
  361. DataConnection dc;
  362. dc.from_node = p_from_node;
  363. dc.from_port = p_from_port;
  364. dc.to_node = p_to_node;
  365. dc.to_port = p_to_port;
  366. ERR_FAIL_COND(func.data_connections.has(dc));
  367. func.data_connections.insert(dc);
  368. }
  369. void VisualScript::data_disconnect(const StringName &p_func, int p_from_node, int p_from_port, int p_to_node, int p_to_port) {
  370. ERR_FAIL_COND(!functions.has(p_func));
  371. Function &func = functions[p_func];
  372. DataConnection dc;
  373. dc.from_node = p_from_node;
  374. dc.from_port = p_from_port;
  375. dc.to_node = p_to_node;
  376. dc.to_port = p_to_port;
  377. ERR_FAIL_COND(!func.data_connections.has(dc));
  378. func.data_connections.erase(dc);
  379. }
  380. bool VisualScript::has_data_connection(const StringName &p_func, int p_from_node, int p_from_port, int p_to_node, int p_to_port) const {
  381. ERR_FAIL_COND_V(!functions.has(p_func), false);
  382. const Function &func = functions[p_func];
  383. DataConnection dc;
  384. dc.from_node = p_from_node;
  385. dc.from_port = p_from_port;
  386. dc.to_node = p_to_node;
  387. dc.to_port = p_to_port;
  388. return func.data_connections.has(dc);
  389. }
  390. bool VisualScript::is_input_value_port_connected(const StringName &p_func, int p_node, int p_port) const {
  391. ERR_FAIL_COND_V(!functions.has(p_func), false);
  392. const Function &func = functions[p_func];
  393. for (const Set<DataConnection>::Element *E = func.data_connections.front(); E; E = E->next()) {
  394. if (E->get().to_node == p_node && E->get().to_port == p_port)
  395. return true;
  396. }
  397. return false;
  398. }
  399. bool VisualScript::get_input_value_port_connection_source(const StringName &p_func, int p_node, int p_port, int *r_node, int *r_port) const {
  400. ERR_FAIL_COND_V(!functions.has(p_func), false);
  401. const Function &func = functions[p_func];
  402. for (const Set<DataConnection>::Element *E = func.data_connections.front(); E; E = E->next()) {
  403. if (E->get().to_node == p_node && E->get().to_port == p_port) {
  404. *r_node = E->get().from_node;
  405. *r_port = E->get().from_port;
  406. return true;
  407. }
  408. }
  409. return false;
  410. }
  411. void VisualScript::get_data_connection_list(const StringName &p_func, List<DataConnection> *r_connection) const {
  412. ERR_FAIL_COND(!functions.has(p_func));
  413. const Function &func = functions[p_func];
  414. for (const Set<DataConnection>::Element *E = func.data_connections.front(); E; E = E->next()) {
  415. r_connection->push_back(E->get());
  416. }
  417. }
  418. void VisualScript::add_variable(const StringName &p_name, const Variant &p_default_value, bool p_export) {
  419. ERR_FAIL_COND(instances.size());
  420. ERR_FAIL_COND(!String(p_name).is_valid_identifier());
  421. ERR_FAIL_COND(variables.has(p_name));
  422. Variable v;
  423. v.default_value = p_default_value;
  424. v.info.type = p_default_value.get_type();
  425. v.info.name = p_name;
  426. v.info.hint = PROPERTY_HINT_NONE;
  427. v._export = p_export;
  428. variables[p_name] = v;
  429. #ifdef TOOLS_ENABLED
  430. _update_placeholders();
  431. #endif
  432. }
  433. bool VisualScript::has_variable(const StringName &p_name) const {
  434. return variables.has(p_name);
  435. }
  436. void VisualScript::remove_variable(const StringName &p_name) {
  437. ERR_FAIL_COND(!variables.has(p_name));
  438. variables.erase(p_name);
  439. #ifdef TOOLS_ENABLED
  440. _update_placeholders();
  441. #endif
  442. }
  443. void VisualScript::set_variable_default_value(const StringName &p_name, const Variant &p_value) {
  444. ERR_FAIL_COND(!variables.has(p_name));
  445. variables[p_name].default_value = p_value;
  446. #ifdef TOOLS_ENABLED
  447. _update_placeholders();
  448. #endif
  449. }
  450. Variant VisualScript::get_variable_default_value(const StringName &p_name) const {
  451. ERR_FAIL_COND_V(!variables.has(p_name), Variant());
  452. return variables[p_name].default_value;
  453. }
  454. void VisualScript::set_variable_info(const StringName &p_name, const PropertyInfo &p_info) {
  455. ERR_FAIL_COND(instances.size());
  456. ERR_FAIL_COND(!variables.has(p_name));
  457. variables[p_name].info = p_info;
  458. variables[p_name].info.name = p_name;
  459. #ifdef TOOLS_ENABLED
  460. _update_placeholders();
  461. #endif
  462. }
  463. PropertyInfo VisualScript::get_variable_info(const StringName &p_name) const {
  464. ERR_FAIL_COND_V(!variables.has(p_name), PropertyInfo());
  465. return variables[p_name].info;
  466. }
  467. void VisualScript::set_variable_export(const StringName &p_name, bool p_export) {
  468. ERR_FAIL_COND(!variables.has(p_name));
  469. variables[p_name]._export = p_export;
  470. #ifdef TOOLS_ENABLED
  471. _update_placeholders();
  472. #endif
  473. }
  474. bool VisualScript::get_variable_export(const StringName &p_name) const {
  475. ERR_FAIL_COND_V(!variables.has(p_name), false);
  476. return variables[p_name]._export;
  477. }
  478. void VisualScript::_set_variable_info(const StringName &p_name, const Dictionary &p_info) {
  479. PropertyInfo pinfo;
  480. if (p_info.has("type"))
  481. pinfo.type = Variant::Type(int(p_info["type"]));
  482. if (p_info.has("name"))
  483. pinfo.name = p_info["name"];
  484. if (p_info.has("hint"))
  485. pinfo.hint = PropertyHint(int(p_info["hint"]));
  486. if (p_info.has("hint_string"))
  487. pinfo.hint_string = p_info["hint_string"];
  488. if (p_info.has("usage"))
  489. pinfo.usage = p_info["usage"];
  490. set_variable_info(p_name, pinfo);
  491. }
  492. Dictionary VisualScript::_get_variable_info(const StringName &p_name) const {
  493. PropertyInfo pinfo = get_variable_info(p_name);
  494. Dictionary d;
  495. d["type"] = pinfo.type;
  496. d["name"] = pinfo.name;
  497. d["hint"] = pinfo.hint;
  498. d["hint_string"] = pinfo.hint_string;
  499. d["usage"] = pinfo.usage;
  500. return d;
  501. }
  502. void VisualScript::get_variable_list(List<StringName> *r_variables) const {
  503. for (Map<StringName, Variable>::Element *E = variables.front(); E; E = E->next()) {
  504. r_variables->push_back(E->key());
  505. }
  506. r_variables->sort_custom<StringName::AlphCompare>();
  507. }
  508. void VisualScript::set_instance_base_type(const StringName &p_type) {
  509. ERR_FAIL_COND(instances.size());
  510. base_type = p_type;
  511. }
  512. void VisualScript::rename_variable(const StringName &p_name, const StringName &p_new_name) {
  513. ERR_FAIL_COND(instances.size());
  514. ERR_FAIL_COND(!variables.has(p_name));
  515. if (p_new_name == p_name)
  516. return;
  517. ERR_FAIL_COND(!String(p_new_name).is_valid_identifier());
  518. ERR_FAIL_COND(functions.has(p_new_name));
  519. ERR_FAIL_COND(variables.has(p_new_name));
  520. ERR_FAIL_COND(custom_signals.has(p_new_name));
  521. variables[p_new_name] = variables[p_name];
  522. variables.erase(p_name);
  523. }
  524. void VisualScript::add_custom_signal(const StringName &p_name) {
  525. ERR_FAIL_COND(instances.size());
  526. ERR_FAIL_COND(!String(p_name).is_valid_identifier());
  527. ERR_FAIL_COND(custom_signals.has(p_name));
  528. custom_signals[p_name] = Vector<Argument>();
  529. }
  530. bool VisualScript::has_custom_signal(const StringName &p_name) const {
  531. return custom_signals.has(p_name);
  532. }
  533. void VisualScript::custom_signal_add_argument(const StringName &p_func, Variant::Type p_type, const String &p_name, int p_index) {
  534. ERR_FAIL_COND(instances.size());
  535. ERR_FAIL_COND(!custom_signals.has(p_func));
  536. Argument arg;
  537. arg.type = p_type;
  538. arg.name = p_name;
  539. if (p_index < 0)
  540. custom_signals[p_func].push_back(arg);
  541. else
  542. custom_signals[p_func].insert(0, arg);
  543. }
  544. void VisualScript::custom_signal_set_argument_type(const StringName &p_func, int p_argidx, Variant::Type p_type) {
  545. ERR_FAIL_COND(instances.size());
  546. ERR_FAIL_COND(!custom_signals.has(p_func));
  547. ERR_FAIL_INDEX(p_argidx, custom_signals[p_func].size());
  548. custom_signals[p_func].write[p_argidx].type = p_type;
  549. }
  550. Variant::Type VisualScript::custom_signal_get_argument_type(const StringName &p_func, int p_argidx) const {
  551. ERR_FAIL_COND_V(!custom_signals.has(p_func), Variant::NIL);
  552. ERR_FAIL_INDEX_V(p_argidx, custom_signals[p_func].size(), Variant::NIL);
  553. return custom_signals[p_func][p_argidx].type;
  554. }
  555. void VisualScript::custom_signal_set_argument_name(const StringName &p_func, int p_argidx, const String &p_name) {
  556. ERR_FAIL_COND(instances.size());
  557. ERR_FAIL_COND(!custom_signals.has(p_func));
  558. ERR_FAIL_INDEX(p_argidx, custom_signals[p_func].size());
  559. custom_signals[p_func].write[p_argidx].name = p_name;
  560. }
  561. String VisualScript::custom_signal_get_argument_name(const StringName &p_func, int p_argidx) const {
  562. ERR_FAIL_COND_V(!custom_signals.has(p_func), String());
  563. ERR_FAIL_INDEX_V(p_argidx, custom_signals[p_func].size(), String());
  564. return custom_signals[p_func][p_argidx].name;
  565. }
  566. void VisualScript::custom_signal_remove_argument(const StringName &p_func, int p_argidx) {
  567. ERR_FAIL_COND(instances.size());
  568. ERR_FAIL_COND(!custom_signals.has(p_func));
  569. ERR_FAIL_INDEX(p_argidx, custom_signals[p_func].size());
  570. custom_signals[p_func].remove(p_argidx);
  571. }
  572. int VisualScript::custom_signal_get_argument_count(const StringName &p_func) const {
  573. ERR_FAIL_COND_V(!custom_signals.has(p_func), 0);
  574. return custom_signals[p_func].size();
  575. }
  576. void VisualScript::custom_signal_swap_argument(const StringName &p_func, int p_argidx, int p_with_argidx) {
  577. ERR_FAIL_COND(instances.size());
  578. ERR_FAIL_COND(!custom_signals.has(p_func));
  579. ERR_FAIL_INDEX(p_argidx, custom_signals[p_func].size());
  580. ERR_FAIL_INDEX(p_with_argidx, custom_signals[p_func].size());
  581. SWAP(custom_signals[p_func].write[p_argidx], custom_signals[p_func].write[p_with_argidx]);
  582. }
  583. void VisualScript::remove_custom_signal(const StringName &p_name) {
  584. ERR_FAIL_COND(instances.size());
  585. ERR_FAIL_COND(!custom_signals.has(p_name));
  586. custom_signals.erase(p_name);
  587. }
  588. void VisualScript::rename_custom_signal(const StringName &p_name, const StringName &p_new_name) {
  589. ERR_FAIL_COND(instances.size());
  590. ERR_FAIL_COND(!custom_signals.has(p_name));
  591. if (p_new_name == p_name)
  592. return;
  593. ERR_FAIL_COND(!String(p_new_name).is_valid_identifier());
  594. ERR_FAIL_COND(functions.has(p_new_name));
  595. ERR_FAIL_COND(variables.has(p_new_name));
  596. ERR_FAIL_COND(custom_signals.has(p_new_name));
  597. custom_signals[p_new_name] = custom_signals[p_name];
  598. custom_signals.erase(p_name);
  599. }
  600. void VisualScript::get_custom_signal_list(List<StringName> *r_custom_signals) const {
  601. for (const Map<StringName, Vector<Argument> >::Element *E = custom_signals.front(); E; E = E->next()) {
  602. r_custom_signals->push_back(E->key());
  603. }
  604. r_custom_signals->sort_custom<StringName::AlphCompare>();
  605. }
  606. int VisualScript::get_available_id() const {
  607. int max_id = 0;
  608. for (Map<StringName, Function>::Element *E = functions.front(); E; E = E->next()) {
  609. if (E->get().nodes.empty())
  610. continue;
  611. int last_id = E->get().nodes.back()->key();
  612. max_id = MAX(max_id, last_id + 1);
  613. }
  614. return max_id;
  615. }
  616. /////////////////////////////////
  617. bool VisualScript::can_instance() const {
  618. return true; //ScriptServer::is_scripting_enabled();
  619. }
  620. StringName VisualScript::get_instance_base_type() const {
  621. return base_type;
  622. }
  623. Ref<Script> VisualScript::get_base_script() const {
  624. return Ref<Script>(); // no inheritance in visual script
  625. }
  626. #ifdef TOOLS_ENABLED
  627. void VisualScript::_placeholder_erased(PlaceHolderScriptInstance *p_placeholder) {
  628. placeholders.erase(p_placeholder);
  629. }
  630. void VisualScript::_update_placeholders() {
  631. if (placeholders.size() == 0)
  632. return; //no bother if no placeholders
  633. List<PropertyInfo> pinfo;
  634. Map<StringName, Variant> values;
  635. for (Map<StringName, Variable>::Element *E = variables.front(); E; E = E->next()) {
  636. if (!E->get()._export)
  637. continue;
  638. PropertyInfo p = E->get().info;
  639. p.name = String(E->key());
  640. pinfo.push_back(p);
  641. values[p.name] = E->get().default_value;
  642. }
  643. for (Set<PlaceHolderScriptInstance *>::Element *E = placeholders.front(); E; E = E->next()) {
  644. E->get()->update(pinfo, values);
  645. }
  646. }
  647. #endif
  648. ScriptInstance *VisualScript::instance_create(Object *p_this) {
  649. #ifdef TOOLS_ENABLED
  650. if (!ScriptServer::is_scripting_enabled()) {
  651. PlaceHolderScriptInstance *sins = memnew(PlaceHolderScriptInstance(VisualScriptLanguage::singleton, Ref<Script>((Script *)this), p_this));
  652. placeholders.insert(sins);
  653. List<PropertyInfo> pinfo;
  654. Map<StringName, Variant> values;
  655. for (Map<StringName, Variable>::Element *E = variables.front(); E; E = E->next()) {
  656. if (!E->get()._export)
  657. continue;
  658. PropertyInfo p = E->get().info;
  659. p.name = String(E->key());
  660. pinfo.push_back(p);
  661. values[p.name] = E->get().default_value;
  662. }
  663. sins->update(pinfo, values);
  664. return sins;
  665. }
  666. #endif
  667. VisualScriptInstance *instance = memnew(VisualScriptInstance);
  668. instance->create(Ref<VisualScript>(this), p_this);
  669. if (VisualScriptLanguage::singleton->lock)
  670. VisualScriptLanguage::singleton->lock->lock();
  671. instances[p_this] = instance;
  672. if (VisualScriptLanguage::singleton->lock)
  673. VisualScriptLanguage::singleton->lock->unlock();
  674. return instance;
  675. }
  676. bool VisualScript::instance_has(const Object *p_this) const {
  677. return instances.has((Object *)p_this);
  678. }
  679. bool VisualScript::has_source_code() const {
  680. return false;
  681. }
  682. String VisualScript::get_source_code() const {
  683. return String();
  684. }
  685. void VisualScript::set_source_code(const String &p_code) {
  686. }
  687. Error VisualScript::reload(bool p_keep_state) {
  688. return OK;
  689. }
  690. bool VisualScript::is_tool() const {
  691. return false;
  692. }
  693. bool VisualScript::is_valid() const {
  694. return true; //always valid
  695. }
  696. ScriptLanguage *VisualScript::get_language() const {
  697. return VisualScriptLanguage::singleton;
  698. }
  699. bool VisualScript::has_script_signal(const StringName &p_signal) const {
  700. return custom_signals.has(p_signal);
  701. }
  702. void VisualScript::get_script_signal_list(List<MethodInfo> *r_signals) const {
  703. for (const Map<StringName, Vector<Argument> >::Element *E = custom_signals.front(); E; E = E->next()) {
  704. MethodInfo mi;
  705. mi.name = E->key();
  706. for (int i = 0; i < E->get().size(); i++) {
  707. PropertyInfo arg;
  708. arg.type = E->get()[i].type;
  709. arg.name = E->get()[i].name;
  710. mi.arguments.push_back(arg);
  711. }
  712. r_signals->push_back(mi);
  713. }
  714. }
  715. bool VisualScript::get_property_default_value(const StringName &p_property, Variant &r_value) const {
  716. if (!variables.has(p_property))
  717. return false;
  718. r_value = variables[p_property].default_value;
  719. return true;
  720. }
  721. void VisualScript::get_script_method_list(List<MethodInfo> *p_list) const {
  722. for (Map<StringName, Function>::Element *E = functions.front(); E; E = E->next()) {
  723. MethodInfo mi;
  724. mi.name = E->key();
  725. if (E->get().function_id >= 0) {
  726. Ref<VisualScriptFunction> func = E->get().nodes[E->get().function_id].node;
  727. if (func.is_valid()) {
  728. for (int i = 0; i < func->get_argument_count(); i++) {
  729. PropertyInfo arg;
  730. arg.name = func->get_argument_name(i);
  731. arg.type = func->get_argument_type(i);
  732. mi.arguments.push_back(arg);
  733. }
  734. }
  735. }
  736. p_list->push_back(mi);
  737. }
  738. }
  739. bool VisualScript::has_method(const StringName &p_method) const {
  740. return functions.has(p_method);
  741. }
  742. MethodInfo VisualScript::get_method_info(const StringName &p_method) const {
  743. const Map<StringName, Function>::Element *E = functions.find(p_method);
  744. if (!E)
  745. return MethodInfo();
  746. MethodInfo mi;
  747. mi.name = E->key();
  748. if (E->get().function_id >= 0) {
  749. Ref<VisualScriptFunction> func = E->get().nodes[E->get().function_id].node;
  750. if (func.is_valid()) {
  751. for (int i = 0; i < func->get_argument_count(); i++) {
  752. PropertyInfo arg;
  753. arg.name = func->get_argument_name(i);
  754. arg.type = func->get_argument_type(i);
  755. mi.arguments.push_back(arg);
  756. }
  757. if (!func->is_sequenced()) {
  758. mi.flags |= METHOD_FLAG_CONST;
  759. }
  760. }
  761. }
  762. return mi;
  763. }
  764. void VisualScript::get_script_property_list(List<PropertyInfo> *p_list) const {
  765. List<StringName> vars;
  766. get_variable_list(&vars);
  767. for (List<StringName>::Element *E = vars.front(); E; E = E->next()) {
  768. //if (!variables[E->get()]._export)
  769. // continue;
  770. PropertyInfo pi = variables[E->get()].info;
  771. pi.usage |= PROPERTY_USAGE_SCRIPT_VARIABLE;
  772. p_list->push_back(pi);
  773. }
  774. }
  775. int VisualScript::get_member_line(const StringName &p_member) const {
  776. #ifdef TOOLS_ENABLED
  777. if (has_function(p_member)) {
  778. for (Map<int, Function::NodeData>::Element *E = functions[p_member].nodes.front(); E; E = E->next()) {
  779. if (Object::cast_to<VisualScriptFunction>(E->get().node.ptr()))
  780. return E->key();
  781. }
  782. }
  783. #endif
  784. return -1;
  785. }
  786. #ifdef TOOLS_ENABLED
  787. bool VisualScript::are_subnodes_edited() const {
  788. for (const Map<StringName, Function>::Element *E = functions.front(); E; E = E->next()) {
  789. for (const Map<int, Function::NodeData>::Element *F = E->get().nodes.front(); F; F = F->next()) {
  790. if (F->get().node->is_edited()) {
  791. return true;
  792. }
  793. }
  794. }
  795. return false;
  796. }
  797. #endif
  798. void VisualScript::_set_data(const Dictionary &p_data) {
  799. Dictionary d = p_data;
  800. if (d.has("base_type"))
  801. base_type = d["base_type"];
  802. variables.clear();
  803. Array vars = d["variables"];
  804. for (int i = 0; i < vars.size(); i++) {
  805. Dictionary v = vars[i];
  806. StringName name = v["name"];
  807. add_variable(name);
  808. _set_variable_info(name, v);
  809. set_variable_default_value(name, v["default_value"]);
  810. set_variable_export(name, v.has("export") && bool(v["export"]));
  811. }
  812. custom_signals.clear();
  813. Array sigs = d["signals"];
  814. for (int i = 0; i < sigs.size(); i++) {
  815. Dictionary cs = sigs[i];
  816. add_custom_signal(cs["name"]);
  817. Array args = cs["arguments"];
  818. for (int j = 0; j < args.size(); j += 2) {
  819. custom_signal_add_argument(cs["name"], Variant::Type(int(args[j + 1])), args[j]);
  820. }
  821. }
  822. Array funcs = d["functions"];
  823. functions.clear();
  824. for (int i = 0; i < funcs.size(); i++) {
  825. Dictionary func = funcs[i];
  826. StringName name = func["name"];
  827. //int id=func["function_id"];
  828. add_function(name);
  829. set_function_scroll(name, func["scroll"]);
  830. Array nodes = func["nodes"];
  831. for (int j = 0; j < nodes.size(); j += 3) {
  832. add_node(name, nodes[j], nodes[j + 2], nodes[j + 1]);
  833. }
  834. Array sequence_connections = func["sequence_connections"];
  835. for (int j = 0; j < sequence_connections.size(); j += 3) {
  836. sequence_connect(name, sequence_connections[j + 0], sequence_connections[j + 1], sequence_connections[j + 2]);
  837. }
  838. Array data_connections = func["data_connections"];
  839. for (int j = 0; j < data_connections.size(); j += 4) {
  840. data_connect(name, data_connections[j + 0], data_connections[j + 1], data_connections[j + 2], data_connections[j + 3]);
  841. }
  842. }
  843. }
  844. Dictionary VisualScript::_get_data() const {
  845. Dictionary d;
  846. d["base_type"] = base_type;
  847. Array vars;
  848. for (const Map<StringName, Variable>::Element *E = variables.front(); E; E = E->next()) {
  849. Dictionary var = _get_variable_info(E->key());
  850. var["name"] = E->key(); //make sure it's the right one
  851. var["default_value"] = E->get().default_value;
  852. var["export"] = E->get()._export;
  853. vars.push_back(var);
  854. }
  855. d["variables"] = vars;
  856. Array sigs;
  857. for (const Map<StringName, Vector<Argument> >::Element *E = custom_signals.front(); E; E = E->next()) {
  858. Dictionary cs;
  859. cs["name"] = E->key();
  860. Array args;
  861. for (int i = 0; i < E->get().size(); i++) {
  862. args.push_back(E->get()[i].name);
  863. args.push_back(E->get()[i].type);
  864. }
  865. cs["arguments"] = args;
  866. sigs.push_back(cs);
  867. }
  868. d["signals"] = sigs;
  869. Array funcs;
  870. for (const Map<StringName, Function>::Element *E = functions.front(); E; E = E->next()) {
  871. Dictionary func;
  872. func["name"] = E->key();
  873. func["function_id"] = E->get().function_id;
  874. func["scroll"] = E->get().scroll;
  875. Array nodes;
  876. for (const Map<int, Function::NodeData>::Element *F = E->get().nodes.front(); F; F = F->next()) {
  877. nodes.push_back(F->key());
  878. nodes.push_back(F->get().pos);
  879. nodes.push_back(F->get().node);
  880. }
  881. func["nodes"] = nodes;
  882. Array sequence_connections;
  883. for (const Set<SequenceConnection>::Element *F = E->get().sequence_connections.front(); F; F = F->next()) {
  884. sequence_connections.push_back(F->get().from_node);
  885. sequence_connections.push_back(F->get().from_output);
  886. sequence_connections.push_back(F->get().to_node);
  887. }
  888. func["sequence_connections"] = sequence_connections;
  889. Array data_connections;
  890. for (const Set<DataConnection>::Element *F = E->get().data_connections.front(); F; F = F->next()) {
  891. data_connections.push_back(F->get().from_node);
  892. data_connections.push_back(F->get().from_port);
  893. data_connections.push_back(F->get().to_node);
  894. data_connections.push_back(F->get().to_port);
  895. }
  896. func["data_connections"] = data_connections;
  897. funcs.push_back(func);
  898. }
  899. d["functions"] = funcs;
  900. return d;
  901. }
  902. void VisualScript::_bind_methods() {
  903. ClassDB::bind_method(D_METHOD("_node_ports_changed"), &VisualScript::_node_ports_changed);
  904. ClassDB::bind_method(D_METHOD("add_function", "name"), &VisualScript::add_function);
  905. ClassDB::bind_method(D_METHOD("has_function", "name"), &VisualScript::has_function);
  906. ClassDB::bind_method(D_METHOD("remove_function", "name"), &VisualScript::remove_function);
  907. ClassDB::bind_method(D_METHOD("rename_function", "name", "new_name"), &VisualScript::rename_function);
  908. ClassDB::bind_method(D_METHOD("set_function_scroll", "name", "ofs"), &VisualScript::set_function_scroll);
  909. ClassDB::bind_method(D_METHOD("get_function_scroll", "name"), &VisualScript::get_function_scroll);
  910. ClassDB::bind_method(D_METHOD("add_node", "func", "id", "node", "position"), &VisualScript::add_node, DEFVAL(Point2()));
  911. ClassDB::bind_method(D_METHOD("remove_node", "func", "id"), &VisualScript::remove_node);
  912. ClassDB::bind_method(D_METHOD("get_function_node_id", "name"), &VisualScript::get_function_node_id);
  913. ClassDB::bind_method(D_METHOD("get_node", "func", "id"), &VisualScript::get_node);
  914. ClassDB::bind_method(D_METHOD("has_node", "func", "id"), &VisualScript::has_node);
  915. ClassDB::bind_method(D_METHOD("set_node_position", "func", "id", "position"), &VisualScript::set_node_position);
  916. ClassDB::bind_method(D_METHOD("get_node_position", "func", "id"), &VisualScript::get_node_position);
  917. ClassDB::bind_method(D_METHOD("sequence_connect", "func", "from_node", "from_output", "to_node"), &VisualScript::sequence_connect);
  918. ClassDB::bind_method(D_METHOD("sequence_disconnect", "func", "from_node", "from_output", "to_node"), &VisualScript::sequence_disconnect);
  919. ClassDB::bind_method(D_METHOD("has_sequence_connection", "func", "from_node", "from_output", "to_node"), &VisualScript::has_sequence_connection);
  920. ClassDB::bind_method(D_METHOD("data_connect", "func", "from_node", "from_port", "to_node", "to_port"), &VisualScript::data_connect);
  921. ClassDB::bind_method(D_METHOD("data_disconnect", "func", "from_node", "from_port", "to_node", "to_port"), &VisualScript::data_disconnect);
  922. ClassDB::bind_method(D_METHOD("has_data_connection", "func", "from_node", "from_port", "to_node", "to_port"), &VisualScript::has_data_connection);
  923. ClassDB::bind_method(D_METHOD("add_variable", "name", "default_value", "export"), &VisualScript::add_variable, DEFVAL(Variant()), DEFVAL(false));
  924. ClassDB::bind_method(D_METHOD("has_variable", "name"), &VisualScript::has_variable);
  925. ClassDB::bind_method(D_METHOD("remove_variable", "name"), &VisualScript::remove_variable);
  926. ClassDB::bind_method(D_METHOD("set_variable_default_value", "name", "value"), &VisualScript::set_variable_default_value);
  927. ClassDB::bind_method(D_METHOD("get_variable_default_value", "name"), &VisualScript::get_variable_default_value);
  928. ClassDB::bind_method(D_METHOD("set_variable_info", "name", "value"), &VisualScript::_set_variable_info);
  929. ClassDB::bind_method(D_METHOD("get_variable_info", "name"), &VisualScript::_get_variable_info);
  930. ClassDB::bind_method(D_METHOD("set_variable_export", "name", "enable"), &VisualScript::set_variable_export);
  931. ClassDB::bind_method(D_METHOD("get_variable_export", "name"), &VisualScript::get_variable_export);
  932. ClassDB::bind_method(D_METHOD("rename_variable", "name", "new_name"), &VisualScript::rename_variable);
  933. ClassDB::bind_method(D_METHOD("add_custom_signal", "name"), &VisualScript::add_custom_signal);
  934. ClassDB::bind_method(D_METHOD("has_custom_signal", "name"), &VisualScript::has_custom_signal);
  935. ClassDB::bind_method(D_METHOD("custom_signal_add_argument", "name", "type", "argname", "index"), &VisualScript::custom_signal_add_argument, DEFVAL(-1));
  936. ClassDB::bind_method(D_METHOD("custom_signal_set_argument_type", "name", "argidx", "type"), &VisualScript::custom_signal_set_argument_type);
  937. ClassDB::bind_method(D_METHOD("custom_signal_get_argument_type", "name", "argidx"), &VisualScript::custom_signal_get_argument_type);
  938. ClassDB::bind_method(D_METHOD("custom_signal_set_argument_name", "name", "argidx", "argname"), &VisualScript::custom_signal_set_argument_name);
  939. ClassDB::bind_method(D_METHOD("custom_signal_get_argument_name", "name", "argidx"), &VisualScript::custom_signal_get_argument_name);
  940. ClassDB::bind_method(D_METHOD("custom_signal_remove_argument", "name", "argidx"), &VisualScript::custom_signal_remove_argument);
  941. ClassDB::bind_method(D_METHOD("custom_signal_get_argument_count", "name"), &VisualScript::custom_signal_get_argument_count);
  942. ClassDB::bind_method(D_METHOD("custom_signal_swap_argument", "name", "argidx", "withidx"), &VisualScript::custom_signal_swap_argument);
  943. ClassDB::bind_method(D_METHOD("remove_custom_signal", "name"), &VisualScript::remove_custom_signal);
  944. ClassDB::bind_method(D_METHOD("rename_custom_signal", "name", "new_name"), &VisualScript::rename_custom_signal);
  945. //ClassDB::bind_method(D_METHOD("set_variable_info","name","info"),&VScript::set_variable_info);
  946. //ClassDB::bind_method(D_METHOD("get_variable_info","name"),&VScript::set_variable_info);
  947. ClassDB::bind_method(D_METHOD("set_instance_base_type", "type"), &VisualScript::set_instance_base_type);
  948. ClassDB::bind_method(D_METHOD("_set_data", "data"), &VisualScript::_set_data);
  949. ClassDB::bind_method(D_METHOD("_get_data"), &VisualScript::_get_data);
  950. ADD_PROPERTY(PropertyInfo(Variant::DICTIONARY, "data", PROPERTY_HINT_NONE, "", PROPERTY_USAGE_NOEDITOR | PROPERTY_USAGE_INTERNAL), "_set_data", "_get_data");
  951. ADD_SIGNAL(MethodInfo("node_ports_changed", PropertyInfo(Variant::STRING, "function"), PropertyInfo(Variant::INT, "id")));
  952. }
  953. VisualScript::VisualScript() {
  954. base_type = "Object";
  955. }
  956. Set<int> VisualScript::get_output_sequence_ports_connected(const String &edited_func, int from_node) {
  957. List<VisualScript::SequenceConnection> *sc = memnew(List<VisualScript::SequenceConnection>);
  958. get_sequence_connection_list(edited_func, sc);
  959. Set<int> connected;
  960. for (List<VisualScript::SequenceConnection>::Element *E = sc->front(); E; E = E->next()) {
  961. if (E->get().from_node == from_node) {
  962. connected.insert(E->get().from_output);
  963. }
  964. }
  965. memdelete(sc);
  966. return connected;
  967. }
  968. VisualScript::~VisualScript() {
  969. while (!functions.empty()) {
  970. remove_function(functions.front()->key());
  971. }
  972. }
  973. ////////////////////////////////////////////
  974. bool VisualScriptInstance::set(const StringName &p_name, const Variant &p_value) {
  975. Map<StringName, Variant>::Element *E = variables.find(p_name);
  976. if (!E)
  977. return false;
  978. E->get() = p_value;
  979. return true;
  980. }
  981. bool VisualScriptInstance::get(const StringName &p_name, Variant &r_ret) const {
  982. const Map<StringName, Variant>::Element *E = variables.find(p_name);
  983. if (!E)
  984. return false;
  985. r_ret = E->get();
  986. return true;
  987. }
  988. void VisualScriptInstance::get_property_list(List<PropertyInfo> *p_properties) const {
  989. for (const Map<StringName, VisualScript::Variable>::Element *E = script->variables.front(); E; E = E->next()) {
  990. if (!E->get()._export)
  991. continue;
  992. PropertyInfo p = E->get().info;
  993. p.name = String(E->key());
  994. p.usage |= PROPERTY_USAGE_SCRIPT_VARIABLE;
  995. p_properties->push_back(p);
  996. }
  997. }
  998. Variant::Type VisualScriptInstance::get_property_type(const StringName &p_name, bool *r_is_valid) const {
  999. const Map<StringName, VisualScript::Variable>::Element *E = script->variables.find(p_name);
  1000. if (!E) {
  1001. if (r_is_valid)
  1002. *r_is_valid = false;
  1003. ERR_FAIL_V(Variant::NIL);
  1004. }
  1005. if (r_is_valid)
  1006. *r_is_valid = true;
  1007. return E->get().info.type;
  1008. }
  1009. void VisualScriptInstance::get_method_list(List<MethodInfo> *p_list) const {
  1010. for (const Map<StringName, VisualScript::Function>::Element *E = script->functions.front(); E; E = E->next()) {
  1011. MethodInfo mi;
  1012. mi.name = E->key();
  1013. if (E->get().function_id >= 0 && E->get().nodes.has(E->get().function_id)) {
  1014. Ref<VisualScriptFunction> vsf = E->get().nodes[E->get().function_id].node;
  1015. if (vsf.is_valid()) {
  1016. for (int i = 0; i < vsf->get_argument_count(); i++) {
  1017. PropertyInfo arg;
  1018. arg.name = vsf->get_argument_name(i);
  1019. arg.type = vsf->get_argument_type(i);
  1020. mi.arguments.push_back(arg);
  1021. }
  1022. if (!vsf->is_sequenced()) { //assumed constant if not sequenced
  1023. mi.flags |= METHOD_FLAG_CONST;
  1024. }
  1025. //vsf->Get_ for now at least it does not return..
  1026. }
  1027. }
  1028. p_list->push_back(mi);
  1029. }
  1030. }
  1031. bool VisualScriptInstance::has_method(const StringName &p_method) const {
  1032. return script->functions.has(p_method);
  1033. }
  1034. //#define VSDEBUG(m_text) print_line(m_text)
  1035. #define VSDEBUG(m_text)
  1036. void VisualScriptInstance::_dependency_step(VisualScriptNodeInstance *node, int p_pass, int *pass_stack, const Variant **input_args, Variant **output_args, Variant *variant_stack, Variant::CallError &r_error, String &error_str, VisualScriptNodeInstance **r_error_node) {
  1037. ERR_FAIL_COND(node->pass_idx == -1);
  1038. if (pass_stack[node->pass_idx] == p_pass)
  1039. return;
  1040. pass_stack[node->pass_idx] = p_pass;
  1041. if (!node->dependencies.empty()) {
  1042. int dc = node->dependencies.size();
  1043. VisualScriptNodeInstance **deps = node->dependencies.ptrw();
  1044. for (int i = 0; i < dc; i++) {
  1045. _dependency_step(deps[i], p_pass, pass_stack, input_args, output_args, variant_stack, r_error, error_str, r_error_node);
  1046. if (r_error.error != Variant::CallError::CALL_OK)
  1047. return;
  1048. }
  1049. }
  1050. for (int i = 0; i < node->input_port_count; i++) {
  1051. int index = node->input_ports[i] & VisualScriptNodeInstance::INPUT_MASK;
  1052. if (node->input_ports[i] & VisualScriptNodeInstance::INPUT_DEFAULT_VALUE_BIT) {
  1053. //is a default value (unassigned input port)
  1054. input_args[i] = &default_values[index];
  1055. } else {
  1056. //regular temporary in stack
  1057. input_args[i] = &variant_stack[index];
  1058. }
  1059. }
  1060. for (int i = 0; i < node->output_port_count; i++) {
  1061. output_args[i] = &variant_stack[node->output_ports[i]];
  1062. }
  1063. Variant *working_mem = node->working_mem_idx >= 0 ? &variant_stack[node->working_mem_idx] : (Variant *)NULL;
  1064. node->step(input_args, output_args, VisualScriptNodeInstance::START_MODE_BEGIN_SEQUENCE, working_mem, r_error, error_str);
  1065. //ignore return
  1066. if (r_error.error != Variant::CallError::CALL_OK) {
  1067. *r_error_node = node;
  1068. }
  1069. }
  1070. Variant VisualScriptInstance::_call_internal(const StringName &p_method, void *p_stack, int p_stack_size, VisualScriptNodeInstance *p_node, int p_flow_stack_pos, int p_pass, bool p_resuming_yield, Variant::CallError &r_error) {
  1071. Map<StringName, Function>::Element *F = functions.find(p_method);
  1072. ERR_FAIL_COND_V(!F, Variant());
  1073. Function *f = &F->get();
  1074. //this call goes separate, so it can e yielded and suspended
  1075. Variant *variant_stack = (Variant *)p_stack;
  1076. bool *sequence_bits = (bool *)(variant_stack + f->max_stack);
  1077. const Variant **input_args = (const Variant **)(sequence_bits + f->node_count);
  1078. Variant **output_args = (Variant **)(input_args + max_input_args);
  1079. int flow_max = f->flow_stack_size;
  1080. int *flow_stack = flow_max ? (int *)(output_args + max_output_args) : (int *)NULL;
  1081. int *pass_stack = flow_stack ? (int *)(flow_stack + flow_max) : (int *)NULL;
  1082. String error_str;
  1083. VisualScriptNodeInstance *node = p_node;
  1084. bool error = false;
  1085. int current_node_id = f->node;
  1086. Variant return_value;
  1087. Variant *working_mem = NULL;
  1088. int flow_stack_pos = p_flow_stack_pos;
  1089. #ifdef DEBUG_ENABLED
  1090. if (ScriptDebugger::get_singleton()) {
  1091. VisualScriptLanguage::singleton->enter_function(this, &p_method, variant_stack, &working_mem, &current_node_id);
  1092. }
  1093. #endif
  1094. while (true) {
  1095. p_pass++; //increment pass
  1096. current_node_id = node->get_id();
  1097. VSDEBUG("==========AT NODE: " + itos(current_node_id) + " base: " + node->get_base_node()->get_class_name());
  1098. VSDEBUG("AT STACK POS: " + itos(flow_stack_pos));
  1099. //setup working mem
  1100. working_mem = node->working_mem_idx >= 0 ? &variant_stack[node->working_mem_idx] : (Variant *)NULL;
  1101. VSDEBUG("WORKING MEM: " + itos(node->working_mem_idx));
  1102. if (current_node_id == f->node) {
  1103. //if function node, set up function arguments from beginning of stack
  1104. for (int i = 0; i < f->argument_count; i++) {
  1105. input_args[i] = &variant_stack[i];
  1106. }
  1107. } else {
  1108. //run dependencies first
  1109. if (!node->dependencies.empty()) {
  1110. int dc = node->dependencies.size();
  1111. VisualScriptNodeInstance **deps = node->dependencies.ptrw();
  1112. for (int i = 0; i < dc; i++) {
  1113. _dependency_step(deps[i], p_pass, pass_stack, input_args, output_args, variant_stack, r_error, error_str, &node);
  1114. if (r_error.error != Variant::CallError::CALL_OK) {
  1115. error = true;
  1116. current_node_id = node->id;
  1117. break;
  1118. }
  1119. }
  1120. }
  1121. if (!error) {
  1122. //setup input pointers normally
  1123. VSDEBUG("INPUT PORTS: " + itos(node->input_port_count));
  1124. for (int i = 0; i < node->input_port_count; i++) {
  1125. int index = node->input_ports[i] & VisualScriptNodeInstance::INPUT_MASK;
  1126. if (node->input_ports[i] & VisualScriptNodeInstance::INPUT_DEFAULT_VALUE_BIT) {
  1127. //is a default value (unassigned input port)
  1128. input_args[i] = &default_values[index];
  1129. VSDEBUG("\tPORT " + itos(i) + " DEFAULT VAL");
  1130. } else {
  1131. //regular temporary in stack
  1132. input_args[i] = &variant_stack[index];
  1133. VSDEBUG("PORT " + itos(i) + " AT STACK " + itos(index));
  1134. }
  1135. }
  1136. }
  1137. }
  1138. if (error)
  1139. break;
  1140. //setup output pointers
  1141. VSDEBUG("OUTPUT PORTS: " + itos(node->output_port_count));
  1142. for (int i = 0; i < node->output_port_count; i++) {
  1143. output_args[i] = &variant_stack[node->output_ports[i]];
  1144. VSDEBUG("PORT " + itos(i) + " AT STACK " + itos(node->output_ports[i]));
  1145. }
  1146. //do step
  1147. VisualScriptNodeInstance::StartMode start_mode;
  1148. {
  1149. if (p_resuming_yield) {
  1150. start_mode = VisualScriptNodeInstance::START_MODE_RESUME_YIELD;
  1151. p_resuming_yield = false; // should resume only the first time
  1152. } else if (flow_stack && (flow_stack[flow_stack_pos] & VisualScriptNodeInstance::FLOW_STACK_PUSHED_BIT)) {
  1153. //if there is a push bit, it means we are continuing a sequence
  1154. start_mode = VisualScriptNodeInstance::START_MODE_CONTINUE_SEQUENCE;
  1155. } else {
  1156. start_mode = VisualScriptNodeInstance::START_MODE_BEGIN_SEQUENCE;
  1157. }
  1158. }
  1159. VSDEBUG("STEP - STARTSEQ: " + itos(start_mode));
  1160. int ret = node->step(input_args, output_args, start_mode, working_mem, r_error, error_str);
  1161. if (r_error.error != Variant::CallError::CALL_OK) {
  1162. //use error from step
  1163. error = true;
  1164. break;
  1165. }
  1166. if (ret & VisualScriptNodeInstance::STEP_YIELD_BIT) {
  1167. //yielded!
  1168. if (node->get_working_memory_size() == 0) {
  1169. r_error.error = Variant::CallError::CALL_ERROR_INVALID_METHOD;
  1170. error_str = RTR("A node yielded without working memory, please read the docs on how to yield properly!");
  1171. error = true;
  1172. break;
  1173. } else {
  1174. Ref<VisualScriptFunctionState> state = *working_mem;
  1175. if (!state.is_valid()) {
  1176. r_error.error = Variant::CallError::CALL_ERROR_INVALID_METHOD;
  1177. error_str = RTR("Node yielded, but did not return a function state in the first working memory.");
  1178. error = true;
  1179. break;
  1180. }
  1181. //step 1, capture all state
  1182. state->instance_id = get_owner_ptr()->get_instance_id();
  1183. state->script_id = get_script()->get_instance_id();
  1184. state->instance = this;
  1185. state->function = p_method;
  1186. state->working_mem_index = node->working_mem_idx;
  1187. state->variant_stack_size = f->max_stack;
  1188. state->node = node;
  1189. state->flow_stack_pos = flow_stack_pos;
  1190. state->stack.resize(p_stack_size);
  1191. state->pass = p_pass;
  1192. copymem(state->stack.ptrw(), p_stack, p_stack_size);
  1193. //step 2, run away, return directly
  1194. r_error.error = Variant::CallError::CALL_OK;
  1195. #ifdef DEBUG_ENABLED
  1196. //will re-enter later, so exiting
  1197. if (ScriptDebugger::get_singleton()) {
  1198. VisualScriptLanguage::singleton->exit_function();
  1199. }
  1200. #endif
  1201. return state;
  1202. }
  1203. }
  1204. #ifdef DEBUG_ENABLED
  1205. if (ScriptDebugger::get_singleton()) {
  1206. // line
  1207. bool do_break = false;
  1208. if (ScriptDebugger::get_singleton()->get_lines_left() > 0) {
  1209. if (ScriptDebugger::get_singleton()->get_depth() <= 0)
  1210. ScriptDebugger::get_singleton()->set_lines_left(ScriptDebugger::get_singleton()->get_lines_left() - 1);
  1211. if (ScriptDebugger::get_singleton()->get_lines_left() <= 0)
  1212. do_break = true;
  1213. }
  1214. if (ScriptDebugger::get_singleton()->is_breakpoint(current_node_id, source))
  1215. do_break = true;
  1216. if (do_break) {
  1217. VisualScriptLanguage::singleton->debug_break("Breakpoint", true);
  1218. }
  1219. ScriptDebugger::get_singleton()->line_poll();
  1220. }
  1221. #endif
  1222. int output = ret & VisualScriptNodeInstance::STEP_MASK;
  1223. VSDEBUG("STEP RETURN: " + itos(ret));
  1224. if (ret & VisualScriptNodeInstance::STEP_EXIT_FUNCTION_BIT) {
  1225. if (node->get_working_memory_size() == 0) {
  1226. r_error.error = Variant::CallError::CALL_ERROR_INVALID_METHOD;
  1227. error_str = RTR("Return value must be assigned to first element of node working memory! Fix your node please.");
  1228. error = true;
  1229. } else {
  1230. //assign from working memory, first element
  1231. return_value = *working_mem;
  1232. }
  1233. VSDEBUG("EXITING FUNCTION - VALUE " + String(return_value));
  1234. break; //exit function requested, bye
  1235. }
  1236. VisualScriptNodeInstance *next = NULL; //next node
  1237. if ((ret == output || ret & VisualScriptNodeInstance::STEP_FLAG_PUSH_STACK_BIT) && node->sequence_output_count) {
  1238. //if no exit bit was set, and has sequence outputs, guess next node
  1239. if (output >= node->sequence_output_count) {
  1240. r_error.error = Variant::CallError::CALL_ERROR_INVALID_METHOD;
  1241. error_str = RTR("Node returned an invalid sequence output: ") + itos(output);
  1242. error = true;
  1243. break;
  1244. }
  1245. next = node->sequence_outputs[output];
  1246. if (next) {
  1247. VSDEBUG("GOT NEXT NODE - " + itos(next->get_id()));
  1248. } else {
  1249. VSDEBUG("GOT NEXT NODE - NULL");
  1250. }
  1251. }
  1252. if (flow_stack) {
  1253. //update flow stack pos (may have changed)
  1254. flow_stack[flow_stack_pos] = current_node_id;
  1255. //add stack push bit if requested
  1256. if (ret & VisualScriptNodeInstance::STEP_FLAG_PUSH_STACK_BIT) {
  1257. flow_stack[flow_stack_pos] |= VisualScriptNodeInstance::FLOW_STACK_PUSHED_BIT;
  1258. sequence_bits[node->sequence_index] = true; //remember sequence bit
  1259. VSDEBUG("NEXT SEQ - FLAG BIT");
  1260. } else {
  1261. sequence_bits[node->sequence_index] = false; //forget sequence bit
  1262. VSDEBUG("NEXT SEQ - NORMAL");
  1263. }
  1264. if (ret & VisualScriptNodeInstance::STEP_FLAG_GO_BACK_BIT) {
  1265. //go back request
  1266. if (flow_stack_pos > 0) {
  1267. flow_stack_pos--;
  1268. node = instances[flow_stack[flow_stack_pos] & VisualScriptNodeInstance::FLOW_STACK_MASK];
  1269. VSDEBUG("NEXT IS GO BACK");
  1270. } else {
  1271. VSDEBUG("NEXT IS GO BACK, BUT NO NEXT SO EXIT");
  1272. break; //simply exit without value or error
  1273. }
  1274. } else if (next) {
  1275. if (sequence_bits[next->sequence_index]) {
  1276. // what happened here is that we are entering a node that is in the middle of doing a sequence (pushed stack) from the front
  1277. // because each node has a working memory, we can't really do a sub-sequence
  1278. // as a result, the sequence will be restarted and the stack will roll back to find where this node
  1279. // started the sequence
  1280. bool found = false;
  1281. for (int i = flow_stack_pos; i >= 0; i--) {
  1282. if ((flow_stack[i] & VisualScriptNodeInstance::FLOW_STACK_MASK) == next->get_id()) {
  1283. flow_stack_pos = i; //roll back and remove bit
  1284. flow_stack[i] = next->get_id();
  1285. sequence_bits[next->sequence_index] = false;
  1286. found = true;
  1287. }
  1288. }
  1289. if (!found) {
  1290. r_error.error = Variant::CallError::CALL_ERROR_INVALID_METHOD;
  1291. error_str = RTR("Found sequence bit but not the node in the stack, report bug!");
  1292. error = true;
  1293. break;
  1294. }
  1295. node = next;
  1296. VSDEBUG("RE-ENTERED A LOOP, RETURNED STACK POS TO - " + itos(flow_stack_pos));
  1297. } else {
  1298. // check for stack overflow
  1299. if (flow_stack_pos + 1 >= flow_max) {
  1300. r_error.error = Variant::CallError::CALL_ERROR_INVALID_METHOD;
  1301. error_str = RTR("Stack overflow with stack depth: ") + itos(output);
  1302. error = true;
  1303. break;
  1304. }
  1305. node = next;
  1306. flow_stack_pos++;
  1307. flow_stack[flow_stack_pos] = node->get_id();
  1308. VSDEBUG("INCREASE FLOW STACK");
  1309. }
  1310. } else {
  1311. //no next node, try to go back in stack to pushed bit
  1312. bool found = false;
  1313. for (int i = flow_stack_pos; i >= 0; i--) {
  1314. VSDEBUG("FS " + itos(i) + " - " + itos(flow_stack[i]));
  1315. if (flow_stack[i] & VisualScriptNodeInstance::FLOW_STACK_PUSHED_BIT) {
  1316. node = instances[flow_stack[i] & VisualScriptNodeInstance::FLOW_STACK_MASK];
  1317. flow_stack_pos = i;
  1318. found = true;
  1319. break;
  1320. }
  1321. }
  1322. if (!found) {
  1323. VSDEBUG("NO NEXT NODE, NO GO BACK, EXITING");
  1324. break; //done, couldn't find a push stack bit
  1325. }
  1326. VSDEBUG("NO NEXT NODE, GO BACK TO: " + itos(flow_stack_pos));
  1327. }
  1328. } else {
  1329. node = next; //stackless mode, simply assign next node
  1330. }
  1331. }
  1332. if (error) {
  1333. //error
  1334. // function, file, line, error, explanation
  1335. String err_file = script->get_path();
  1336. String err_func = p_method;
  1337. int err_line = current_node_id; //not a line but it works as one
  1338. if (node && (r_error.error != Variant::CallError::CALL_ERROR_INVALID_METHOD || error_str == String())) {
  1339. if (error_str != String()) {
  1340. error_str += " ";
  1341. }
  1342. if (r_error.error == Variant::CallError::CALL_ERROR_INVALID_ARGUMENT) {
  1343. int errorarg = r_error.argument;
  1344. error_str += "Cannot convert argument " + itos(errorarg + 1) + " to " + Variant::get_type_name(r_error.expected) + ".";
  1345. } else if (r_error.error == Variant::CallError::CALL_ERROR_TOO_MANY_ARGUMENTS) {
  1346. error_str += "Expected " + itos(r_error.argument) + " arguments.";
  1347. } else if (r_error.error == Variant::CallError::CALL_ERROR_TOO_FEW_ARGUMENTS) {
  1348. error_str += "Expected " + itos(r_error.argument) + " arguments.";
  1349. } else if (r_error.error == Variant::CallError::CALL_ERROR_INVALID_METHOD) {
  1350. error_str += "Invalid Call.";
  1351. } else if (r_error.error == Variant::CallError::CALL_ERROR_INSTANCE_IS_NULL) {
  1352. error_str += "Base Instance is null";
  1353. }
  1354. }
  1355. //if (!GDScriptLanguage::get_singleton()->debug_break(err_text,false)) {
  1356. // debugger break did not happen
  1357. if (!VisualScriptLanguage::singleton->debug_break(error_str, false)) {
  1358. _err_print_error(err_func.utf8().get_data(), err_file.utf8().get_data(), err_line, error_str.utf8().get_data(), ERR_HANDLER_SCRIPT);
  1359. }
  1360. //}
  1361. } else {
  1362. //return_value=
  1363. }
  1364. #ifdef DEBUG_ENABLED
  1365. if (ScriptDebugger::get_singleton()) {
  1366. VisualScriptLanguage::singleton->exit_function();
  1367. }
  1368. #endif
  1369. //clean up variant stack
  1370. for (int i = 0; i < f->max_stack; i++) {
  1371. variant_stack[i].~Variant();
  1372. }
  1373. return return_value;
  1374. }
  1375. Variant VisualScriptInstance::call(const StringName &p_method, const Variant **p_args, int p_argcount, Variant::CallError &r_error) {
  1376. r_error.error = Variant::CallError::CALL_OK; //ok by default
  1377. Map<StringName, Function>::Element *F = functions.find(p_method);
  1378. if (!F) {
  1379. r_error.error = Variant::CallError::CALL_ERROR_INVALID_METHOD;
  1380. return Variant();
  1381. }
  1382. VSDEBUG("CALLING: " + String(p_method));
  1383. Function *f = &F->get();
  1384. int total_stack_size = 0;
  1385. total_stack_size += f->max_stack * sizeof(Variant); //variants
  1386. total_stack_size += f->node_count * sizeof(bool);
  1387. total_stack_size += (max_input_args + max_output_args) * sizeof(Variant *); //arguments
  1388. total_stack_size += f->flow_stack_size * sizeof(int); //flow
  1389. total_stack_size += f->pass_stack_size * sizeof(int);
  1390. VSDEBUG("STACK SIZE: " + itos(total_stack_size));
  1391. VSDEBUG("STACK VARIANTS: : " + itos(f->max_stack));
  1392. VSDEBUG("SEQBITS: : " + itos(f->node_count));
  1393. VSDEBUG("MAX INPUT: " + itos(max_input_args));
  1394. VSDEBUG("MAX OUTPUT: " + itos(max_output_args));
  1395. VSDEBUG("FLOW STACK SIZE: " + itos(f->flow_stack_size));
  1396. VSDEBUG("PASS STACK SIZE: " + itos(f->pass_stack_size));
  1397. void *stack = alloca(total_stack_size);
  1398. Variant *variant_stack = (Variant *)stack;
  1399. bool *sequence_bits = (bool *)(variant_stack + f->max_stack);
  1400. const Variant **input_args = (const Variant **)(sequence_bits + f->node_count);
  1401. Variant **output_args = (Variant **)(input_args + max_input_args);
  1402. int flow_max = f->flow_stack_size;
  1403. int *flow_stack = flow_max ? (int *)(output_args + max_output_args) : (int *)NULL;
  1404. int *pass_stack = flow_stack ? (int *)(flow_stack + flow_max) : (int *)NULL;
  1405. for (int i = 0; i < f->node_count; i++) {
  1406. sequence_bits[i] = false; //all starts as false
  1407. }
  1408. zeromem(pass_stack, f->pass_stack_size * sizeof(int));
  1409. Map<int, VisualScriptNodeInstance *>::Element *E = instances.find(f->node);
  1410. if (!E) {
  1411. r_error.error = Variant::CallError::CALL_ERROR_INVALID_METHOD;
  1412. ERR_FAIL_V_MSG(Variant(), "No VisualScriptFunction node in function.");
  1413. }
  1414. VisualScriptNodeInstance *node = E->get();
  1415. if (flow_stack) {
  1416. flow_stack[0] = node->get_id();
  1417. }
  1418. VSDEBUG("ARGUMENTS: " + itos(f->argument_count) = " RECEIVED: " + itos(p_argcount));
  1419. if (p_argcount < f->argument_count) {
  1420. r_error.error = Variant::CallError::CALL_ERROR_TOO_FEW_ARGUMENTS;
  1421. r_error.argument = node->get_input_port_count();
  1422. return Variant();
  1423. }
  1424. if (p_argcount > f->argument_count) {
  1425. r_error.error = Variant::CallError::CALL_ERROR_TOO_MANY_ARGUMENTS;
  1426. r_error.argument = node->get_input_port_count();
  1427. return Variant();
  1428. }
  1429. //allocate variant stack
  1430. for (int i = 0; i < f->max_stack; i++) {
  1431. memnew_placement(&variant_stack[i], Variant);
  1432. }
  1433. //allocate function arguments (must be copied for yield to work properly)
  1434. for (int i = 0; i < p_argcount; i++) {
  1435. variant_stack[i] = *p_args[i];
  1436. }
  1437. return _call_internal(p_method, stack, total_stack_size, node, 0, 0, false, r_error);
  1438. }
  1439. void VisualScriptInstance::notification(int p_notification) {
  1440. //do nothing as this is called using virtual
  1441. Variant what = p_notification;
  1442. const Variant *whatp = &what;
  1443. Variant::CallError ce;
  1444. call(VisualScriptLanguage::singleton->notification, &whatp, 1, ce); //do as call
  1445. }
  1446. String VisualScriptInstance::to_string(bool *r_valid) {
  1447. if (has_method(CoreStringNames::get_singleton()->_to_string)) {
  1448. Variant::CallError ce;
  1449. Variant ret = call(CoreStringNames::get_singleton()->_to_string, NULL, 0, ce);
  1450. if (ce.error == Variant::CallError::CALL_OK) {
  1451. if (ret.get_type() != Variant::STRING) {
  1452. if (r_valid)
  1453. *r_valid = false;
  1454. ERR_FAIL_V_MSG(String(), "Wrong type for " + CoreStringNames::get_singleton()->_to_string + ", must be a String.");
  1455. }
  1456. if (r_valid)
  1457. *r_valid = true;
  1458. return ret.operator String();
  1459. }
  1460. }
  1461. if (r_valid)
  1462. *r_valid = false;
  1463. return String();
  1464. }
  1465. Ref<Script> VisualScriptInstance::get_script() const {
  1466. return script;
  1467. }
  1468. MultiplayerAPI::RPCMode VisualScriptInstance::get_rpc_mode(const StringName &p_method) const {
  1469. const Map<StringName, VisualScript::Function>::Element *E = script->functions.find(p_method);
  1470. if (!E) {
  1471. return MultiplayerAPI::RPC_MODE_DISABLED;
  1472. }
  1473. if (E->get().function_id >= 0 && E->get().nodes.has(E->get().function_id)) {
  1474. Ref<VisualScriptFunction> vsf = E->get().nodes[E->get().function_id].node;
  1475. if (vsf.is_valid()) {
  1476. return vsf->get_rpc_mode();
  1477. }
  1478. }
  1479. return MultiplayerAPI::RPC_MODE_DISABLED;
  1480. }
  1481. MultiplayerAPI::RPCMode VisualScriptInstance::get_rset_mode(const StringName &p_variable) const {
  1482. return MultiplayerAPI::RPC_MODE_DISABLED;
  1483. }
  1484. void VisualScriptInstance::create(const Ref<VisualScript> &p_script, Object *p_owner) {
  1485. script = p_script;
  1486. owner = p_owner;
  1487. source = p_script->get_path();
  1488. max_input_args = 0;
  1489. max_output_args = 0;
  1490. if (Object::cast_to<Node>(p_owner)) {
  1491. //turn on these if they exist and base is a node
  1492. Node *node = Object::cast_to<Node>(p_owner);
  1493. if (p_script->functions.has("_process"))
  1494. node->set_process(true);
  1495. if (p_script->functions.has("_physics_process"))
  1496. node->set_physics_process(true);
  1497. if (p_script->functions.has("_input"))
  1498. node->set_process_input(true);
  1499. if (p_script->functions.has("_unhandled_input"))
  1500. node->set_process_unhandled_input(true);
  1501. if (p_script->functions.has("_unhandled_key_input"))
  1502. node->set_process_unhandled_key_input(true);
  1503. }
  1504. for (const Map<StringName, VisualScript::Variable>::Element *E = script->variables.front(); E; E = E->next()) {
  1505. variables[E->key()] = E->get().default_value;
  1506. //no hacer que todo exporte, solo las que queres!
  1507. }
  1508. for (const Map<StringName, VisualScript::Function>::Element *E = script->functions.front(); E; E = E->next()) {
  1509. Function function;
  1510. function.node = E->get().function_id;
  1511. function.max_stack = 0;
  1512. function.flow_stack_size = 0;
  1513. function.pass_stack_size = 0;
  1514. function.node_count = 0;
  1515. Map<StringName, int> local_var_indices;
  1516. if (function.node < 0) {
  1517. VisualScriptLanguage::singleton->debug_break_parse(get_script()->get_path(), 0, "No start node in function: " + String(E->key()));
  1518. ERR_CONTINUE(function.node < 0);
  1519. }
  1520. {
  1521. Ref<VisualScriptFunction> func_node = script->get_node(E->key(), E->get().function_id);
  1522. if (func_node.is_null()) {
  1523. VisualScriptLanguage::singleton->debug_break_parse(get_script()->get_path(), 0, "No VisualScriptFunction typed start node in function: " + String(E->key()));
  1524. }
  1525. ERR_CONTINUE(!func_node.is_valid());
  1526. function.argument_count = func_node->get_argument_count();
  1527. function.max_stack += function.argument_count;
  1528. function.flow_stack_size = func_node->is_stack_less() ? 0 : func_node->get_stack_size();
  1529. max_input_args = MAX(max_input_args, function.argument_count);
  1530. }
  1531. //multiple passes are required to set up this complex thing..
  1532. //first create the nodes
  1533. for (const Map<int, VisualScript::Function::NodeData>::Element *F = E->get().nodes.front(); F; F = F->next()) {
  1534. Ref<VisualScriptNode> node = F->get().node;
  1535. VisualScriptNodeInstance *instance = node->instance(this); //create instance
  1536. ERR_FAIL_COND(!instance);
  1537. instance->base = node.ptr();
  1538. instance->id = F->key();
  1539. instance->input_port_count = node->get_input_value_port_count();
  1540. instance->input_ports = NULL;
  1541. instance->output_port_count = node->get_output_value_port_count();
  1542. instance->output_ports = NULL;
  1543. instance->sequence_output_count = node->get_output_sequence_port_count();
  1544. instance->sequence_index = function.node_count++;
  1545. instance->sequence_outputs = NULL;
  1546. instance->pass_idx = -1;
  1547. if (instance->input_port_count) {
  1548. instance->input_ports = memnew_arr(int, instance->input_port_count);
  1549. for (int i = 0; i < instance->input_port_count; i++) {
  1550. instance->input_ports[i] = -1; //if not assigned, will become default value
  1551. }
  1552. }
  1553. if (instance->output_port_count) {
  1554. instance->output_ports = memnew_arr(int, instance->output_port_count);
  1555. for (int i = 0; i < instance->output_port_count; i++) {
  1556. instance->output_ports[i] = -1; //if not assigned, will output to trash
  1557. }
  1558. }
  1559. if (instance->sequence_output_count) {
  1560. instance->sequence_outputs = memnew_arr(VisualScriptNodeInstance *, instance->sequence_output_count);
  1561. for (int i = 0; i < instance->sequence_output_count; i++) {
  1562. instance->sequence_outputs[i] = NULL; //if it remains null, flow ends here
  1563. }
  1564. }
  1565. if (Object::cast_to<VisualScriptLocalVar>(node.ptr()) || Object::cast_to<VisualScriptLocalVarSet>(*node)) {
  1566. //working memory is shared only for this node, for the same variables
  1567. Ref<VisualScriptLocalVar> vslv = node;
  1568. StringName var_name;
  1569. if (Object::cast_to<VisualScriptLocalVar>(*node))
  1570. var_name = String(Object::cast_to<VisualScriptLocalVar>(*node)->get_var_name()).strip_edges();
  1571. else
  1572. var_name = String(Object::cast_to<VisualScriptLocalVarSet>(*node)->get_var_name()).strip_edges();
  1573. if (!local_var_indices.has(var_name)) {
  1574. local_var_indices[var_name] = function.max_stack;
  1575. function.max_stack++;
  1576. }
  1577. instance->working_mem_idx = local_var_indices[var_name];
  1578. } else if (instance->get_working_memory_size()) {
  1579. instance->working_mem_idx = function.max_stack;
  1580. function.max_stack += instance->get_working_memory_size();
  1581. } else {
  1582. instance->working_mem_idx = -1; //no working mem
  1583. }
  1584. max_input_args = MAX(max_input_args, instance->input_port_count);
  1585. max_output_args = MAX(max_output_args, instance->output_port_count);
  1586. instances[F->key()] = instance;
  1587. }
  1588. function.trash_pos = function.max_stack++; //create pos for trash
  1589. //second pass, do data connections
  1590. for (const Set<VisualScript::DataConnection>::Element *F = E->get().data_connections.front(); F; F = F->next()) {
  1591. VisualScript::DataConnection dc = F->get();
  1592. ERR_CONTINUE(!instances.has(dc.from_node));
  1593. VisualScriptNodeInstance *from = instances[dc.from_node];
  1594. ERR_CONTINUE(!instances.has(dc.to_node));
  1595. VisualScriptNodeInstance *to = instances[dc.to_node];
  1596. ERR_CONTINUE(dc.from_port >= from->output_port_count);
  1597. ERR_CONTINUE(dc.to_port >= to->input_port_count);
  1598. if (from->output_ports[dc.from_port] == -1) {
  1599. int stack_pos = function.max_stack++;
  1600. from->output_ports[dc.from_port] = stack_pos;
  1601. }
  1602. if (from->get_sequence_output_count() == 0 && to->dependencies.find(from) == -1) {
  1603. //if the node we are reading from has no output sequence, we must call step() before reading from it.
  1604. if (from->pass_idx == -1) {
  1605. from->pass_idx = function.pass_stack_size;
  1606. function.pass_stack_size++;
  1607. }
  1608. to->dependencies.push_back(from);
  1609. }
  1610. to->input_ports[dc.to_port] = from->output_ports[dc.from_port]; //read from wherever the stack is
  1611. }
  1612. //third pass, do sequence connections
  1613. for (const Set<VisualScript::SequenceConnection>::Element *F = E->get().sequence_connections.front(); F; F = F->next()) {
  1614. VisualScript::SequenceConnection sc = F->get();
  1615. ERR_CONTINUE(!instances.has(sc.from_node));
  1616. VisualScriptNodeInstance *from = instances[sc.from_node];
  1617. ERR_CONTINUE(!instances.has(sc.to_node));
  1618. VisualScriptNodeInstance *to = instances[sc.to_node];
  1619. ERR_CONTINUE(sc.from_output >= from->sequence_output_count);
  1620. from->sequence_outputs[sc.from_output] = to;
  1621. }
  1622. //fourth pass:
  1623. // 1) unassigned input ports to default values
  1624. // 2) connect unassigned output ports to trash
  1625. for (const Map<int, VisualScript::Function::NodeData>::Element *F = E->get().nodes.front(); F; F = F->next()) {
  1626. ERR_CONTINUE(!instances.has(F->key()));
  1627. Ref<VisualScriptNode> node = F->get().node;
  1628. VisualScriptNodeInstance *instance = instances[F->key()];
  1629. // connect to default values
  1630. for (int i = 0; i < instance->input_port_count; i++) {
  1631. if (instance->input_ports[i] == -1) {
  1632. //unassigned, connect to default val
  1633. instance->input_ports[i] = default_values.size() | VisualScriptNodeInstance::INPUT_DEFAULT_VALUE_BIT;
  1634. default_values.push_back(node->get_default_input_value(i));
  1635. }
  1636. }
  1637. // connect to trash
  1638. for (int i = 0; i < instance->output_port_count; i++) {
  1639. if (instance->output_ports[i] == -1) {
  1640. instance->output_ports[i] = function.trash_pos; //trash is same for all
  1641. }
  1642. }
  1643. }
  1644. functions[E->key()] = function;
  1645. }
  1646. }
  1647. ScriptLanguage *VisualScriptInstance::get_language() {
  1648. return VisualScriptLanguage::singleton;
  1649. }
  1650. VisualScriptInstance::VisualScriptInstance() {
  1651. }
  1652. VisualScriptInstance::~VisualScriptInstance() {
  1653. if (VisualScriptLanguage::singleton->lock)
  1654. VisualScriptLanguage::singleton->lock->lock();
  1655. script->instances.erase(owner);
  1656. if (VisualScriptLanguage::singleton->lock)
  1657. VisualScriptLanguage::singleton->lock->unlock();
  1658. for (Map<int, VisualScriptNodeInstance *>::Element *E = instances.front(); E; E = E->next()) {
  1659. memdelete(E->get());
  1660. }
  1661. }
  1662. /////////////////////////////////////////////
  1663. /////////////////////
  1664. Variant VisualScriptFunctionState::_signal_callback(const Variant **p_args, int p_argcount, Variant::CallError &r_error) {
  1665. ERR_FAIL_COND_V(function == StringName(), Variant());
  1666. #ifdef DEBUG_ENABLED
  1667. ERR_FAIL_COND_V_MSG(instance_id && !ObjectDB::get_instance(instance_id), Variant(), "Resumed after yield, but class instance is gone.");
  1668. ERR_FAIL_COND_V_MSG(script_id && !ObjectDB::get_instance(script_id), Variant(), "Resumed after yield, but script is gone.");
  1669. #endif
  1670. r_error.error = Variant::CallError::CALL_OK;
  1671. Array args;
  1672. if (p_argcount == 0) {
  1673. r_error.error = Variant::CallError::CALL_ERROR_TOO_FEW_ARGUMENTS;
  1674. r_error.argument = 1;
  1675. return Variant();
  1676. } else if (p_argcount == 1) {
  1677. //noooneee, reserved for me, me and only me.
  1678. } else {
  1679. for (int i = 0; i < p_argcount - 1; i++) {
  1680. args.push_back(*p_args[i]);
  1681. }
  1682. }
  1683. Ref<VisualScriptFunctionState> self = *p_args[p_argcount - 1]; //hi, I'm myself, needed this to remain alive.
  1684. if (self.is_null()) {
  1685. r_error.error = Variant::CallError::CALL_ERROR_INVALID_ARGUMENT;
  1686. r_error.argument = p_argcount - 1;
  1687. r_error.expected = Variant::OBJECT;
  1688. return Variant();
  1689. }
  1690. r_error.error = Variant::CallError::CALL_OK;
  1691. Variant *working_mem = ((Variant *)stack.ptr()) + working_mem_index;
  1692. *working_mem = args; //arguments go to working mem.
  1693. Variant ret = instance->_call_internal(function, stack.ptrw(), stack.size(), node, flow_stack_pos, pass, true, r_error);
  1694. function = StringName(); //invalidate
  1695. return ret;
  1696. }
  1697. void VisualScriptFunctionState::connect_to_signal(Object *p_obj, const String &p_signal, Array p_binds) {
  1698. Vector<Variant> binds;
  1699. for (int i = 0; i < p_binds.size(); i++) {
  1700. binds.push_back(p_binds[i]);
  1701. }
  1702. binds.push_back(Ref<VisualScriptFunctionState>(this)); //add myself on the back to avoid dying from unreferencing
  1703. p_obj->connect(p_signal, this, "_signal_callback", binds, CONNECT_ONESHOT);
  1704. }
  1705. bool VisualScriptFunctionState::is_valid() const {
  1706. return function != StringName();
  1707. }
  1708. Variant VisualScriptFunctionState::resume(Array p_args) {
  1709. ERR_FAIL_COND_V(function == StringName(), Variant());
  1710. #ifdef DEBUG_ENABLED
  1711. ERR_FAIL_COND_V_MSG(instance_id && !ObjectDB::get_instance(instance_id), Variant(), "Resumed after yield, but class instance is gone.");
  1712. ERR_FAIL_COND_V_MSG(script_id && !ObjectDB::get_instance(script_id), Variant(), "Resumed after yield, but script is gone.");
  1713. #endif
  1714. Variant::CallError r_error;
  1715. r_error.error = Variant::CallError::CALL_OK;
  1716. Variant *working_mem = ((Variant *)stack.ptr()) + working_mem_index;
  1717. *working_mem = p_args; //arguments go to working mem.
  1718. Variant ret = instance->_call_internal(function, stack.ptrw(), stack.size(), node, flow_stack_pos, pass, true, r_error);
  1719. function = StringName(); //invalidate
  1720. return ret;
  1721. }
  1722. void VisualScriptFunctionState::_bind_methods() {
  1723. ClassDB::bind_method(D_METHOD("connect_to_signal", "obj", "signals", "args"), &VisualScriptFunctionState::connect_to_signal);
  1724. ClassDB::bind_method(D_METHOD("resume", "args"), &VisualScriptFunctionState::resume, DEFVAL(Variant()));
  1725. ClassDB::bind_method(D_METHOD("is_valid"), &VisualScriptFunctionState::is_valid);
  1726. ClassDB::bind_vararg_method(METHOD_FLAGS_DEFAULT, "_signal_callback", &VisualScriptFunctionState::_signal_callback, MethodInfo("_signal_callback"));
  1727. }
  1728. VisualScriptFunctionState::VisualScriptFunctionState() {
  1729. }
  1730. VisualScriptFunctionState::~VisualScriptFunctionState() {
  1731. if (function != StringName()) {
  1732. Variant *s = ((Variant *)stack.ptr());
  1733. for (int i = 0; i < variant_stack_size; i++) {
  1734. s[i].~Variant();
  1735. }
  1736. }
  1737. }
  1738. ///////////////////////////////////////////////
  1739. String VisualScriptLanguage::get_name() const {
  1740. return "VisualScript";
  1741. }
  1742. /* LANGUAGE FUNCTIONS */
  1743. void VisualScriptLanguage::init() {
  1744. }
  1745. String VisualScriptLanguage::get_type() const {
  1746. return "VisualScript";
  1747. }
  1748. String VisualScriptLanguage::get_extension() const {
  1749. return "vs";
  1750. }
  1751. Error VisualScriptLanguage::execute_file(const String &p_path) {
  1752. return OK;
  1753. }
  1754. void VisualScriptLanguage::finish() {
  1755. }
  1756. /* EDITOR FUNCTIONS */
  1757. void VisualScriptLanguage::get_reserved_words(List<String> *p_words) const {
  1758. }
  1759. void VisualScriptLanguage::get_comment_delimiters(List<String> *p_delimiters) const {
  1760. }
  1761. void VisualScriptLanguage::get_string_delimiters(List<String> *p_delimiters) const {
  1762. }
  1763. Ref<Script> VisualScriptLanguage::get_template(const String &p_class_name, const String &p_base_class_name) const {
  1764. Ref<VisualScript> script;
  1765. script.instance();
  1766. script->set_instance_base_type(p_base_class_name);
  1767. return script;
  1768. }
  1769. bool VisualScriptLanguage::is_using_templates() {
  1770. return true;
  1771. }
  1772. void VisualScriptLanguage::make_template(const String &p_class_name, const String &p_base_class_name, Ref<Script> &p_script) {
  1773. Ref<VisualScript> script = p_script;
  1774. script->set_instance_base_type(p_base_class_name);
  1775. }
  1776. bool VisualScriptLanguage::validate(const String &p_script, int &r_line_error, int &r_col_error, String &r_test_error, const String &p_path, List<String> *r_functions, List<ScriptLanguage::Warning> *r_warnings, Set<int> *r_safe_lines) const {
  1777. return false;
  1778. }
  1779. Script *VisualScriptLanguage::create_script() const {
  1780. return memnew(VisualScript);
  1781. }
  1782. bool VisualScriptLanguage::has_named_classes() const {
  1783. return false;
  1784. }
  1785. bool VisualScriptLanguage::supports_builtin_mode() const {
  1786. return true;
  1787. }
  1788. int VisualScriptLanguage::find_function(const String &p_function, const String &p_code) const {
  1789. return -1;
  1790. }
  1791. String VisualScriptLanguage::make_function(const String &p_class, const String &p_name, const PoolStringArray &p_args) const {
  1792. return String();
  1793. }
  1794. void VisualScriptLanguage::auto_indent_code(String &p_code, int p_from_line, int p_to_line) const {
  1795. }
  1796. void VisualScriptLanguage::add_global_constant(const StringName &p_variable, const Variant &p_value) {
  1797. }
  1798. /* DEBUGGER FUNCTIONS */
  1799. bool VisualScriptLanguage::debug_break_parse(const String &p_file, int p_node, const String &p_error) {
  1800. //break because of parse error
  1801. if (ScriptDebugger::get_singleton() && Thread::get_caller_id() == Thread::get_main_id()) {
  1802. _debug_parse_err_node = p_node;
  1803. _debug_parse_err_file = p_file;
  1804. _debug_error = p_error;
  1805. ScriptDebugger::get_singleton()->debug(this, false);
  1806. return true;
  1807. } else {
  1808. return false;
  1809. }
  1810. }
  1811. bool VisualScriptLanguage::debug_break(const String &p_error, bool p_allow_continue) {
  1812. if (ScriptDebugger::get_singleton() && Thread::get_caller_id() == Thread::get_main_id()) {
  1813. _debug_parse_err_node = -1;
  1814. _debug_parse_err_file = "";
  1815. _debug_error = p_error;
  1816. ScriptDebugger::get_singleton()->debug(this, p_allow_continue);
  1817. return true;
  1818. } else {
  1819. return false;
  1820. }
  1821. }
  1822. String VisualScriptLanguage::debug_get_error() const {
  1823. return _debug_error;
  1824. }
  1825. int VisualScriptLanguage::debug_get_stack_level_count() const {
  1826. if (_debug_parse_err_node >= 0)
  1827. return 1;
  1828. return _debug_call_stack_pos;
  1829. }
  1830. int VisualScriptLanguage::debug_get_stack_level_line(int p_level) const {
  1831. if (_debug_parse_err_node >= 0)
  1832. return _debug_parse_err_node;
  1833. ERR_FAIL_INDEX_V(p_level, _debug_call_stack_pos, -1);
  1834. int l = _debug_call_stack_pos - p_level - 1;
  1835. return *(_call_stack[l].current_id);
  1836. }
  1837. String VisualScriptLanguage::debug_get_stack_level_function(int p_level) const {
  1838. if (_debug_parse_err_node >= 0)
  1839. return "";
  1840. ERR_FAIL_INDEX_V(p_level, _debug_call_stack_pos, "");
  1841. int l = _debug_call_stack_pos - p_level - 1;
  1842. return *_call_stack[l].function;
  1843. }
  1844. String VisualScriptLanguage::debug_get_stack_level_source(int p_level) const {
  1845. if (_debug_parse_err_node >= 0)
  1846. return _debug_parse_err_file;
  1847. ERR_FAIL_INDEX_V(p_level, _debug_call_stack_pos, "");
  1848. int l = _debug_call_stack_pos - p_level - 1;
  1849. return _call_stack[l].instance->get_script_ptr()->get_path();
  1850. }
  1851. void VisualScriptLanguage::debug_get_stack_level_locals(int p_level, List<String> *p_locals, List<Variant> *p_values, int p_max_subitems, int p_max_depth) {
  1852. if (_debug_parse_err_node >= 0)
  1853. return;
  1854. ERR_FAIL_INDEX(p_level, _debug_call_stack_pos);
  1855. int l = _debug_call_stack_pos - p_level - 1;
  1856. const StringName *f = _call_stack[l].function;
  1857. ERR_FAIL_COND(!_call_stack[l].instance->functions.has(*f));
  1858. //VisualScriptInstance::Function *func = &_call_stack[l].instance->functions[*f];
  1859. VisualScriptNodeInstance *node = _call_stack[l].instance->instances[*_call_stack[l].current_id];
  1860. ERR_FAIL_COND(!node);
  1861. p_locals->push_back("node_name");
  1862. p_values->push_back(node->get_base_node()->get_text());
  1863. for (int i = 0; i < node->input_port_count; i++) {
  1864. String name = node->get_base_node()->get_input_value_port_info(i).name;
  1865. if (name == String()) {
  1866. name = "in_" + itos(i);
  1867. }
  1868. p_locals->push_back("input/" + name);
  1869. //value is trickier
  1870. int in_from = node->input_ports[i];
  1871. int in_value = in_from & VisualScriptNodeInstance::INPUT_MASK;
  1872. if (in_from & VisualScriptNodeInstance::INPUT_DEFAULT_VALUE_BIT) {
  1873. p_values->push_back(_call_stack[l].instance->default_values[in_value]);
  1874. } else {
  1875. p_values->push_back(_call_stack[l].stack[in_value]);
  1876. }
  1877. }
  1878. for (int i = 0; i < node->output_port_count; i++) {
  1879. String name = node->get_base_node()->get_output_value_port_info(i).name;
  1880. if (name == String()) {
  1881. name = "out_" + itos(i);
  1882. }
  1883. p_locals->push_back("output/" + name);
  1884. //value is trickier
  1885. int in_from = node->output_ports[i];
  1886. p_values->push_back(_call_stack[l].stack[in_from]);
  1887. }
  1888. for (int i = 0; i < node->get_working_memory_size(); i++) {
  1889. p_locals->push_back("working_mem/mem_" + itos(i));
  1890. p_values->push_back((*_call_stack[l].work_mem)[i]);
  1891. }
  1892. /*
  1893. ERR_FAIL_INDEX(p_level,_debug_call_stack_pos);
  1894. VisualFunction *f = _call_stack[l].function;
  1895. List<Pair<StringName,int> > locals;
  1896. f->debug_get_stack_member_state(*_call_stack[l].line,&locals);
  1897. for( List<Pair<StringName,int> >::Element *E = locals.front();E;E=E->next() ) {
  1898. p_locals->push_back(E->get().first);
  1899. p_values->push_back(_call_stack[l].stack[E->get().second]);
  1900. }
  1901. */
  1902. }
  1903. void VisualScriptLanguage::debug_get_stack_level_members(int p_level, List<String> *p_members, List<Variant> *p_values, int p_max_subitems, int p_max_depth) {
  1904. if (_debug_parse_err_node >= 0)
  1905. return;
  1906. ERR_FAIL_INDEX(p_level, _debug_call_stack_pos);
  1907. int l = _debug_call_stack_pos - p_level - 1;
  1908. Ref<VisualScript> vs = _call_stack[l].instance->get_script();
  1909. if (vs.is_null())
  1910. return;
  1911. List<StringName> vars;
  1912. vs->get_variable_list(&vars);
  1913. for (List<StringName>::Element *E = vars.front(); E; E = E->next()) {
  1914. Variant v;
  1915. if (_call_stack[l].instance->get_variable(E->get(), &v)) {
  1916. p_members->push_back("variables/" + E->get());
  1917. p_values->push_back(v);
  1918. }
  1919. }
  1920. }
  1921. void VisualScriptLanguage::debug_get_globals(List<String> *p_locals, List<Variant> *p_values, int p_max_subitems, int p_max_depth) {
  1922. //no globals are really reachable in gdscript
  1923. }
  1924. String VisualScriptLanguage::debug_parse_stack_level_expression(int p_level, const String &p_expression, int p_max_subitems, int p_max_depth) {
  1925. return "";
  1926. }
  1927. void VisualScriptLanguage::reload_all_scripts() {
  1928. }
  1929. void VisualScriptLanguage::reload_tool_script(const Ref<Script> &p_script, bool p_soft_reload) {
  1930. }
  1931. /* LOADER FUNCTIONS */
  1932. void VisualScriptLanguage::get_recognized_extensions(List<String> *p_extensions) const {
  1933. p_extensions->push_back("vs");
  1934. }
  1935. void VisualScriptLanguage::get_public_functions(List<MethodInfo> *p_functions) const {
  1936. }
  1937. void VisualScriptLanguage::get_public_constants(List<Pair<String, Variant> > *p_constants) const {
  1938. }
  1939. void VisualScriptLanguage::profiling_start() {
  1940. }
  1941. void VisualScriptLanguage::profiling_stop() {
  1942. }
  1943. int VisualScriptLanguage::profiling_get_accumulated_data(ProfilingInfo *p_info_arr, int p_info_max) {
  1944. return 0;
  1945. }
  1946. int VisualScriptLanguage::profiling_get_frame_data(ProfilingInfo *p_info_arr, int p_info_max) {
  1947. return 0;
  1948. }
  1949. VisualScriptLanguage *VisualScriptLanguage::singleton = NULL;
  1950. void VisualScriptLanguage::add_register_func(const String &p_name, VisualScriptNodeRegisterFunc p_func) {
  1951. ERR_FAIL_COND(register_funcs.has(p_name));
  1952. register_funcs[p_name] = p_func;
  1953. }
  1954. void VisualScriptLanguage::remove_register_func(const String &p_name) {
  1955. ERR_FAIL_COND(!register_funcs.has(p_name));
  1956. register_funcs.erase(p_name);
  1957. }
  1958. Ref<VisualScriptNode> VisualScriptLanguage::create_node_from_name(const String &p_name) {
  1959. ERR_FAIL_COND_V(!register_funcs.has(p_name), Ref<VisualScriptNode>());
  1960. return register_funcs[p_name](p_name);
  1961. }
  1962. void VisualScriptLanguage::get_registered_node_names(List<String> *r_names) {
  1963. for (Map<String, VisualScriptNodeRegisterFunc>::Element *E = register_funcs.front(); E; E = E->next()) {
  1964. r_names->push_back(E->key());
  1965. }
  1966. }
  1967. VisualScriptLanguage::VisualScriptLanguage() {
  1968. notification = "_notification";
  1969. _step = "_step";
  1970. _subcall = "_subcall";
  1971. singleton = this;
  1972. #ifndef NO_THREADS
  1973. lock = Mutex::create();
  1974. #endif
  1975. _debug_parse_err_node = -1;
  1976. _debug_parse_err_file = "";
  1977. _debug_call_stack_pos = 0;
  1978. int dmcs = GLOBAL_DEF("debug/settings/visual_script/max_call_stack", 1024);
  1979. ProjectSettings::get_singleton()->set_custom_property_info("debug/settings/visual_script/max_call_stack", PropertyInfo(Variant::INT, "debug/settings/visual_script/max_call_stack", PROPERTY_HINT_RANGE, "1024,4096,1,or_greater")); //minimum is 1024
  1980. if (ScriptDebugger::get_singleton()) {
  1981. //debugging enabled!
  1982. _debug_max_call_stack = dmcs;
  1983. _call_stack = memnew_arr(CallLevel, _debug_max_call_stack + 1);
  1984. } else {
  1985. _debug_max_call_stack = 0;
  1986. _call_stack = NULL;
  1987. }
  1988. }
  1989. VisualScriptLanguage::~VisualScriptLanguage() {
  1990. if (lock)
  1991. memdelete(lock);
  1992. if (_call_stack) {
  1993. memdelete_arr(_call_stack);
  1994. }
  1995. singleton = NULL;
  1996. }