script_editor_plugin.cpp 78 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604
  1. /*************************************************************************/
  2. /* script_editor_plugin.cpp */
  3. /*************************************************************************/
  4. /* This file is part of: */
  5. /* GODOT ENGINE */
  6. /* https://godotengine.org */
  7. /*************************************************************************/
  8. /* Copyright (c) 2007-2017 Juan Linietsky, Ariel Manzur. */
  9. /* Copyright (c) 2014-2017 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 "script_editor_plugin.h"
  31. #include "core/io/resource_loader.h"
  32. #include "core/io/resource_saver.h"
  33. #include "core/os/file_access.h"
  34. #include "core/os/input.h"
  35. #include "core/os/keyboard.h"
  36. #include "core/os/os.h"
  37. #include "core/project_settings.h"
  38. #include "editor/editor_node.h"
  39. #include "editor/editor_settings.h"
  40. #include "editor/node_dock.h"
  41. #include "editor/script_editor_debugger.h"
  42. #include "scene/main/viewport.h"
  43. /*** SCRIPT EDITOR ****/
  44. void ScriptEditorBase::_bind_methods() {
  45. ADD_SIGNAL(MethodInfo("name_changed"));
  46. ADD_SIGNAL(MethodInfo("edited_script_changed"));
  47. ADD_SIGNAL(MethodInfo("request_help_search", PropertyInfo(Variant::STRING, "topic")));
  48. ADD_SIGNAL(MethodInfo("request_help_index"));
  49. ADD_SIGNAL(MethodInfo("request_open_script_at_line", PropertyInfo(Variant::OBJECT, "script"), PropertyInfo(Variant::INT, "line")));
  50. ADD_SIGNAL(MethodInfo("request_save_history"));
  51. ADD_SIGNAL(MethodInfo("go_to_help", PropertyInfo(Variant::STRING, "what")));
  52. }
  53. static bool _can_open_in_editor(Script *p_script) {
  54. String path = p_script->get_path();
  55. if (path.find("::") != -1) {
  56. //refuse handling this if it can't be edited
  57. bool valid = false;
  58. for (int i = 0; i < EditorNode::get_singleton()->get_editor_data().get_edited_scene_count(); i++) {
  59. if (path.begins_with(EditorNode::get_singleton()->get_editor_data().get_scene_path(i))) {
  60. valid = true;
  61. break;
  62. }
  63. }
  64. return valid;
  65. }
  66. return true;
  67. }
  68. class EditorScriptCodeCompletionCache : public ScriptCodeCompletionCache {
  69. struct Cache {
  70. uint64_t time_loaded;
  71. RES cache;
  72. };
  73. Map<String, Cache> cached;
  74. public:
  75. uint64_t max_time_cache;
  76. int max_cache_size;
  77. void cleanup() {
  78. List<Map<String, Cache>::Element *> to_clean;
  79. Map<String, Cache>::Element *I = cached.front();
  80. while (I) {
  81. if ((OS::get_singleton()->get_ticks_msec() - I->get().time_loaded) > max_time_cache) {
  82. to_clean.push_back(I);
  83. }
  84. I = I->next();
  85. }
  86. while (to_clean.front()) {
  87. cached.erase(to_clean.front()->get());
  88. to_clean.pop_front();
  89. }
  90. }
  91. RES get_cached_resource(const String &p_path) {
  92. Map<String, Cache>::Element *E = cached.find(p_path);
  93. if (!E) {
  94. Cache c;
  95. c.cache = ResourceLoader::load(p_path);
  96. E = cached.insert(p_path, c);
  97. }
  98. E->get().time_loaded = OS::get_singleton()->get_ticks_msec();
  99. if (cached.size() > max_cache_size) {
  100. uint64_t older;
  101. Map<String, Cache>::Element *O = cached.front();
  102. older = O->get().time_loaded;
  103. Map<String, Cache>::Element *I = O;
  104. while (I) {
  105. if (I->get().time_loaded < older) {
  106. older = I->get().time_loaded;
  107. O = I;
  108. }
  109. I = I->next();
  110. }
  111. if (O != E) { //should never heppane..
  112. cached.erase(O);
  113. }
  114. }
  115. return E->get().cache;
  116. }
  117. EditorScriptCodeCompletionCache() {
  118. max_cache_size = 128;
  119. max_time_cache = 5 * 60 * 1000; //minutes, five
  120. }
  121. };
  122. #define SORT_SCRIPT_LIST
  123. void ScriptEditorQuickOpen::popup(const Vector<String> &p_functions, bool p_dontclear) {
  124. popup_centered_ratio(0.6);
  125. if (p_dontclear)
  126. search_box->select_all();
  127. else
  128. search_box->clear();
  129. search_box->grab_focus();
  130. functions = p_functions;
  131. _update_search();
  132. }
  133. void ScriptEditorQuickOpen::_text_changed(const String &p_newtext) {
  134. _update_search();
  135. }
  136. void ScriptEditorQuickOpen::_sbox_input(const Ref<InputEvent> &p_ie) {
  137. Ref<InputEventKey> k = p_ie;
  138. if (k.is_valid() && (k->get_scancode() == KEY_UP ||
  139. k->get_scancode() == KEY_DOWN ||
  140. k->get_scancode() == KEY_PAGEUP ||
  141. k->get_scancode() == KEY_PAGEDOWN)) {
  142. search_options->call("_gui_input", k);
  143. search_box->accept_event();
  144. }
  145. }
  146. void ScriptEditorQuickOpen::_update_search() {
  147. search_options->clear();
  148. TreeItem *root = search_options->create_item();
  149. for (int i = 0; i < functions.size(); i++) {
  150. String file = functions[i];
  151. if ((search_box->get_text() == "" || file.findn(search_box->get_text()) != -1)) {
  152. TreeItem *ti = search_options->create_item(root);
  153. ti->set_text(0, file);
  154. if (root->get_children() == ti)
  155. ti->select(0);
  156. }
  157. }
  158. get_ok()->set_disabled(root->get_children() == NULL);
  159. }
  160. void ScriptEditorQuickOpen::_confirmed() {
  161. TreeItem *ti = search_options->get_selected();
  162. if (!ti)
  163. return;
  164. int line = ti->get_text(0).get_slice(":", 1).to_int();
  165. emit_signal("goto_line", line - 1);
  166. hide();
  167. }
  168. void ScriptEditorQuickOpen::_notification(int p_what) {
  169. switch (p_what) {
  170. case NOTIFICATION_ENTER_TREE: {
  171. connect("confirmed", this, "_confirmed");
  172. } break;
  173. }
  174. }
  175. void ScriptEditorQuickOpen::_bind_methods() {
  176. ClassDB::bind_method(D_METHOD("_text_changed"), &ScriptEditorQuickOpen::_text_changed);
  177. ClassDB::bind_method(D_METHOD("_confirmed"), &ScriptEditorQuickOpen::_confirmed);
  178. ClassDB::bind_method(D_METHOD("_sbox_input"), &ScriptEditorQuickOpen::_sbox_input);
  179. ADD_SIGNAL(MethodInfo("goto_line", PropertyInfo(Variant::INT, "line")));
  180. }
  181. ScriptEditorQuickOpen::ScriptEditorQuickOpen() {
  182. VBoxContainer *vbc = memnew(VBoxContainer);
  183. add_child(vbc);
  184. //set_child_rect(vbc);
  185. search_box = memnew(LineEdit);
  186. vbc->add_margin_child(TTR("Search:"), search_box);
  187. search_box->connect("text_changed", this, "_text_changed");
  188. search_box->connect("gui_input", this, "_sbox_input");
  189. search_options = memnew(Tree);
  190. vbc->add_margin_child(TTR("Matches:"), search_options, true);
  191. get_ok()->set_text(TTR("Open"));
  192. get_ok()->set_disabled(true);
  193. register_text_enter(search_box);
  194. set_hide_on_ok(false);
  195. search_options->connect("item_activated", this, "_confirmed");
  196. search_options->set_hide_root(true);
  197. }
  198. /////////////////////////////////
  199. ScriptEditor *ScriptEditor::script_editor = NULL;
  200. /*** SCRIPT EDITOR ******/
  201. String ScriptEditor::_get_debug_tooltip(const String &p_text, Node *_se) {
  202. //ScriptEditorBase *se=Object::cast_to<ScriptEditorBase>(_se);
  203. String val = debugger->get_var_value(p_text);
  204. if (val != String()) {
  205. return p_text + ": " + val;
  206. } else {
  207. return String();
  208. }
  209. }
  210. void ScriptEditor::_breaked(bool p_breaked, bool p_can_debug) {
  211. if (bool(EditorSettings::get_singleton()->get("text_editor/external/use_external_editor"))) {
  212. return;
  213. }
  214. debug_menu->get_popup()->set_item_disabled(debug_menu->get_popup()->get_item_index(DEBUG_NEXT), !(p_breaked && p_can_debug));
  215. debug_menu->get_popup()->set_item_disabled(debug_menu->get_popup()->get_item_index(DEBUG_STEP), !(p_breaked && p_can_debug));
  216. debug_menu->get_popup()->set_item_disabled(debug_menu->get_popup()->get_item_index(DEBUG_BREAK), p_breaked);
  217. debug_menu->get_popup()->set_item_disabled(debug_menu->get_popup()->get_item_index(DEBUG_CONTINUE), !p_breaked);
  218. for (int i = 0; i < tab_container->get_child_count(); i++) {
  219. ScriptEditorBase *se = Object::cast_to<ScriptEditorBase>(tab_container->get_child(i));
  220. if (!se) {
  221. continue;
  222. }
  223. se->set_debugger_active(p_breaked);
  224. }
  225. }
  226. void ScriptEditor::_show_debugger(bool p_show) {
  227. //debug_menu->get_popup()->set_item_checked( debug_menu->get_popup()->get_item_index(DEBUG_SHOW), p_show);
  228. }
  229. void ScriptEditor::_script_created(Ref<Script> p_script) {
  230. editor->push_item(p_script.operator->());
  231. }
  232. void ScriptEditor::_goto_script_line2(int p_line) {
  233. int selected = tab_container->get_current_tab();
  234. if (selected < 0 || selected >= tab_container->get_child_count())
  235. return;
  236. ScriptEditorBase *current = Object::cast_to<ScriptEditorBase>(tab_container->get_child(selected));
  237. if (!current)
  238. return;
  239. current->goto_line(p_line);
  240. }
  241. void ScriptEditor::_goto_script_line(REF p_script, int p_line) {
  242. editor->push_item(p_script.ptr());
  243. if (bool(EditorSettings::get_singleton()->get("text_editor/external/use_external_editor"))) {
  244. Ref<Script> script = Object::cast_to<Script>(*p_script);
  245. if (!script.is_null() && script->get_path().is_resource_file())
  246. edit(p_script, p_line, 0);
  247. }
  248. int selected = tab_container->get_current_tab();
  249. if (selected < 0 || selected >= tab_container->get_child_count())
  250. return;
  251. ScriptEditorBase *current = Object::cast_to<ScriptEditorBase>(tab_container->get_child(selected));
  252. if (!current)
  253. return;
  254. current->goto_line(p_line, true);
  255. }
  256. void ScriptEditor::_update_history_arrows() {
  257. script_back->set_disabled(history_pos <= 0);
  258. script_forward->set_disabled(history_pos >= history.size() - 1);
  259. }
  260. void ScriptEditor::_save_history() {
  261. if (history_pos >= 0 && history_pos < history.size() && history[history_pos].control == tab_container->get_current_tab_control()) {
  262. Node *n = tab_container->get_current_tab_control();
  263. if (Object::cast_to<ScriptEditorBase>(n)) {
  264. history[history_pos].state = Object::cast_to<ScriptEditorBase>(n)->get_edit_state();
  265. }
  266. if (Object::cast_to<EditorHelp>(n)) {
  267. history[history_pos].state = Object::cast_to<EditorHelp>(n)->get_scroll();
  268. }
  269. }
  270. history.resize(history_pos + 1);
  271. ScriptHistory sh;
  272. sh.control = tab_container->get_current_tab_control();
  273. sh.state = Variant();
  274. history.push_back(sh);
  275. history_pos++;
  276. _update_history_arrows();
  277. }
  278. void ScriptEditor::_go_to_tab(int p_idx) {
  279. Control *c = Object::cast_to<Control>(tab_container->get_child(p_idx));
  280. if (!c)
  281. return;
  282. if (history_pos >= 0 && history_pos < history.size() && history[history_pos].control == tab_container->get_current_tab_control()) {
  283. Node *n = tab_container->get_current_tab_control();
  284. if (Object::cast_to<ScriptEditorBase>(n)) {
  285. history[history_pos].state = Object::cast_to<ScriptEditorBase>(n)->get_edit_state();
  286. }
  287. if (Object::cast_to<EditorHelp>(n)) {
  288. history[history_pos].state = Object::cast_to<EditorHelp>(n)->get_scroll();
  289. }
  290. }
  291. history.resize(history_pos + 1);
  292. ScriptHistory sh;
  293. sh.control = c;
  294. sh.state = Variant();
  295. history.push_back(sh);
  296. history_pos++;
  297. tab_container->set_current_tab(p_idx);
  298. c = tab_container->get_current_tab_control();
  299. if (Object::cast_to<ScriptEditorBase>(c)) {
  300. script_name_label->set_text(Object::cast_to<ScriptEditorBase>(c)->get_name());
  301. script_icon->set_texture(Object::cast_to<ScriptEditorBase>(c)->get_icon());
  302. if (is_visible_in_tree())
  303. Object::cast_to<ScriptEditorBase>(c)->ensure_focus();
  304. notify_script_changed(Object::cast_to<ScriptEditorBase>(c)->get_edited_script());
  305. }
  306. if (Object::cast_to<EditorHelp>(c)) {
  307. script_name_label->set_text(Object::cast_to<EditorHelp>(c)->get_class());
  308. script_icon->set_texture(get_icon("Help", "EditorIcons"));
  309. if (is_visible_in_tree())
  310. Object::cast_to<EditorHelp>(c)->set_focused();
  311. }
  312. c->set_meta("__editor_pass", ++edit_pass);
  313. _update_history_arrows();
  314. _update_script_colors();
  315. _update_members_overview();
  316. _update_help_overview();
  317. _update_selected_editor_menu();
  318. _update_members_overview_visibility();
  319. _update_help_overview_visibility();
  320. }
  321. void ScriptEditor::_add_recent_script(String p_path) {
  322. if (p_path.empty()) {
  323. return;
  324. }
  325. // remove if already stored
  326. int already_recent = previous_scripts.find(p_path);
  327. if (already_recent >= 0) {
  328. previous_scripts.remove(already_recent);
  329. }
  330. // add to list
  331. previous_scripts.insert(0, p_path);
  332. _update_recent_scripts();
  333. }
  334. void ScriptEditor::_update_recent_scripts() {
  335. // make sure we don't exceed max size
  336. const int max_history = EDITOR_DEF("text_editor/files/maximum_recent_files", 20);
  337. if (previous_scripts.size() > max_history) {
  338. previous_scripts.resize(max_history);
  339. }
  340. recent_scripts->clear();
  341. recent_scripts->add_shortcut(ED_SHORTCUT("script_editor/open_recent", TTR("Open Recent"), KEY_MASK_CMD | KEY_MASK_SHIFT | KEY_T));
  342. recent_scripts->add_separator();
  343. const int max_shown = 8;
  344. for (int i = 0; i < previous_scripts.size() && i <= max_shown; i++) {
  345. String path = previous_scripts.get(i);
  346. // just show script name and last dir
  347. recent_scripts->add_item(path.get_slice("/", path.get_slice_count("/") - 2) + "/" + path.get_file());
  348. }
  349. recent_scripts->add_separator();
  350. recent_scripts->add_shortcut(ED_SHORTCUT("script_editor/clear_recent", TTR("Clear Recent Files")));
  351. }
  352. void ScriptEditor::_open_recent_script(int p_idx) {
  353. // clear button
  354. if (p_idx == recent_scripts->get_item_count() - 1) {
  355. previous_scripts.clear();
  356. _update_recent_scripts();
  357. return;
  358. }
  359. // take two for the open recent button
  360. if (p_idx > 0) {
  361. p_idx -= 2;
  362. }
  363. if (p_idx < previous_scripts.size() && p_idx >= 0) {
  364. String path = previous_scripts.get(p_idx);
  365. // if its not on disk its a help file or deleted
  366. if (FileAccess::exists(path)) {
  367. Ref<Script> script = ResourceLoader::load(path);
  368. if (script.is_valid()) {
  369. edit(script, true);
  370. }
  371. // if it's a path then its most likely a delted file not help
  372. } else if (!path.is_resource_file()) {
  373. _help_class_open(path);
  374. }
  375. previous_scripts.remove(p_idx);
  376. _update_recent_scripts();
  377. }
  378. }
  379. void ScriptEditor::_close_tab(int p_idx, bool p_save) {
  380. int selected = p_idx;
  381. if (selected < 0 || selected >= tab_container->get_child_count())
  382. return;
  383. Node *tselected = tab_container->get_child(selected);
  384. ScriptEditorBase *current = Object::cast_to<ScriptEditorBase>(tab_container->get_child(selected));
  385. if (current) {
  386. _add_recent_script(current->get_edited_script()->get_path());
  387. if (p_save) {
  388. apply_scripts();
  389. }
  390. current->clear_edit_menu();
  391. notify_script_close(current->get_edited_script());
  392. } else {
  393. EditorHelp *help = Object::cast_to<EditorHelp>(tab_container->get_child(selected));
  394. _add_recent_script(help->get_class());
  395. }
  396. // roll back to previous tab
  397. _history_back();
  398. //remove from history
  399. history.resize(history_pos + 1);
  400. for (int i = 0; i < history.size(); i++) {
  401. if (history[i].control == tselected) {
  402. history.remove(i);
  403. i--;
  404. history_pos--;
  405. }
  406. }
  407. if (history_pos >= history.size()) {
  408. history_pos = history.size() - 1;
  409. }
  410. int idx = tab_container->get_current_tab();
  411. memdelete(tselected);
  412. if (idx >= tab_container->get_child_count())
  413. idx = tab_container->get_child_count() - 1;
  414. if (idx >= 0) {
  415. if (history_pos >= 0) {
  416. idx = history[history_pos].control->get_index();
  417. }
  418. tab_container->set_current_tab(idx);
  419. //script_list->select(idx);
  420. }
  421. _update_history_arrows();
  422. _update_script_names();
  423. _update_members_overview_visibility();
  424. _update_help_overview_visibility();
  425. _save_layout();
  426. }
  427. void ScriptEditor::_close_current_tab() {
  428. _close_tab(tab_container->get_current_tab());
  429. }
  430. void ScriptEditor::_close_discard_current_tab(const String &p_str) {
  431. _close_tab(tab_container->get_current_tab(), false);
  432. erase_tab_confirm->hide();
  433. }
  434. void ScriptEditor::_close_docs_tab() {
  435. int child_count = tab_container->get_child_count();
  436. for (int i = child_count - 1; i >= 0; i--) {
  437. EditorHelp *se = Object::cast_to<EditorHelp>(tab_container->get_child(i));
  438. if (se) {
  439. _close_tab(i);
  440. }
  441. }
  442. }
  443. void ScriptEditor::_close_all_tabs() {
  444. int child_count = tab_container->get_child_count();
  445. for (int i = child_count - 1; i >= 0; i--) {
  446. tab_container->set_current_tab(i);
  447. ScriptEditorBase *se = Object::cast_to<ScriptEditorBase>(tab_container->get_child(i));
  448. if (se) {
  449. // Maybe there are unsaved changes
  450. if (se->is_unsaved()) {
  451. _ask_close_current_unsaved_tab(se);
  452. continue;
  453. }
  454. }
  455. _close_current_tab();
  456. }
  457. }
  458. void ScriptEditor::_ask_close_current_unsaved_tab(ScriptEditorBase *current) {
  459. erase_tab_confirm->set_text(TTR("Close and save changes?\n\"") + current->get_name() + "\"");
  460. erase_tab_confirm->popup_centered_minsize();
  461. }
  462. void ScriptEditor::_resave_scripts(const String &p_str) {
  463. apply_scripts();
  464. for (int i = 0; i < tab_container->get_child_count(); i++) {
  465. ScriptEditorBase *se = Object::cast_to<ScriptEditorBase>(tab_container->get_child(i));
  466. if (!se)
  467. continue;
  468. Ref<Script> script = se->get_edited_script();
  469. if (script->get_path() == "" || script->get_path().find("local://") != -1 || script->get_path().find("::") != -1)
  470. continue; //internal script, who cares
  471. if (trim_trailing_whitespace_on_save) {
  472. se->trim_trailing_whitespace();
  473. }
  474. if (convert_indent_on_save) {
  475. if (use_space_indentation) {
  476. se->convert_indent_to_spaces();
  477. } else {
  478. se->convert_indent_to_tabs();
  479. }
  480. }
  481. editor->save_resource(script);
  482. se->tag_saved_version();
  483. }
  484. disk_changed->hide();
  485. }
  486. void ScriptEditor::_reload_scripts() {
  487. for (int i = 0; i < tab_container->get_child_count(); i++) {
  488. ScriptEditorBase *se = Object::cast_to<ScriptEditorBase>(tab_container->get_child(i));
  489. if (!se) {
  490. continue;
  491. }
  492. Ref<Script> script = se->get_edited_script();
  493. if (script->get_path() == "" || script->get_path().find("local://") != -1 || script->get_path().find("::") != -1) {
  494. continue; //internal script, who cares
  495. }
  496. uint64_t last_date = script->get_last_modified_time();
  497. uint64_t date = FileAccess::get_modified_time(script->get_path());
  498. //printf("last date: %lli vs date: %lli\n",last_date,date);
  499. if (last_date == date) {
  500. continue;
  501. }
  502. Ref<Script> rel_script = ResourceLoader::load(script->get_path(), script->get_class(), true);
  503. ERR_CONTINUE(!rel_script.is_valid());
  504. script->set_source_code(rel_script->get_source_code());
  505. script->set_last_modified_time(rel_script->get_last_modified_time());
  506. script->reload();
  507. se->reload_text();
  508. }
  509. disk_changed->hide();
  510. _update_script_names();
  511. }
  512. void ScriptEditor::_res_saved_callback(const Ref<Resource> &p_res) {
  513. for (int i = 0; i < tab_container->get_child_count(); i++) {
  514. ScriptEditorBase *se = Object::cast_to<ScriptEditorBase>(tab_container->get_child(i));
  515. if (!se) {
  516. continue;
  517. }
  518. Ref<Script> script = se->get_edited_script();
  519. if (script->get_path() == "" || script->get_path().find("local://") != -1 || script->get_path().find("::") != -1) {
  520. continue; //internal script, who cares
  521. }
  522. if (script == p_res) {
  523. se->tag_saved_version();
  524. }
  525. }
  526. _update_script_names();
  527. if (!pending_auto_reload && auto_reload_running_scripts) {
  528. call_deferred("_live_auto_reload_running_scripts");
  529. pending_auto_reload = true;
  530. }
  531. }
  532. void ScriptEditor::_live_auto_reload_running_scripts() {
  533. pending_auto_reload = false;
  534. debugger->reload_scripts();
  535. }
  536. bool ScriptEditor::_test_script_times_on_disk(Ref<Script> p_for_script) {
  537. disk_changed_list->clear();
  538. TreeItem *r = disk_changed_list->create_item();
  539. disk_changed_list->set_hide_root(true);
  540. bool need_ask = false;
  541. bool need_reload = false;
  542. bool use_autoreload = bool(EDITOR_DEF("text_editor/files/auto_reload_scripts_on_external_change", false));
  543. for (int i = 0; i < tab_container->get_child_count(); i++) {
  544. ScriptEditorBase *se = Object::cast_to<ScriptEditorBase>(tab_container->get_child(i));
  545. if (se) {
  546. Ref<Script> script = se->get_edited_script();
  547. if (p_for_script.is_valid() && p_for_script != script)
  548. continue;
  549. if (script->get_path() == "" || script->get_path().find("local://") != -1 || script->get_path().find("::") != -1)
  550. continue; //internal script, who cares
  551. uint64_t last_date = script->get_last_modified_time();
  552. uint64_t date = FileAccess::get_modified_time(script->get_path());
  553. //printf("last date: %lli vs date: %lli\n",last_date,date);
  554. if (last_date != date) {
  555. TreeItem *ti = disk_changed_list->create_item(r);
  556. ti->set_text(0, script->get_path().get_file());
  557. if (!use_autoreload || se->is_unsaved()) {
  558. need_ask = true;
  559. }
  560. need_reload = true;
  561. //r->set_metadata(0,);
  562. }
  563. }
  564. }
  565. if (need_reload) {
  566. if (!need_ask) {
  567. script_editor->_reload_scripts();
  568. need_reload = false;
  569. } else {
  570. disk_changed->call_deferred("popup_centered_ratio", 0.5);
  571. }
  572. }
  573. return need_reload;
  574. }
  575. void ScriptEditor::_file_dialog_action(String p_file) {
  576. switch (file_dialog_option) {
  577. case FILE_SAVE_THEME_AS: {
  578. if (!EditorSettings::get_singleton()->save_text_editor_theme_as(p_file)) {
  579. editor->show_warning(TTR("Error while saving theme"), TTR("Error saving"));
  580. }
  581. } break;
  582. case FILE_IMPORT_THEME: {
  583. if (!EditorSettings::get_singleton()->import_text_editor_theme(p_file)) {
  584. editor->show_warning(TTR("Error importing theme"), TTR("Error importing"));
  585. }
  586. } break;
  587. }
  588. file_dialog_option = -1;
  589. }
  590. Ref<Script> ScriptEditor::_get_current_script() {
  591. int selected = tab_container->get_current_tab();
  592. if (selected < 0 || selected >= tab_container->get_child_count())
  593. return NULL;
  594. ScriptEditorBase *current = Object::cast_to<ScriptEditorBase>(tab_container->get_child(selected));
  595. if (current) {
  596. return current->get_edited_script();
  597. } else {
  598. return NULL;
  599. }
  600. }
  601. Array ScriptEditor::_get_open_scripts() const {
  602. Array ret;
  603. Vector<Ref<Script> > scripts = get_open_scripts();
  604. int scrits_amount = scripts.size();
  605. for (int idx_script = 0; idx_script < scrits_amount; idx_script++) {
  606. ret.push_back(scripts[idx_script]);
  607. }
  608. return ret;
  609. }
  610. void ScriptEditor::_menu_option(int p_option) {
  611. switch (p_option) {
  612. case FILE_NEW: {
  613. script_create_dialog->config("Node", ".gd");
  614. script_create_dialog->popup_centered(Size2(300, 300) * EDSCALE);
  615. } break;
  616. case FILE_OPEN: {
  617. editor->open_resource("Script");
  618. return;
  619. } break;
  620. case FILE_SAVE_ALL: {
  621. if (_test_script_times_on_disk())
  622. return;
  623. save_all_scripts();
  624. } break;
  625. case FILE_IMPORT_THEME: {
  626. file_dialog->set_mode(EditorFileDialog::MODE_OPEN_FILE);
  627. file_dialog->set_access(EditorFileDialog::ACCESS_FILESYSTEM);
  628. file_dialog_option = FILE_IMPORT_THEME;
  629. file_dialog->clear_filters();
  630. file_dialog->add_filter("*.tet");
  631. file_dialog->popup_centered_ratio();
  632. file_dialog->set_title(TTR("Import Theme"));
  633. } break;
  634. case FILE_RELOAD_THEME: {
  635. EditorSettings::get_singleton()->load_text_editor_theme();
  636. } break;
  637. case FILE_SAVE_THEME: {
  638. if (!EditorSettings::get_singleton()->save_text_editor_theme()) {
  639. editor->show_warning(TTR("Error while saving theme"), TTR("Error saving"));
  640. }
  641. } break;
  642. case FILE_SAVE_THEME_AS: {
  643. file_dialog->set_mode(EditorFileDialog::MODE_SAVE_FILE);
  644. file_dialog->set_access(EditorFileDialog::ACCESS_FILESYSTEM);
  645. file_dialog_option = FILE_SAVE_THEME_AS;
  646. file_dialog->clear_filters();
  647. file_dialog->add_filter("*.tet");
  648. file_dialog->set_current_path(EditorSettings::get_singleton()->get_settings_path() + "/text_editor_themes/" + EditorSettings::get_singleton()->get("text_editor/theme/color_theme"));
  649. file_dialog->popup_centered_ratio();
  650. file_dialog->set_title(TTR("Save Theme As.."));
  651. } break;
  652. case SEARCH_HELP: {
  653. help_search_dialog->popup();
  654. } break;
  655. case SEARCH_CLASSES: {
  656. String current;
  657. if (tab_container->get_tab_count() > 0) {
  658. EditorHelp *eh = Object::cast_to<EditorHelp>(tab_container->get_child(tab_container->get_current_tab()));
  659. if (eh) {
  660. current = eh->get_class();
  661. }
  662. }
  663. help_index->popup();
  664. if (current != "") {
  665. help_index->call_deferred("select_class", current);
  666. }
  667. } break;
  668. case SEARCH_WEBSITE: {
  669. OS::get_singleton()->shell_open("http://docs.godotengine.org/");
  670. } break;
  671. case WINDOW_NEXT: {
  672. _history_forward();
  673. } break;
  674. case WINDOW_PREV: {
  675. _history_back();
  676. } break;
  677. case DEBUG_SHOW: {
  678. if (debugger) {
  679. bool visible = debug_menu->get_popup()->is_item_checked(debug_menu->get_popup()->get_item_index(DEBUG_SHOW));
  680. debug_menu->get_popup()->set_item_checked(debug_menu->get_popup()->get_item_index(DEBUG_SHOW), !visible);
  681. if (visible)
  682. debugger->hide();
  683. else
  684. debugger->show();
  685. }
  686. } break;
  687. case DEBUG_SHOW_KEEP_OPEN: {
  688. bool visible = debug_menu->get_popup()->is_item_checked(debug_menu->get_popup()->get_item_index(DEBUG_SHOW_KEEP_OPEN));
  689. if (debugger)
  690. debugger->set_hide_on_stop(visible);
  691. debug_menu->get_popup()->set_item_checked(debug_menu->get_popup()->get_item_index(DEBUG_SHOW_KEEP_OPEN), !visible);
  692. } break;
  693. case DEBUG_WITH_EXTERNAL_EDITOR: {
  694. bool debug_with_external_editor = !debug_menu->get_popup()->is_item_checked(debug_menu->get_popup()->get_item_index(DEBUG_WITH_EXTERNAL_EDITOR));
  695. debugger->set_debug_with_external_editor(debug_with_external_editor);
  696. debug_menu->get_popup()->set_item_checked(debug_menu->get_popup()->get_item_index(DEBUG_WITH_EXTERNAL_EDITOR), debug_with_external_editor);
  697. } break;
  698. case TOGGLE_SCRIPTS_PANEL: {
  699. list_split->set_visible(!list_split->is_visible());
  700. }
  701. }
  702. int selected = tab_container->get_current_tab();
  703. if (selected < 0 || selected >= tab_container->get_child_count())
  704. return;
  705. ScriptEditorBase *current = Object::cast_to<ScriptEditorBase>(tab_container->get_child(selected));
  706. if (current) {
  707. switch (p_option) {
  708. case FILE_NEW: {
  709. script_create_dialog->config("Node", ".gd");
  710. script_create_dialog->popup_centered(Size2(300, 300) * EDSCALE);
  711. } break;
  712. case FILE_SAVE: {
  713. if (_test_script_times_on_disk())
  714. return;
  715. if (trim_trailing_whitespace_on_save)
  716. current->trim_trailing_whitespace();
  717. if (convert_indent_on_save) {
  718. if (use_space_indentation) {
  719. current->convert_indent_to_spaces();
  720. } else {
  721. current->convert_indent_to_tabs();
  722. }
  723. }
  724. editor->save_resource(current->get_edited_script());
  725. } break;
  726. case FILE_SAVE_AS: {
  727. current->trim_trailing_whitespace();
  728. if (convert_indent_on_save) {
  729. if (use_space_indentation) {
  730. current->convert_indent_to_spaces();
  731. } else {
  732. current->convert_indent_to_tabs();
  733. }
  734. }
  735. editor->push_item(Object::cast_to<Object>(current->get_edited_script().ptr()));
  736. editor->save_resource_as(current->get_edited_script());
  737. } break;
  738. case FILE_TOOL_RELOAD:
  739. case FILE_TOOL_RELOAD_SOFT: {
  740. current->reload(p_option == FILE_TOOL_RELOAD_SOFT);
  741. } break;
  742. case FILE_RUN: {
  743. Ref<Script> scr = current->get_edited_script();
  744. if (scr.is_null()) {
  745. EditorNode::get_singleton()->show_warning("Can't obtain the script for running");
  746. break;
  747. }
  748. current->apply_code();
  749. Error err = scr->reload(false); //hard reload script before running always
  750. if (err != OK) {
  751. EditorNode::get_singleton()->show_warning("Script failed reloading, check console for errors.");
  752. return;
  753. }
  754. if (!scr->is_tool()) {
  755. EditorNode::get_singleton()->show_warning("Script is not in tool mode, will not be able to run");
  756. return;
  757. }
  758. if (!ClassDB::is_parent_class(scr->get_instance_base_type(), "EditorScript")) {
  759. EditorNode::get_singleton()->show_warning("To run this script, it must inherit EditorScript and be set to tool mode");
  760. return;
  761. }
  762. Ref<EditorScript> es = memnew(EditorScript);
  763. es->set_script(scr.get_ref_ptr());
  764. es->set_editor(EditorNode::get_singleton());
  765. es->_run();
  766. EditorNode::get_undo_redo()->clear_history();
  767. } break;
  768. case FILE_CLOSE: {
  769. if (current->is_unsaved()) {
  770. _ask_close_current_unsaved_tab(current);
  771. } else {
  772. _close_current_tab();
  773. }
  774. } break;
  775. case CLOSE_DOCS: {
  776. _close_docs_tab();
  777. } break;
  778. case CLOSE_ALL: {
  779. _close_all_tabs();
  780. } break;
  781. case DEBUG_NEXT: {
  782. if (debugger)
  783. debugger->debug_next();
  784. } break;
  785. case DEBUG_STEP: {
  786. if (debugger)
  787. debugger->debug_step();
  788. } break;
  789. case DEBUG_BREAK: {
  790. if (debugger)
  791. debugger->debug_break();
  792. } break;
  793. case DEBUG_CONTINUE: {
  794. if (debugger)
  795. debugger->debug_continue();
  796. } break;
  797. case WINDOW_MOVE_LEFT: {
  798. if (tab_container->get_current_tab() > 0) {
  799. tab_container->call_deferred("set_current_tab", tab_container->get_current_tab() - 1);
  800. script_list->call_deferred("select", tab_container->get_current_tab() - 1);
  801. tab_container->move_child(current, tab_container->get_current_tab() - 1);
  802. _update_script_names();
  803. }
  804. } break;
  805. case WINDOW_MOVE_RIGHT: {
  806. if (tab_container->get_current_tab() < tab_container->get_child_count() - 1) {
  807. tab_container->call_deferred("set_current_tab", tab_container->get_current_tab() + 1);
  808. script_list->call_deferred("select", tab_container->get_current_tab() + 1);
  809. tab_container->move_child(current, tab_container->get_current_tab() + 1);
  810. _update_script_names();
  811. }
  812. } break;
  813. default: {
  814. if (p_option >= WINDOW_SELECT_BASE) {
  815. tab_container->set_current_tab(p_option - WINDOW_SELECT_BASE);
  816. script_list->select(p_option - WINDOW_SELECT_BASE);
  817. }
  818. }
  819. }
  820. } else {
  821. EditorHelp *help = Object::cast_to<EditorHelp>(tab_container->get_current_tab_control());
  822. if (help) {
  823. switch (p_option) {
  824. case HELP_SEARCH_FIND: {
  825. help->popup_search();
  826. } break;
  827. case HELP_SEARCH_FIND_NEXT: {
  828. help->search_again();
  829. } break;
  830. case FILE_CLOSE: {
  831. _close_current_tab();
  832. } break;
  833. case CLOSE_DOCS: {
  834. _close_docs_tab();
  835. } break;
  836. case CLOSE_ALL: {
  837. _close_all_tabs();
  838. } break;
  839. }
  840. }
  841. }
  842. }
  843. void ScriptEditor::_tab_changed(int p_which) {
  844. ensure_select_current();
  845. }
  846. void ScriptEditor::_notification(int p_what) {
  847. switch (p_what) {
  848. case NOTIFICATION_ENTER_TREE: {
  849. editor->connect("play_pressed", this, "_editor_play");
  850. editor->connect("pause_pressed", this, "_editor_pause");
  851. editor->connect("stop_pressed", this, "_editor_stop");
  852. editor->connect("script_add_function_request", this, "_add_callback");
  853. editor->connect("resource_saved", this, "_res_saved_callback");
  854. script_list->connect("item_selected", this, "_script_selected");
  855. members_overview->connect("item_selected", this, "_members_overview_selected");
  856. help_overview->connect("item_selected", this, "_help_overview_selected");
  857. script_split->connect("dragged", this, "_script_split_dragged");
  858. autosave_timer->connect("timeout", this, "_autosave_scripts");
  859. {
  860. float autosave_time = EditorSettings::get_singleton()->get("text_editor/files/autosave_interval_secs");
  861. if (autosave_time > 0) {
  862. autosave_timer->set_wait_time(autosave_time);
  863. autosave_timer->start();
  864. } else {
  865. autosave_timer->stop();
  866. }
  867. }
  868. EditorSettings::get_singleton()->connect("settings_changed", this, "_editor_settings_changed");
  869. help_search->set_icon(get_icon("HelpSearch", "EditorIcons"));
  870. site_search->set_icon(get_icon("Instance", "EditorIcons"));
  871. class_search->set_icon(get_icon("ClassList", "EditorIcons"));
  872. script_forward->set_icon(get_icon("Forward", "EditorIcons"));
  873. script_back->set_icon(get_icon("Back", "EditorIcons"));
  874. } break;
  875. case NOTIFICATION_READY: {
  876. get_tree()->connect("tree_changed", this, "_tree_changed");
  877. editor->connect("request_help", this, "_request_help");
  878. editor->connect("request_help_search", this, "_help_search");
  879. editor->connect("request_help_index", this, "_help_index");
  880. } break;
  881. case NOTIFICATION_EXIT_TREE: {
  882. editor->disconnect("play_pressed", this, "_editor_play");
  883. editor->disconnect("pause_pressed", this, "_editor_pause");
  884. editor->disconnect("stop_pressed", this, "_editor_stop");
  885. } break;
  886. case MainLoop::NOTIFICATION_WM_FOCUS_IN: {
  887. _test_script_times_on_disk();
  888. _update_modified_scripts_for_external_editor();
  889. } break;
  890. case NOTIFICATION_PROCESS: {
  891. } break;
  892. case EditorSettings::NOTIFICATION_EDITOR_SETTINGS_CHANGED: {
  893. help_search->set_icon(get_icon("HelpSearch", "EditorIcons"));
  894. site_search->set_icon(get_icon("Instance", "EditorIcons"));
  895. class_search->set_icon(get_icon("ClassList", "EditorIcons"));
  896. script_forward->set_icon(get_icon("Forward", "EditorIcons"));
  897. script_back->set_icon(get_icon("Back", "EditorIcons"));
  898. } break;
  899. default:
  900. break;
  901. }
  902. }
  903. bool ScriptEditor::can_take_away_focus() const {
  904. int selected = tab_container->get_current_tab();
  905. if (selected < 0 || selected >= tab_container->get_child_count())
  906. return true;
  907. ScriptEditorBase *current = Object::cast_to<ScriptEditorBase>(tab_container->get_child(selected));
  908. if (!current)
  909. return true;
  910. return current->can_lose_focus_on_node_selection();
  911. }
  912. void ScriptEditor::close_builtin_scripts_from_scene(const String &p_scene) {
  913. for (int i = 0; i < tab_container->get_child_count(); i++) {
  914. ScriptEditorBase *se = Object::cast_to<ScriptEditorBase>(tab_container->get_child(i));
  915. if (se) {
  916. Ref<Script> script = se->get_edited_script();
  917. if (!script.is_valid())
  918. continue;
  919. if (script->get_path().find("::") != -1 && script->get_path().begins_with(p_scene)) { //is an internal script and belongs to scene being closed
  920. _close_tab(i);
  921. i--;
  922. }
  923. }
  924. }
  925. }
  926. void ScriptEditor::edited_scene_changed() {
  927. _update_modified_scripts_for_external_editor();
  928. }
  929. void ScriptEditor::notify_script_close(const Ref<Script> &p_script) {
  930. emit_signal("script_close", p_script);
  931. }
  932. void ScriptEditor::notify_script_changed(const Ref<Script> &p_script) {
  933. emit_signal("editor_script_changed", p_script);
  934. }
  935. static const Node *_find_node_with_script(const Node *p_node, const RefPtr &p_script) {
  936. if (p_node->get_script() == p_script)
  937. return p_node;
  938. for (int i = 0; i < p_node->get_child_count(); i++) {
  939. const Node *result = _find_node_with_script(p_node->get_child(i), p_script);
  940. if (result)
  941. return result;
  942. }
  943. return NULL;
  944. }
  945. void ScriptEditor::get_breakpoints(List<String> *p_breakpoints) {
  946. for (int i = 0; i < tab_container->get_child_count(); i++) {
  947. ScriptEditorBase *se = Object::cast_to<ScriptEditorBase>(tab_container->get_child(i));
  948. if (!se)
  949. continue;
  950. List<int> bpoints;
  951. se->get_breakpoints(&bpoints);
  952. Ref<Script> script = se->get_edited_script();
  953. String base = script->get_path();
  954. ERR_CONTINUE(base.begins_with("local://") || base == "");
  955. for (List<int>::Element *E = bpoints.front(); E; E = E->next()) {
  956. p_breakpoints->push_back(base + ":" + itos(E->get() + 1));
  957. }
  958. }
  959. }
  960. void ScriptEditor::ensure_focus_current() {
  961. if (!is_inside_tree())
  962. return;
  963. int cidx = tab_container->get_current_tab();
  964. if (cidx < 0 || cidx >= tab_container->get_tab_count())
  965. return;
  966. Control *c = Object::cast_to<Control>(tab_container->get_child(cidx));
  967. ScriptEditorBase *se = Object::cast_to<ScriptEditorBase>(c);
  968. if (!se)
  969. return;
  970. se->ensure_focus();
  971. }
  972. void ScriptEditor::_members_overview_selected(int p_idx) {
  973. Node *current = tab_container->get_child(tab_container->get_current_tab());
  974. ScriptEditorBase *se = Object::cast_to<ScriptEditorBase>(current);
  975. if (!se) {
  976. return;
  977. }
  978. se->goto_line(members_overview->get_item_metadata(p_idx));
  979. se->ensure_focus();
  980. }
  981. void ScriptEditor::_help_overview_selected(int p_idx) {
  982. Node *current = tab_container->get_child(tab_container->get_current_tab());
  983. EditorHelp *se = Object::cast_to<EditorHelp>(current);
  984. if (!se) {
  985. return;
  986. }
  987. se->scroll_to_section(help_overview->get_item_metadata(p_idx));
  988. }
  989. void ScriptEditor::_script_selected(int p_idx) {
  990. grab_focus_block = !Input::get_singleton()->is_mouse_button_pressed(1); //amazing hack, simply amazing
  991. _go_to_tab(script_list->get_item_metadata(p_idx));
  992. grab_focus_block = false;
  993. }
  994. void ScriptEditor::ensure_select_current() {
  995. if (tab_container->get_child_count() && tab_container->get_current_tab() >= 0) {
  996. Node *current = tab_container->get_child(tab_container->get_current_tab());
  997. ScriptEditorBase *se = Object::cast_to<ScriptEditorBase>(current);
  998. if (se) {
  999. Ref<Script> script = se->get_edited_script();
  1000. if (!grab_focus_block && is_visible_in_tree())
  1001. se->ensure_focus();
  1002. //edit_menu->show();
  1003. //search_menu->show();
  1004. }
  1005. EditorHelp *eh = Object::cast_to<EditorHelp>(current);
  1006. if (eh) {
  1007. //edit_menu->hide();
  1008. //search_menu->hide();
  1009. //script_search_menu->show();
  1010. }
  1011. }
  1012. _update_selected_editor_menu();
  1013. }
  1014. void ScriptEditor::_find_scripts(Node *p_base, Node *p_current, Set<Ref<Script> > &used) {
  1015. if (p_current != p_base && p_current->get_owner() != p_base)
  1016. return;
  1017. if (p_current->get_script_instance()) {
  1018. Ref<Script> scr = p_current->get_script();
  1019. if (scr.is_valid())
  1020. used.insert(scr);
  1021. }
  1022. for (int i = 0; i < p_current->get_child_count(); i++) {
  1023. _find_scripts(p_base, p_current->get_child(i), used);
  1024. }
  1025. }
  1026. struct _ScriptEditorItemData {
  1027. String name;
  1028. String sort_key;
  1029. Ref<Texture> icon;
  1030. int index;
  1031. String tooltip;
  1032. bool used;
  1033. int category;
  1034. bool operator<(const _ScriptEditorItemData &id) const {
  1035. return category == id.category ? sort_key < id.sort_key : category < id.category;
  1036. }
  1037. };
  1038. void ScriptEditor::_update_members_overview_visibility() {
  1039. int selected = tab_container->get_current_tab();
  1040. if (selected < 0 || selected >= tab_container->get_child_count())
  1041. return;
  1042. Node *current = tab_container->get_child(tab_container->get_current_tab());
  1043. ScriptEditorBase *se = Object::cast_to<ScriptEditorBase>(current);
  1044. if (!se) {
  1045. members_overview->set_visible(false);
  1046. return;
  1047. }
  1048. if (members_overview_enabled && se->show_members_overview()) {
  1049. members_overview->set_visible(true);
  1050. } else {
  1051. members_overview->set_visible(false);
  1052. }
  1053. }
  1054. void ScriptEditor::_update_members_overview() {
  1055. members_overview->clear();
  1056. int selected = tab_container->get_current_tab();
  1057. if (selected < 0 || selected >= tab_container->get_child_count())
  1058. return;
  1059. Node *current = tab_container->get_child(tab_container->get_current_tab());
  1060. ScriptEditorBase *se = Object::cast_to<ScriptEditorBase>(current);
  1061. if (!se) {
  1062. return;
  1063. }
  1064. Vector<String> functions = se->get_functions();
  1065. for (int i = 0; i < functions.size(); i++) {
  1066. members_overview->add_item(functions[i].get_slice(":", 0));
  1067. members_overview->set_item_metadata(i, functions[i].get_slice(":", 1).to_int() - 1);
  1068. }
  1069. }
  1070. void ScriptEditor::_update_help_overview_visibility() {
  1071. int selected = tab_container->get_current_tab();
  1072. if (selected < 0 || selected >= tab_container->get_child_count())
  1073. return;
  1074. Node *current = tab_container->get_child(tab_container->get_current_tab());
  1075. EditorHelp *se = Object::cast_to<EditorHelp>(current);
  1076. if (!se) {
  1077. help_overview->set_visible(false);
  1078. return;
  1079. }
  1080. if (help_overview_enabled) {
  1081. help_overview->set_visible(true);
  1082. } else {
  1083. help_overview->set_visible(false);
  1084. }
  1085. }
  1086. void ScriptEditor::_update_help_overview() {
  1087. int selected = tab_container->get_current_tab();
  1088. if (selected < 0 || selected >= tab_container->get_child_count())
  1089. return;
  1090. Node *current = tab_container->get_child(tab_container->get_current_tab());
  1091. EditorHelp *se = Object::cast_to<EditorHelp>(current);
  1092. if (!se) {
  1093. return;
  1094. }
  1095. help_overview->clear();
  1096. Vector<Pair<String, int> > sections = se->get_sections();
  1097. for (int i = 0; i < sections.size(); i++) {
  1098. help_overview->add_item(sections[i].first);
  1099. help_overview->set_item_metadata(i, sections[i].second);
  1100. }
  1101. }
  1102. void _help_overview_selected(int p_idx) {
  1103. }
  1104. void ScriptEditor::_update_script_colors() {
  1105. bool script_temperature_enabled = EditorSettings::get_singleton()->get("text_editor/open_scripts/script_temperature_enabled");
  1106. bool highlight_current = EditorSettings::get_singleton()->get("text_editor/open_scripts/highlight_current_script");
  1107. int hist_size = EditorSettings::get_singleton()->get("text_editor/open_scripts/script_temperature_history_size");
  1108. Color hot_color = get_color("accent_color", "Editor");
  1109. Color cold_color = get_color("font_color", "Editor");
  1110. for (int i = 0; i < script_list->get_item_count(); i++) {
  1111. int c = script_list->get_item_metadata(i);
  1112. Node *n = tab_container->get_child(c);
  1113. if (!n)
  1114. continue;
  1115. script_list->set_item_custom_bg_color(i, Color(0, 0, 0, 0));
  1116. bool current = tab_container->get_current_tab() == c;
  1117. if (current && highlight_current) {
  1118. script_list->set_item_custom_bg_color(i, EditorSettings::get_singleton()->get("text_editor/open_scripts/current_script_background_color"));
  1119. } else if (script_temperature_enabled) {
  1120. if (!n->has_meta("__editor_pass")) {
  1121. continue;
  1122. }
  1123. int pass = n->get_meta("__editor_pass");
  1124. int h = edit_pass - pass;
  1125. if (h > hist_size) {
  1126. continue;
  1127. }
  1128. int non_zero_hist_size = (hist_size == 0) ? 1 : hist_size;
  1129. float v = Math::ease((edit_pass - pass) / float(non_zero_hist_size), 0.4);
  1130. script_list->set_item_custom_fg_color(i, hot_color.linear_interpolate(cold_color, v));
  1131. }
  1132. }
  1133. }
  1134. void ScriptEditor::_update_script_names() {
  1135. if (restoring_layout)
  1136. return;
  1137. waiting_update_names = false;
  1138. Set<Ref<Script> > used;
  1139. Node *edited = EditorNode::get_singleton()->get_edited_scene();
  1140. if (edited) {
  1141. _find_scripts(edited, edited, used);
  1142. }
  1143. script_list->clear();
  1144. bool split_script_help = EditorSettings::get_singleton()->get("text_editor/open_scripts/group_help_pages");
  1145. ScriptSortBy sort_by = (ScriptSortBy)(int)EditorSettings::get_singleton()->get("text_editor/open_scripts/sort_scripts_by");
  1146. ScriptListName display_as = (ScriptListName)(int)EditorSettings::get_singleton()->get("text_editor/open_scripts/list_script_names_as");
  1147. Vector<_ScriptEditorItemData> sedata;
  1148. for (int i = 0; i < tab_container->get_child_count(); i++) {
  1149. ScriptEditorBase *se = Object::cast_to<ScriptEditorBase>(tab_container->get_child(i));
  1150. if (se) {
  1151. String name = se->get_name();
  1152. Ref<Texture> icon = se->get_icon();
  1153. String path = se->get_edited_script()->get_path();
  1154. _ScriptEditorItemData sd;
  1155. sd.icon = icon;
  1156. sd.name = name;
  1157. sd.tooltip = path;
  1158. sd.index = i;
  1159. sd.used = used.has(se->get_edited_script());
  1160. sd.category = 0;
  1161. switch (sort_by) {
  1162. case SORT_BY_NAME: {
  1163. sd.sort_key = name.to_lower();
  1164. } break;
  1165. case SORT_BY_PATH: {
  1166. sd.sort_key = path;
  1167. } break;
  1168. }
  1169. switch (display_as) {
  1170. case DISPLAY_NAME: {
  1171. sd.name = name;
  1172. } break;
  1173. case DISPLAY_DIR_AND_NAME: {
  1174. if (!path.get_base_dir().get_file().empty()) {
  1175. sd.name = path.get_base_dir().get_file() + "/" + name;
  1176. } else {
  1177. sd.name = name;
  1178. }
  1179. } break;
  1180. case DISPLAY_FULL_PATH: {
  1181. sd.name = path;
  1182. } break;
  1183. }
  1184. sedata.push_back(sd);
  1185. }
  1186. EditorHelp *eh = Object::cast_to<EditorHelp>(tab_container->get_child(i));
  1187. if (eh) {
  1188. String name = eh->get_class();
  1189. Ref<Texture> icon = get_icon("Help", "EditorIcons");
  1190. String tooltip = name + TTR(" Class Reference");
  1191. _ScriptEditorItemData sd;
  1192. sd.icon = icon;
  1193. sd.name = name;
  1194. sd.sort_key = name;
  1195. sd.tooltip = tooltip;
  1196. sd.index = i;
  1197. sd.used = false;
  1198. sd.category = split_script_help ? 1 : 0;
  1199. sedata.push_back(sd);
  1200. }
  1201. }
  1202. sedata.sort();
  1203. for (int i = 0; i < sedata.size(); i++) {
  1204. script_list->add_item(sedata[i].name, sedata[i].icon);
  1205. int index = script_list->get_item_count() - 1;
  1206. script_list->set_item_tooltip(index, sedata[i].tooltip);
  1207. script_list->set_item_metadata(index, sedata[i].index);
  1208. if (sedata[i].used) {
  1209. script_list->set_item_custom_bg_color(index, Color(88 / 255.0, 88 / 255.0, 60 / 255.0));
  1210. }
  1211. if (tab_container->get_current_tab() == sedata[i].index) {
  1212. script_list->select(index);
  1213. script_name_label->set_text(sedata[i].name);
  1214. script_icon->set_texture(sedata[i].icon);
  1215. }
  1216. }
  1217. _update_members_overview();
  1218. _update_help_overview();
  1219. _update_script_colors();
  1220. }
  1221. bool ScriptEditor::edit(const Ref<Script> &p_script, int p_line, int p_col, bool p_grab_focus) {
  1222. if (p_script.is_null())
  1223. return false;
  1224. // refuse to open built-in if scene is not loaded
  1225. // see if already has it
  1226. bool open_dominant = EditorSettings::get_singleton()->get("text_editor/files/open_dominant_script_on_scene_change");
  1227. if (p_script->get_language()->overrides_external_editor()) {
  1228. Error err = p_script->get_language()->open_in_external_editor(p_script, p_line >= 0 ? p_line : 0, p_col);
  1229. if (err != OK)
  1230. ERR_PRINT("Couldn't open script in the overridden external text editor");
  1231. return false;
  1232. }
  1233. if ((debugger->get_dump_stack_script() != p_script || debugger->get_debug_with_external_editor()) &&
  1234. p_script->get_path().is_resource_file() &&
  1235. bool(EditorSettings::get_singleton()->get("text_editor/external/use_external_editor"))) {
  1236. String path = EditorSettings::get_singleton()->get("text_editor/external/exec_path");
  1237. String flags = EditorSettings::get_singleton()->get("text_editor/external/exec_flags");
  1238. Dictionary keys;
  1239. keys["project"] = ProjectSettings::get_singleton()->get_resource_path();
  1240. keys["file"] = ProjectSettings::get_singleton()->globalize_path(p_script->get_path());
  1241. keys["line"] = p_line >= 0 ? p_line : 0;
  1242. keys["col"] = p_col;
  1243. flags = flags.format(keys).strip_edges().replace("\\\\", "\\");
  1244. List<String> args;
  1245. if (flags.size()) {
  1246. int from = 0, to = 0;
  1247. bool inside_quotes = false;
  1248. for (int i = 0; i < flags.size(); i++) {
  1249. if (flags[i] == '"' && (!i || flags[i - 1] != '\\')) {
  1250. inside_quotes = !inside_quotes;
  1251. } else if (flags[i] == '\0' || (!inside_quotes && flags[i] == ' ')) {
  1252. args.push_back(flags.substr(from, to));
  1253. from = i + 1;
  1254. to = 0;
  1255. } else {
  1256. to++;
  1257. }
  1258. }
  1259. }
  1260. Error err = OS::get_singleton()->execute(path, args, false);
  1261. if (err == OK)
  1262. return false;
  1263. WARN_PRINT("Couldn't open external text editor, using internal");
  1264. }
  1265. for (int i = 0; i < tab_container->get_child_count(); i++) {
  1266. ScriptEditorBase *se = Object::cast_to<ScriptEditorBase>(tab_container->get_child(i));
  1267. if (!se)
  1268. continue;
  1269. if (se->get_edited_script() == p_script) {
  1270. if (open_dominant || !EditorNode::get_singleton()->is_changing_scene()) {
  1271. if (tab_container->get_current_tab() != i) {
  1272. _go_to_tab(i);
  1273. script_list->select(script_list->find_metadata(i));
  1274. }
  1275. if (is_visible_in_tree())
  1276. se->ensure_focus();
  1277. if (p_line >= 0)
  1278. se->goto_line(p_line - 1);
  1279. }
  1280. return true;
  1281. }
  1282. }
  1283. // doesn't have it, make a new one
  1284. ScriptEditorBase *se;
  1285. for (int i = script_editor_func_count - 1; i >= 0; i--) {
  1286. se = script_editor_funcs[i](p_script);
  1287. if (se)
  1288. break;
  1289. }
  1290. ERR_FAIL_COND_V(!se, false);
  1291. tab_container->add_child(se);
  1292. se->set_edited_script(p_script);
  1293. se->set_tooltip_request_func("_get_debug_tooltip", this);
  1294. if (se->get_edit_menu()) {
  1295. se->get_edit_menu()->hide();
  1296. menu_hb->add_child(se->get_edit_menu());
  1297. menu_hb->move_child(se->get_edit_menu(), 1);
  1298. }
  1299. if (p_grab_focus) {
  1300. _go_to_tab(tab_container->get_tab_count() - 1);
  1301. }
  1302. _update_script_names();
  1303. _save_layout();
  1304. se->connect("name_changed", this, "_update_script_names");
  1305. se->connect("edited_script_changed", this, "_script_changed");
  1306. se->connect("request_help_search", this, "_help_search");
  1307. se->connect("request_open_script_at_line", this, "_goto_script_line");
  1308. se->connect("go_to_help", this, "_help_class_goto");
  1309. se->connect("request_save_history", this, "_save_history");
  1310. //test for modification, maybe the script was not edited but was loaded
  1311. _test_script_times_on_disk(p_script);
  1312. _update_modified_scripts_for_external_editor(p_script);
  1313. if (p_line >= 0)
  1314. se->goto_line(p_line - 1);
  1315. notify_script_changed(p_script);
  1316. return true;
  1317. }
  1318. void ScriptEditor::save_all_scripts() {
  1319. for (int i = 0; i < tab_container->get_child_count(); i++) {
  1320. ScriptEditorBase *se = Object::cast_to<ScriptEditorBase>(tab_container->get_child(i));
  1321. if (!se)
  1322. continue;
  1323. if (convert_indent_on_save) {
  1324. if (use_space_indentation) {
  1325. se->convert_indent_to_spaces();
  1326. } else {
  1327. se->convert_indent_to_tabs();
  1328. }
  1329. }
  1330. if (trim_trailing_whitespace_on_save) {
  1331. se->trim_trailing_whitespace();
  1332. }
  1333. if (!se->is_unsaved())
  1334. continue;
  1335. Ref<Script> script = se->get_edited_script();
  1336. if (script.is_valid())
  1337. se->apply_code();
  1338. if (script->get_path() != "" && script->get_path().find("local://") == -1 && script->get_path().find("::") == -1) {
  1339. //external script, save it
  1340. editor->save_resource(script);
  1341. //ResourceSaver::save(script->get_path(),script);
  1342. }
  1343. }
  1344. _update_script_names();
  1345. }
  1346. void ScriptEditor::apply_scripts() const {
  1347. for (int i = 0; i < tab_container->get_child_count(); i++) {
  1348. ScriptEditorBase *se = Object::cast_to<ScriptEditorBase>(tab_container->get_child(i));
  1349. if (!se)
  1350. continue;
  1351. se->apply_code();
  1352. }
  1353. }
  1354. void ScriptEditor::_editor_play() {
  1355. debugger->start();
  1356. debug_menu->get_popup()->grab_focus();
  1357. debug_menu->get_popup()->set_item_disabled(debug_menu->get_popup()->get_item_index(DEBUG_NEXT), true);
  1358. debug_menu->get_popup()->set_item_disabled(debug_menu->get_popup()->get_item_index(DEBUG_STEP), true);
  1359. debug_menu->get_popup()->set_item_disabled(debug_menu->get_popup()->get_item_index(DEBUG_BREAK), false);
  1360. debug_menu->get_popup()->set_item_disabled(debug_menu->get_popup()->get_item_index(DEBUG_CONTINUE), true);
  1361. //debugger_gui->start_listening(Globals::get_singleton()->get("debug/debug_port"));
  1362. }
  1363. void ScriptEditor::_editor_pause() {
  1364. }
  1365. void ScriptEditor::_editor_stop() {
  1366. debugger->stop();
  1367. debug_menu->get_popup()->set_item_disabled(debug_menu->get_popup()->get_item_index(DEBUG_NEXT), true);
  1368. debug_menu->get_popup()->set_item_disabled(debug_menu->get_popup()->get_item_index(DEBUG_STEP), true);
  1369. debug_menu->get_popup()->set_item_disabled(debug_menu->get_popup()->get_item_index(DEBUG_BREAK), true);
  1370. debug_menu->get_popup()->set_item_disabled(debug_menu->get_popup()->get_item_index(DEBUG_CONTINUE), true);
  1371. for (int i = 0; i < tab_container->get_child_count(); i++) {
  1372. ScriptEditorBase *se = Object::cast_to<ScriptEditorBase>(tab_container->get_child(i));
  1373. if (!se) {
  1374. continue;
  1375. }
  1376. se->set_debugger_active(false);
  1377. }
  1378. }
  1379. void ScriptEditor::_add_callback(Object *p_obj, const String &p_function, const PoolStringArray &p_args) {
  1380. //print_line("add callback! hohoho"); kinda sad to remove this
  1381. ERR_FAIL_COND(!p_obj);
  1382. Ref<Script> script = p_obj->get_script();
  1383. ERR_FAIL_COND(!script.is_valid());
  1384. editor->push_item(script.ptr());
  1385. for (int i = 0; i < tab_container->get_child_count(); i++) {
  1386. ScriptEditorBase *se = Object::cast_to<ScriptEditorBase>(tab_container->get_child(i));
  1387. if (!se)
  1388. continue;
  1389. if (se->get_edited_script() != script)
  1390. continue;
  1391. se->add_callback(p_function, p_args);
  1392. _go_to_tab(i);
  1393. script_list->select(script_list->find_metadata(i));
  1394. break;
  1395. }
  1396. }
  1397. void ScriptEditor::_save_layout() {
  1398. if (restoring_layout) {
  1399. return;
  1400. }
  1401. editor->save_layout();
  1402. }
  1403. void ScriptEditor::_editor_settings_changed() {
  1404. trim_trailing_whitespace_on_save = EditorSettings::get_singleton()->get("text_editor/files/trim_trailing_whitespace_on_save");
  1405. convert_indent_on_save = EditorSettings::get_singleton()->get("text_editor/indent/convert_indent_on_save");
  1406. use_space_indentation = EditorSettings::get_singleton()->get("text_editor/indent/type");
  1407. members_overview_enabled = EditorSettings::get_singleton()->get("text_editor/open_scripts/show_members_overview");
  1408. help_overview_enabled = EditorSettings::get_singleton()->get("text_editor/help/show_help_index");
  1409. _update_members_overview_visibility();
  1410. _update_help_overview_visibility();
  1411. float autosave_time = EditorSettings::get_singleton()->get("text_editor/files/autosave_interval_secs");
  1412. if (autosave_time > 0) {
  1413. autosave_timer->set_wait_time(autosave_time);
  1414. autosave_timer->start();
  1415. } else {
  1416. autosave_timer->stop();
  1417. }
  1418. if (current_theme == "") {
  1419. current_theme = EditorSettings::get_singleton()->get("text_editor/theme/color_theme");
  1420. } else if (current_theme != EditorSettings::get_singleton()->get("text_editor/theme/color_theme")) {
  1421. current_theme = EditorSettings::get_singleton()->get("text_editor/theme/color_theme");
  1422. EditorSettings::get_singleton()->load_text_editor_theme();
  1423. }
  1424. for (int i = 0; i < tab_container->get_child_count(); i++) {
  1425. ScriptEditorBase *se = Object::cast_to<ScriptEditorBase>(tab_container->get_child(i));
  1426. if (!se)
  1427. continue;
  1428. se->update_settings();
  1429. }
  1430. _update_script_colors();
  1431. _update_script_names();
  1432. ScriptServer::set_reload_scripts_on_save(EDITOR_DEF("text_editor/files/auto_reload_and_parse_scripts_on_save", true));
  1433. }
  1434. void ScriptEditor::_autosave_scripts() {
  1435. save_all_scripts();
  1436. }
  1437. void ScriptEditor::_tree_changed() {
  1438. if (waiting_update_names)
  1439. return;
  1440. waiting_update_names = true;
  1441. call_deferred("_update_script_names");
  1442. }
  1443. void ScriptEditor::_script_split_dragged(float) {
  1444. _save_layout();
  1445. }
  1446. void ScriptEditor::_unhandled_input(const Ref<InputEvent> &p_event) {
  1447. if (p_event->is_pressed() || !is_visible_in_tree()) return;
  1448. if (ED_IS_SHORTCUT("script_editor/next_script", p_event)) {
  1449. int next_tab = script_list->get_current() + 1;
  1450. next_tab %= script_list->get_item_count();
  1451. _go_to_tab(script_list->get_item_metadata(next_tab));
  1452. _update_script_names();
  1453. }
  1454. if (ED_IS_SHORTCUT("script_editor/prev_script", p_event)) {
  1455. int next_tab = script_list->get_current() - 1;
  1456. next_tab = next_tab >= 0 ? next_tab : script_list->get_item_count() - 1;
  1457. _go_to_tab(script_list->get_item_metadata(next_tab));
  1458. _update_script_names();
  1459. }
  1460. }
  1461. void ScriptEditor::set_window_layout(Ref<ConfigFile> p_layout) {
  1462. if (!bool(EDITOR_DEF("text_editor/files/restore_scripts_on_load", true))) {
  1463. return;
  1464. }
  1465. if (!p_layout->has_section_key("ScriptEditor", "open_scripts") && !p_layout->has_section_key("ScriptEditor", "open_help"))
  1466. return;
  1467. Array scripts = p_layout->get_value("ScriptEditor", "open_scripts");
  1468. Array helps;
  1469. if (p_layout->has_section_key("ScriptEditor", "open_help"))
  1470. helps = p_layout->get_value("ScriptEditor", "open_help");
  1471. restoring_layout = true;
  1472. for (int i = 0; i < scripts.size(); i++) {
  1473. String path = scripts[i];
  1474. if (!FileAccess::exists(path))
  1475. continue;
  1476. Ref<Script> scr = ResourceLoader::load(path);
  1477. if (scr.is_valid()) {
  1478. edit(scr);
  1479. }
  1480. }
  1481. for (int i = 0; i < helps.size(); i++) {
  1482. String path = helps[i];
  1483. if (path == "") { // invalid, skip
  1484. continue;
  1485. }
  1486. _help_class_open(path);
  1487. }
  1488. for (int i = 0; i < tab_container->get_child_count(); i++) {
  1489. tab_container->get_child(i)->set_meta("__editor_pass", Variant());
  1490. }
  1491. if (p_layout->has_section_key("ScriptEditor", "split_offset")) {
  1492. script_split->set_split_offset(p_layout->get_value("ScriptEditor", "split_offset"));
  1493. }
  1494. restoring_layout = false;
  1495. _update_script_names();
  1496. }
  1497. void ScriptEditor::get_window_layout(Ref<ConfigFile> p_layout) {
  1498. Array scripts;
  1499. Array helps;
  1500. for (int i = 0; i < tab_container->get_child_count(); i++) {
  1501. ScriptEditorBase *se = Object::cast_to<ScriptEditorBase>(tab_container->get_child(i));
  1502. if (se) {
  1503. String path = se->get_edited_script()->get_path();
  1504. if (!path.is_resource_file())
  1505. continue;
  1506. scripts.push_back(path);
  1507. }
  1508. EditorHelp *eh = Object::cast_to<EditorHelp>(tab_container->get_child(i));
  1509. if (eh) {
  1510. helps.push_back(eh->get_class());
  1511. }
  1512. }
  1513. p_layout->set_value("ScriptEditor", "open_scripts", scripts);
  1514. p_layout->set_value("ScriptEditor", "open_help", helps);
  1515. p_layout->set_value("ScriptEditor", "split_offset", script_split->get_split_offset());
  1516. }
  1517. void ScriptEditor::_help_class_open(const String &p_class) {
  1518. if (p_class == "")
  1519. return;
  1520. for (int i = 0; i < tab_container->get_child_count(); i++) {
  1521. EditorHelp *eh = Object::cast_to<EditorHelp>(tab_container->get_child(i));
  1522. if (eh && eh->get_class() == p_class) {
  1523. _go_to_tab(i);
  1524. _update_script_names();
  1525. return;
  1526. }
  1527. }
  1528. EditorHelp *eh = memnew(EditorHelp);
  1529. eh->set_name(p_class);
  1530. tab_container->add_child(eh);
  1531. _go_to_tab(tab_container->get_tab_count() - 1);
  1532. eh->go_to_class(p_class, 0);
  1533. eh->connect("go_to_help", this, "_help_class_goto");
  1534. _update_script_names();
  1535. _save_layout();
  1536. }
  1537. void ScriptEditor::_help_class_goto(const String &p_desc) {
  1538. String cname = p_desc.get_slice(":", 1);
  1539. for (int i = 0; i < tab_container->get_child_count(); i++) {
  1540. EditorHelp *eh = Object::cast_to<EditorHelp>(tab_container->get_child(i));
  1541. if (eh && eh->get_class() == cname) {
  1542. _go_to_tab(i);
  1543. eh->go_to_help(p_desc);
  1544. _update_script_names();
  1545. return;
  1546. }
  1547. }
  1548. EditorHelp *eh = memnew(EditorHelp);
  1549. eh->set_name(cname);
  1550. tab_container->add_child(eh);
  1551. _go_to_tab(tab_container->get_tab_count() - 1);
  1552. eh->go_to_help(p_desc);
  1553. eh->connect("go_to_help", this, "_help_class_goto");
  1554. _update_script_names();
  1555. _save_layout();
  1556. }
  1557. void ScriptEditor::_update_selected_editor_menu() {
  1558. for (int i = 0; i < tab_container->get_child_count(); i++) {
  1559. bool current = tab_container->get_current_tab() == i;
  1560. ScriptEditorBase *se = Object::cast_to<ScriptEditorBase>(tab_container->get_child(i));
  1561. if (se && se->get_edit_menu()) {
  1562. if (current)
  1563. se->get_edit_menu()->show();
  1564. else
  1565. se->get_edit_menu()->hide();
  1566. }
  1567. }
  1568. EditorHelp *eh = Object::cast_to<EditorHelp>(tab_container->get_current_tab_control());
  1569. if (eh) {
  1570. script_search_menu->show();
  1571. } else {
  1572. script_search_menu->hide();
  1573. }
  1574. }
  1575. void ScriptEditor::_update_history_pos(int p_new_pos) {
  1576. Node *n = tab_container->get_current_tab_control();
  1577. if (Object::cast_to<ScriptEditorBase>(n)) {
  1578. history[history_pos].state = Object::cast_to<ScriptEditorBase>(n)->get_edit_state();
  1579. }
  1580. if (Object::cast_to<EditorHelp>(n)) {
  1581. history[history_pos].state = Object::cast_to<EditorHelp>(n)->get_scroll();
  1582. }
  1583. history_pos = p_new_pos;
  1584. tab_container->set_current_tab(history[history_pos].control->get_index());
  1585. n = history[history_pos].control;
  1586. if (Object::cast_to<ScriptEditorBase>(n)) {
  1587. Object::cast_to<ScriptEditorBase>(n)->set_edit_state(history[history_pos].state);
  1588. Object::cast_to<ScriptEditorBase>(n)->ensure_focus();
  1589. notify_script_changed(Object::cast_to<ScriptEditorBase>(n)->get_edited_script());
  1590. }
  1591. if (Object::cast_to<EditorHelp>(n)) {
  1592. Object::cast_to<EditorHelp>(n)->set_scroll(history[history_pos].state);
  1593. Object::cast_to<EditorHelp>(n)->set_focused();
  1594. }
  1595. n->set_meta("__editor_pass", ++edit_pass);
  1596. _update_script_names();
  1597. _update_history_arrows();
  1598. _update_selected_editor_menu();
  1599. }
  1600. void ScriptEditor::_history_forward() {
  1601. if (history_pos < history.size() - 1) {
  1602. _update_history_pos(history_pos + 1);
  1603. }
  1604. }
  1605. void ScriptEditor::_history_back() {
  1606. if (history_pos > 0) {
  1607. _update_history_pos(history_pos - 1);
  1608. }
  1609. }
  1610. Vector<Ref<Script> > ScriptEditor::get_open_scripts() const {
  1611. Vector<Ref<Script> > out_scripts = Vector<Ref<Script> >();
  1612. for (int i = 0; i < tab_container->get_child_count(); i++) {
  1613. ScriptEditorBase *se = Object::cast_to<ScriptEditorBase>(tab_container->get_child(i));
  1614. if (!se)
  1615. continue;
  1616. out_scripts.push_back(se->get_edited_script());
  1617. }
  1618. return out_scripts;
  1619. }
  1620. void ScriptEditor::set_scene_root_script(Ref<Script> p_script) {
  1621. bool open_dominant = EditorSettings::get_singleton()->get("text_editor/files/open_dominant_script_on_scene_change");
  1622. if (bool(EditorSettings::get_singleton()->get("text_editor/external/use_external_editor")))
  1623. return;
  1624. if (open_dominant && p_script.is_valid() && _can_open_in_editor(p_script.ptr())) {
  1625. edit(p_script);
  1626. }
  1627. }
  1628. bool ScriptEditor::script_goto_method(Ref<Script> p_script, const String &p_method) {
  1629. int line = p_script->get_member_line(p_method);
  1630. if (line == -1)
  1631. return false;
  1632. return edit(p_script, line, 0);
  1633. }
  1634. void ScriptEditor::set_live_auto_reload_running_scripts(bool p_enabled) {
  1635. auto_reload_running_scripts = p_enabled;
  1636. }
  1637. void ScriptEditor::_help_index(String p_text) {
  1638. help_index->popup();
  1639. }
  1640. void ScriptEditor::_help_search(String p_text) {
  1641. help_search_dialog->popup(p_text);
  1642. }
  1643. void ScriptEditor::_open_script_request(const String &p_path) {
  1644. Ref<Script> script = ResourceLoader::load(p_path);
  1645. if (script.is_valid()) {
  1646. script_editor->edit(script, false);
  1647. }
  1648. }
  1649. int ScriptEditor::script_editor_func_count = 0;
  1650. CreateScriptEditorFunc ScriptEditor::script_editor_funcs[ScriptEditor::SCRIPT_EDITOR_FUNC_MAX];
  1651. void ScriptEditor::register_create_script_editor_function(CreateScriptEditorFunc p_func) {
  1652. ERR_FAIL_COND(script_editor_func_count == SCRIPT_EDITOR_FUNC_MAX);
  1653. script_editor_funcs[script_editor_func_count++] = p_func;
  1654. }
  1655. void ScriptEditor::_script_changed() {
  1656. NodeDock::singleton->update_lists();
  1657. }
  1658. void ScriptEditor::_bind_methods() {
  1659. ClassDB::bind_method("_file_dialog_action", &ScriptEditor::_file_dialog_action);
  1660. ClassDB::bind_method("_tab_changed", &ScriptEditor::_tab_changed);
  1661. ClassDB::bind_method("_menu_option", &ScriptEditor::_menu_option);
  1662. ClassDB::bind_method("_close_current_tab", &ScriptEditor::_close_current_tab);
  1663. ClassDB::bind_method("_close_discard_current_tab", &ScriptEditor::_close_discard_current_tab);
  1664. ClassDB::bind_method("_close_docs_tab", &ScriptEditor::_close_docs_tab);
  1665. ClassDB::bind_method("_close_all_tabs", &ScriptEditor::_close_all_tabs);
  1666. ClassDB::bind_method("_open_recent_script", &ScriptEditor::_open_recent_script);
  1667. ClassDB::bind_method("_editor_play", &ScriptEditor::_editor_play);
  1668. ClassDB::bind_method("_editor_pause", &ScriptEditor::_editor_pause);
  1669. ClassDB::bind_method("_editor_stop", &ScriptEditor::_editor_stop);
  1670. ClassDB::bind_method("_add_callback", &ScriptEditor::_add_callback);
  1671. ClassDB::bind_method("_reload_scripts", &ScriptEditor::_reload_scripts);
  1672. ClassDB::bind_method("_resave_scripts", &ScriptEditor::_resave_scripts);
  1673. ClassDB::bind_method("_res_saved_callback", &ScriptEditor::_res_saved_callback);
  1674. ClassDB::bind_method("_goto_script_line", &ScriptEditor::_goto_script_line);
  1675. ClassDB::bind_method("_goto_script_line2", &ScriptEditor::_goto_script_line2);
  1676. ClassDB::bind_method("_help_search", &ScriptEditor::_help_search);
  1677. ClassDB::bind_method("_help_index", &ScriptEditor::_help_index);
  1678. ClassDB::bind_method("_save_history", &ScriptEditor::_save_history);
  1679. ClassDB::bind_method("_breaked", &ScriptEditor::_breaked);
  1680. ClassDB::bind_method("_show_debugger", &ScriptEditor::_show_debugger);
  1681. ClassDB::bind_method("_get_debug_tooltip", &ScriptEditor::_get_debug_tooltip);
  1682. ClassDB::bind_method("_autosave_scripts", &ScriptEditor::_autosave_scripts);
  1683. ClassDB::bind_method("_editor_settings_changed", &ScriptEditor::_editor_settings_changed);
  1684. ClassDB::bind_method("_update_script_names", &ScriptEditor::_update_script_names);
  1685. ClassDB::bind_method("_tree_changed", &ScriptEditor::_tree_changed);
  1686. ClassDB::bind_method("_members_overview_selected", &ScriptEditor::_members_overview_selected);
  1687. ClassDB::bind_method("_help_overview_selected", &ScriptEditor::_help_overview_selected);
  1688. ClassDB::bind_method("_script_selected", &ScriptEditor::_script_selected);
  1689. ClassDB::bind_method("_script_created", &ScriptEditor::_script_created);
  1690. ClassDB::bind_method("_script_split_dragged", &ScriptEditor::_script_split_dragged);
  1691. ClassDB::bind_method("_help_class_open", &ScriptEditor::_help_class_open);
  1692. ClassDB::bind_method("_help_class_goto", &ScriptEditor::_help_class_goto);
  1693. ClassDB::bind_method("_request_help", &ScriptEditor::_help_class_open);
  1694. ClassDB::bind_method("_history_forward", &ScriptEditor::_history_forward);
  1695. ClassDB::bind_method("_history_back", &ScriptEditor::_history_back);
  1696. ClassDB::bind_method("_live_auto_reload_running_scripts", &ScriptEditor::_live_auto_reload_running_scripts);
  1697. ClassDB::bind_method("_unhandled_input", &ScriptEditor::_unhandled_input);
  1698. ClassDB::bind_method("_script_changed", &ScriptEditor::_script_changed);
  1699. ClassDB::bind_method(D_METHOD("get_current_script"), &ScriptEditor::_get_current_script);
  1700. ClassDB::bind_method(D_METHOD("get_open_scripts"), &ScriptEditor::_get_open_scripts);
  1701. ADD_SIGNAL(MethodInfo("editor_script_changed", PropertyInfo(Variant::OBJECT, "script", PROPERTY_HINT_RESOURCE_TYPE, "Script")));
  1702. ADD_SIGNAL(MethodInfo("script_close", PropertyInfo(Variant::OBJECT, "script", PROPERTY_HINT_RESOURCE_TYPE, "Script")));
  1703. }
  1704. ScriptEditor::ScriptEditor(EditorNode *p_editor) {
  1705. current_theme = "";
  1706. completion_cache = memnew(EditorScriptCodeCompletionCache);
  1707. restoring_layout = false;
  1708. waiting_update_names = false;
  1709. pending_auto_reload = false;
  1710. auto_reload_running_scripts = false;
  1711. members_overview_enabled = true;
  1712. help_overview_enabled = true;
  1713. editor = p_editor;
  1714. VBoxContainer *main_container = memnew(VBoxContainer);
  1715. add_child(main_container);
  1716. menu_hb = memnew(HBoxContainer);
  1717. main_container->add_child(menu_hb);
  1718. script_split = memnew(HSplitContainer);
  1719. main_container->add_child(script_split);
  1720. script_split->set_v_size_flags(SIZE_EXPAND_FILL);
  1721. list_split = memnew(VSplitContainer);
  1722. script_split->add_child(list_split);
  1723. list_split->set_v_size_flags(SIZE_EXPAND_FILL);
  1724. script_list = memnew(ItemList);
  1725. list_split->add_child(script_list);
  1726. script_list->set_custom_minimum_size(Size2(150 * EDSCALE, 100)); //need to give a bit of limit to avoid it from disappearing
  1727. script_list->set_v_size_flags(SIZE_EXPAND_FILL);
  1728. script_split->set_split_offset(140);
  1729. //list_split->set_split_offset(500);
  1730. members_overview = memnew(ItemList);
  1731. list_split->add_child(members_overview);
  1732. members_overview->set_custom_minimum_size(Size2(0, 100)); //need to give a bit of limit to avoid it from disappearing
  1733. members_overview->set_v_size_flags(SIZE_EXPAND_FILL);
  1734. help_overview = memnew(ItemList);
  1735. list_split->add_child(help_overview);
  1736. help_overview->set_custom_minimum_size(Size2(0, 100)); //need to give a bit of limit to avoid it from disappearing
  1737. help_overview->set_v_size_flags(SIZE_EXPAND_FILL);
  1738. tab_container = memnew(TabContainer);
  1739. tab_container->set_tabs_visible(false);
  1740. script_split->add_child(tab_container);
  1741. tab_container->set_h_size_flags(SIZE_EXPAND_FILL);
  1742. ED_SHORTCUT("script_editor/next_script", TTR("Next script"), KEY_MASK_CMD | KEY_MASK_SHIFT | KEY_GREATER);
  1743. ED_SHORTCUT("script_editor/prev_script", TTR("Previous script"), KEY_MASK_CMD | KEY_LESS);
  1744. set_process_unhandled_input(true);
  1745. file_menu = memnew(MenuButton);
  1746. menu_hb->add_child(file_menu);
  1747. file_menu->set_text(TTR("File"));
  1748. file_menu->get_popup()->add_shortcut(ED_SHORTCUT("script_editor/new", TTR("New")), FILE_NEW);
  1749. file_menu->get_popup()->add_shortcut(ED_SHORTCUT("script_editor/open", TTR("Open")), FILE_OPEN);
  1750. file_menu->get_popup()->add_submenu_item(TTR("Open Recent"), "RecentScripts", FILE_OPEN_RECENT);
  1751. recent_scripts = memnew(PopupMenu);
  1752. recent_scripts->set_name("RecentScripts");
  1753. file_menu->get_popup()->add_child(recent_scripts);
  1754. recent_scripts->connect("id_pressed", this, "_open_recent_script");
  1755. _update_recent_scripts();
  1756. file_menu->get_popup()->add_separator();
  1757. file_menu->get_popup()->add_shortcut(ED_SHORTCUT("script_editor/save", TTR("Save"), KEY_MASK_ALT | KEY_MASK_CMD | KEY_S), FILE_SAVE);
  1758. file_menu->get_popup()->add_shortcut(ED_SHORTCUT("script_editor/save_as", TTR("Save As..")), FILE_SAVE_AS);
  1759. file_menu->get_popup()->add_shortcut(ED_SHORTCUT("script_editor/save_all", TTR("Save All"), KEY_MASK_CMD | KEY_MASK_SHIFT | KEY_MASK_ALT | KEY_S), FILE_SAVE_ALL);
  1760. file_menu->get_popup()->add_separator();
  1761. file_menu->get_popup()->add_shortcut(ED_SHORTCUT("script_editor/reload_script_soft", TTR("Soft Reload Script"), KEY_MASK_CMD | KEY_MASK_SHIFT | KEY_R), FILE_TOOL_RELOAD_SOFT);
  1762. file_menu->get_popup()->add_separator();
  1763. file_menu->get_popup()->add_shortcut(ED_SHORTCUT("script_editor/history_previous", TTR("History Prev"), KEY_MASK_ALT | KEY_LEFT), WINDOW_PREV);
  1764. file_menu->get_popup()->add_shortcut(ED_SHORTCUT("script_editor/history_next", TTR("History Next"), KEY_MASK_ALT | KEY_RIGHT), WINDOW_NEXT);
  1765. file_menu->get_popup()->add_separator();
  1766. file_menu->get_popup()->add_shortcut(ED_SHORTCUT("script_editor/import_theme", TTR("Import Theme")), FILE_IMPORT_THEME);
  1767. file_menu->get_popup()->add_shortcut(ED_SHORTCUT("script_editor/reload_theme", TTR("Reload Theme")), FILE_RELOAD_THEME);
  1768. file_menu->get_popup()->add_shortcut(ED_SHORTCUT("script_editor/save_theme", TTR("Save Theme")), FILE_SAVE_THEME);
  1769. file_menu->get_popup()->add_shortcut(ED_SHORTCUT("script_editor/save_theme_as", TTR("Save Theme As")), FILE_SAVE_THEME_AS);
  1770. file_menu->get_popup()->add_separator();
  1771. file_menu->get_popup()->add_shortcut(ED_SHORTCUT("script_editor/close_docs", TTR("Close Docs")), CLOSE_DOCS);
  1772. file_menu->get_popup()->add_shortcut(ED_SHORTCUT("script_editor/close_file", TTR("Close"), KEY_MASK_CMD | KEY_W), FILE_CLOSE);
  1773. file_menu->get_popup()->add_shortcut(ED_SHORTCUT("script_editor/close_all", TTR("Close All")), CLOSE_ALL);
  1774. file_menu->get_popup()->add_separator();
  1775. file_menu->get_popup()->add_shortcut(ED_SHORTCUT("script_editor/run_file", TTR("Run"), KEY_MASK_CMD | KEY_MASK_SHIFT | KEY_X), FILE_RUN);
  1776. file_menu->get_popup()->add_separator();
  1777. file_menu->get_popup()->add_shortcut(ED_SHORTCUT("script_editor/toggle_scripts_panel", TTR("Toggle Scripts Panel"), KEY_MASK_CMD | KEY_BACKSLASH), TOGGLE_SCRIPTS_PANEL);
  1778. file_menu->get_popup()->connect("id_pressed", this, "_menu_option");
  1779. script_search_menu = memnew(MenuButton);
  1780. menu_hb->add_child(script_search_menu);
  1781. script_search_menu->set_text(TTR("Search"));
  1782. script_search_menu->get_popup()->add_shortcut(ED_SHORTCUT("script_editor/find", TTR("Find.."), KEY_MASK_CMD | KEY_F), HELP_SEARCH_FIND);
  1783. script_search_menu->get_popup()->add_shortcut(ED_SHORTCUT("script_editor/find_next", TTR("Find Next"), KEY_F3), HELP_SEARCH_FIND_NEXT);
  1784. script_search_menu->get_popup()->connect("id_pressed", this, "_menu_option");
  1785. script_search_menu->hide();
  1786. debug_menu = memnew(MenuButton);
  1787. menu_hb->add_child(debug_menu);
  1788. debug_menu->set_text(TTR("Debug"));
  1789. debug_menu->get_popup()->add_shortcut(ED_SHORTCUT("debugger/step_over", TTR("Step Over"), KEY_F10), DEBUG_NEXT);
  1790. debug_menu->get_popup()->add_shortcut(ED_SHORTCUT("debugger/step_into", TTR("Step Into"), KEY_F11), DEBUG_STEP);
  1791. debug_menu->get_popup()->add_separator();
  1792. debug_menu->get_popup()->add_shortcut(ED_SHORTCUT("debugger/break", TTR("Break")), DEBUG_BREAK);
  1793. debug_menu->get_popup()->add_shortcut(ED_SHORTCUT("debugger/continue", TTR("Continue")), DEBUG_CONTINUE);
  1794. debug_menu->get_popup()->add_separator();
  1795. //debug_menu->get_popup()->add_check_item("Show Debugger",DEBUG_SHOW);
  1796. debug_menu->get_popup()->add_check_shortcut(ED_SHORTCUT("debugger/keep_debugger_open", TTR("Keep Debugger Open")), DEBUG_SHOW_KEEP_OPEN);
  1797. debug_menu->get_popup()->add_check_shortcut(ED_SHORTCUT("debugger/debug_with_exteral_editor", TTR("Debug with external editor")), DEBUG_WITH_EXTERNAL_EDITOR);
  1798. debug_menu->get_popup()->connect("id_pressed", this, "_menu_option");
  1799. debug_menu->get_popup()->set_item_disabled(debug_menu->get_popup()->get_item_index(DEBUG_NEXT), true);
  1800. debug_menu->get_popup()->set_item_disabled(debug_menu->get_popup()->get_item_index(DEBUG_STEP), true);
  1801. debug_menu->get_popup()->set_item_disabled(debug_menu->get_popup()->get_item_index(DEBUG_BREAK), true);
  1802. debug_menu->get_popup()->set_item_disabled(debug_menu->get_popup()->get_item_index(DEBUG_CONTINUE), true);
  1803. menu_hb->add_spacer();
  1804. script_icon = memnew(TextureRect);
  1805. menu_hb->add_child(script_icon);
  1806. script_name_label = memnew(Label);
  1807. menu_hb->add_child(script_name_label);
  1808. script_icon->hide();
  1809. script_name_label->hide();
  1810. menu_hb->add_spacer();
  1811. site_search = memnew(ToolButton);
  1812. site_search->set_text(TTR("Online Docs"));
  1813. site_search->connect("pressed", this, "_menu_option", varray(SEARCH_WEBSITE));
  1814. menu_hb->add_child(site_search);
  1815. site_search->set_tooltip(TTR("Open Godot online documentation"));
  1816. class_search = memnew(ToolButton);
  1817. class_search->set_text(TTR("Classes"));
  1818. class_search->connect("pressed", this, "_menu_option", varray(SEARCH_CLASSES));
  1819. menu_hb->add_child(class_search);
  1820. class_search->set_tooltip(TTR("Search the class hierarchy."));
  1821. help_search = memnew(ToolButton);
  1822. help_search->set_text(TTR("Search Help"));
  1823. help_search->connect("pressed", this, "_menu_option", varray(SEARCH_HELP));
  1824. menu_hb->add_child(help_search);
  1825. help_search->set_tooltip(TTR("Search the reference documentation."));
  1826. menu_hb->add_child(memnew(VSeparator));
  1827. script_back = memnew(ToolButton);
  1828. script_back->connect("pressed", this, "_history_back");
  1829. menu_hb->add_child(script_back);
  1830. script_back->set_disabled(true);
  1831. script_back->set_tooltip(TTR("Go to previous edited document."));
  1832. script_forward = memnew(ToolButton);
  1833. script_forward->connect("pressed", this, "_history_forward");
  1834. menu_hb->add_child(script_forward);
  1835. script_forward->set_disabled(true);
  1836. script_forward->set_tooltip(TTR("Go to next edited document."));
  1837. tab_container->connect("tab_changed", this, "_tab_changed");
  1838. erase_tab_confirm = memnew(ConfirmationDialog);
  1839. erase_tab_confirm->get_ok()->set_text(TTR("Save"));
  1840. erase_tab_confirm->add_button(TTR("Discard"), OS::get_singleton()->get_swap_ok_cancel(), "discard");
  1841. erase_tab_confirm->connect("confirmed", this, "_close_current_tab");
  1842. erase_tab_confirm->connect("custom_action", this, "_close_discard_current_tab");
  1843. add_child(erase_tab_confirm);
  1844. script_create_dialog = memnew(ScriptCreateDialog);
  1845. script_create_dialog->set_title(TTR("Create Script"));
  1846. add_child(script_create_dialog);
  1847. script_create_dialog->connect("script_created", this, "_script_created");
  1848. file_dialog_option = -1;
  1849. file_dialog = memnew(EditorFileDialog);
  1850. add_child(file_dialog);
  1851. file_dialog->connect("file_selected", this, "_file_dialog_action");
  1852. debugger = memnew(ScriptEditorDebugger(editor));
  1853. debugger->connect("goto_script_line", this, "_goto_script_line");
  1854. debugger->connect("show_debugger", this, "_show_debugger");
  1855. disk_changed = memnew(ConfirmationDialog);
  1856. {
  1857. VBoxContainer *vbc = memnew(VBoxContainer);
  1858. disk_changed->add_child(vbc);
  1859. //disk_changed->set_child_rect(vbc);
  1860. Label *dl = memnew(Label);
  1861. dl->set_text(TTR("The following files are newer on disk.\nWhat action should be taken?:"));
  1862. vbc->add_child(dl);
  1863. disk_changed_list = memnew(Tree);
  1864. vbc->add_child(disk_changed_list);
  1865. disk_changed_list->set_v_size_flags(SIZE_EXPAND_FILL);
  1866. disk_changed->connect("confirmed", this, "_reload_scripts");
  1867. disk_changed->get_ok()->set_text(TTR("Reload"));
  1868. disk_changed->add_button(TTR("Resave"), !OS::get_singleton()->get_swap_ok_cancel(), "resave");
  1869. disk_changed->connect("custom_action", this, "_resave_scripts");
  1870. }
  1871. add_child(disk_changed);
  1872. script_editor = this;
  1873. Button *db = EditorNode::get_singleton()->add_bottom_panel_item(TTR("Debugger"), debugger);
  1874. debugger->set_tool_button(db);
  1875. debugger->connect("breaked", this, "_breaked");
  1876. autosave_timer = memnew(Timer);
  1877. autosave_timer->set_one_shot(false);
  1878. add_child(autosave_timer);
  1879. grab_focus_block = false;
  1880. help_search_dialog = memnew(EditorHelpSearch);
  1881. add_child(help_search_dialog);
  1882. help_search_dialog->connect("go_to_help", this, "_help_class_goto");
  1883. help_index = memnew(EditorHelpIndex);
  1884. add_child(help_index);
  1885. help_index->connect("open_class", this, "_help_class_open");
  1886. history_pos = -1;
  1887. //debugger_gui->hide();
  1888. edit_pass = 0;
  1889. trim_trailing_whitespace_on_save = false;
  1890. convert_indent_on_save = false;
  1891. use_space_indentation = false;
  1892. ScriptServer::edit_request_func = _open_script_request;
  1893. add_style_override("panel", editor->get_gui_base()->get_stylebox("ScriptEditorPanel", "EditorStyles"));
  1894. tab_container->add_style_override("panel", editor->get_gui_base()->get_stylebox("ScriptEditor", "EditorStyles"));
  1895. }
  1896. ScriptEditor::~ScriptEditor() {
  1897. memdelete(completion_cache);
  1898. }
  1899. void ScriptEditorPlugin::edit(Object *p_object) {
  1900. if (!Object::cast_to<Script>(p_object))
  1901. return;
  1902. script_editor->edit(Object::cast_to<Script>(p_object));
  1903. }
  1904. bool ScriptEditorPlugin::handles(Object *p_object) const {
  1905. if (Object::cast_to<Script>(p_object)) {
  1906. bool valid = _can_open_in_editor(Object::cast_to<Script>(p_object));
  1907. if (!valid) { //user tried to open it by clicking
  1908. EditorNode::get_singleton()->show_warning(TTR("Built-in scripts can only be edited when the scene they belong to is loaded"));
  1909. }
  1910. return valid;
  1911. }
  1912. return p_object->is_class("Script");
  1913. }
  1914. void ScriptEditorPlugin::make_visible(bool p_visible) {
  1915. if (p_visible) {
  1916. script_editor->show();
  1917. script_editor->set_process(true);
  1918. script_editor->ensure_select_current();
  1919. } else {
  1920. script_editor->hide();
  1921. script_editor->set_process(false);
  1922. }
  1923. }
  1924. void ScriptEditorPlugin::selected_notify() {
  1925. script_editor->ensure_select_current();
  1926. }
  1927. void ScriptEditorPlugin::save_external_data() {
  1928. script_editor->save_all_scripts();
  1929. }
  1930. void ScriptEditorPlugin::apply_changes() {
  1931. script_editor->apply_scripts();
  1932. }
  1933. void ScriptEditorPlugin::restore_global_state() {
  1934. }
  1935. void ScriptEditorPlugin::save_global_state() {
  1936. }
  1937. void ScriptEditorPlugin::set_window_layout(Ref<ConfigFile> p_layout) {
  1938. script_editor->set_window_layout(p_layout);
  1939. }
  1940. void ScriptEditorPlugin::get_window_layout(Ref<ConfigFile> p_layout) {
  1941. script_editor->get_window_layout(p_layout);
  1942. }
  1943. void ScriptEditorPlugin::get_breakpoints(List<String> *p_breakpoints) {
  1944. return script_editor->get_breakpoints(p_breakpoints);
  1945. }
  1946. void ScriptEditorPlugin::edited_scene_changed() {
  1947. script_editor->edited_scene_changed();
  1948. }
  1949. ScriptEditorPlugin::ScriptEditorPlugin(EditorNode *p_node) {
  1950. editor = p_node;
  1951. script_editor = memnew(ScriptEditor(p_node));
  1952. editor->get_viewport()->add_child(script_editor);
  1953. script_editor->set_v_size_flags(Control::SIZE_EXPAND_FILL);
  1954. script_editor->hide();
  1955. EDITOR_DEF("text_editor/files/auto_reload_scripts_on_external_change", true);
  1956. ScriptServer::set_reload_scripts_on_save(EDITOR_DEF("text_editor/files/auto_reload_and_parse_scripts_on_save", true));
  1957. EDITOR_DEF("text_editor/files/open_dominant_script_on_scene_change", true);
  1958. EDITOR_DEF("text_editor/external/use_external_editor", false);
  1959. EDITOR_DEF("text_editor/external/exec_path", "");
  1960. EDITOR_DEF("text_editor/open_scripts/script_temperature_enabled", true);
  1961. EDITOR_DEF("text_editor/open_scripts/highlight_current_script", true);
  1962. EDITOR_DEF("text_editor/open_scripts/script_temperature_history_size", 15);
  1963. EDITOR_DEF("text_editor/open_scripts/current_script_background_color", Color(1, 1, 1, 0.5));
  1964. EDITOR_DEF("text_editor/open_scripts/group_help_pages", true);
  1965. EditorSettings::get_singleton()->add_property_hint(PropertyInfo(Variant::INT, "text_editor/open_scripts/sort_scripts_by", PROPERTY_HINT_ENUM, "Name,Path"));
  1966. EDITOR_DEF("text_editor/open_scripts/sort_scripts_by", 0);
  1967. EditorSettings::get_singleton()->add_property_hint(PropertyInfo(Variant::INT, "text_editor/open_scripts/list_script_names_as", PROPERTY_HINT_ENUM, "Name,Parent Directory And Name,Full Path"));
  1968. EDITOR_DEF("text_editor/open_scripts/list_script_names_as", 0);
  1969. EditorSettings::get_singleton()->add_property_hint(PropertyInfo(Variant::STRING, "text_editor/external/exec_path", PROPERTY_HINT_GLOBAL_FILE));
  1970. EDITOR_DEF("text_editor/external/exec_flags", "");
  1971. ED_SHORTCUT("script_editor/open_recent", TTR("Open Recent"), KEY_MASK_CMD | KEY_MASK_SHIFT | KEY_T);
  1972. ED_SHORTCUT("script_editor/clear_recent", TTR("Clear Recent Files"));
  1973. }
  1974. ScriptEditorPlugin::~ScriptEditorPlugin() {
  1975. }