script_editor_plugin.cpp 115 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546
  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-2021 Juan Linietsky, Ariel Manzur. */
  9. /* Copyright (c) 2014-2021 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/os/file_access.h"
  33. #include "core/os/input.h"
  34. #include "core/os/keyboard.h"
  35. #include "core/os/os.h"
  36. #include "core/project_settings.h"
  37. #include "editor/editor_node.h"
  38. #include "editor/editor_run_script.h"
  39. #include "editor/editor_scale.h"
  40. #include "editor/editor_settings.h"
  41. #include "editor/filesystem_dock.h"
  42. #include "editor/find_in_files.h"
  43. #include "editor/node_dock.h"
  44. #include "editor/plugins/shader_editor_plugin.h"
  45. #include "editor/script_editor_debugger.h"
  46. #include "scene/main/viewport.h"
  47. #include "scene/scene_string_names.h"
  48. #include "script_text_editor.h"
  49. #include "text_editor.h"
  50. /*** SCRIPT EDITOR ****/
  51. void ScriptEditorBase::_bind_methods() {
  52. ADD_SIGNAL(MethodInfo("name_changed"));
  53. ADD_SIGNAL(MethodInfo("edited_script_changed"));
  54. ADD_SIGNAL(MethodInfo("request_help", PropertyInfo(Variant::STRING, "topic")));
  55. ADD_SIGNAL(MethodInfo("request_open_script_at_line", PropertyInfo(Variant::OBJECT, "script"), PropertyInfo(Variant::INT, "line")));
  56. ADD_SIGNAL(MethodInfo("request_save_history"));
  57. ADD_SIGNAL(MethodInfo("go_to_help", PropertyInfo(Variant::STRING, "what")));
  58. // TODO: This signal is no use for VisualScript.
  59. ADD_SIGNAL(MethodInfo("search_in_files_requested", PropertyInfo(Variant::STRING, "text")));
  60. }
  61. static bool _is_built_in_script(Script *p_script) {
  62. String path = p_script->get_path();
  63. return path.find("::") != -1;
  64. }
  65. class EditorScriptCodeCompletionCache : public ScriptCodeCompletionCache {
  66. struct Cache {
  67. uint64_t time_loaded;
  68. RES cache;
  69. };
  70. Map<String, Cache> cached;
  71. public:
  72. uint64_t max_time_cache;
  73. int max_cache_size;
  74. void cleanup() {
  75. List<Map<String, Cache>::Element *> to_clean;
  76. Map<String, Cache>::Element *I = cached.front();
  77. while (I) {
  78. if ((OS::get_singleton()->get_ticks_msec() - I->get().time_loaded) > max_time_cache) {
  79. to_clean.push_back(I);
  80. }
  81. I = I->next();
  82. }
  83. while (to_clean.front()) {
  84. cached.erase(to_clean.front()->get());
  85. to_clean.pop_front();
  86. }
  87. }
  88. virtual RES get_cached_resource(const String &p_path) {
  89. Map<String, Cache>::Element *E = cached.find(p_path);
  90. if (!E) {
  91. Cache c;
  92. c.cache = ResourceLoader::load(p_path);
  93. E = cached.insert(p_path, c);
  94. }
  95. E->get().time_loaded = OS::get_singleton()->get_ticks_msec();
  96. if (cached.size() > max_cache_size) {
  97. uint64_t older;
  98. Map<String, Cache>::Element *O = cached.front();
  99. older = O->get().time_loaded;
  100. Map<String, Cache>::Element *I = O;
  101. while (I) {
  102. if (I->get().time_loaded < older) {
  103. older = I->get().time_loaded;
  104. O = I;
  105. }
  106. I = I->next();
  107. }
  108. if (O != E) { //should never happen..
  109. cached.erase(O);
  110. }
  111. }
  112. return E->get().cache;
  113. }
  114. EditorScriptCodeCompletionCache() {
  115. max_cache_size = 128;
  116. max_time_cache = 5 * 60 * 1000; //minutes, five
  117. }
  118. virtual ~EditorScriptCodeCompletionCache() {}
  119. };
  120. void ScriptEditorQuickOpen::popup_dialog(const Vector<String> &p_functions, bool p_dontclear) {
  121. popup_centered_ratio(0.6);
  122. if (p_dontclear) {
  123. search_box->select_all();
  124. } else {
  125. search_box->clear();
  126. }
  127. search_box->grab_focus();
  128. functions = p_functions;
  129. _update_search();
  130. }
  131. void ScriptEditorQuickOpen::_text_changed(const String &p_newtext) {
  132. _update_search();
  133. }
  134. void ScriptEditorQuickOpen::_sbox_input(const Ref<InputEvent> &p_ie) {
  135. Ref<InputEventKey> k = p_ie;
  136. if (k.is_valid() && (k->get_scancode() == KEY_UP ||
  137. k->get_scancode() == KEY_DOWN ||
  138. k->get_scancode() == KEY_PAGEUP ||
  139. k->get_scancode() == KEY_PAGEDOWN)) {
  140. search_options->call("_gui_input", k);
  141. search_box->accept_event();
  142. }
  143. }
  144. void ScriptEditorQuickOpen::_update_search() {
  145. search_options->clear();
  146. TreeItem *root = search_options->create_item();
  147. for (int i = 0; i < functions.size(); i++) {
  148. String file = functions[i];
  149. if ((search_box->get_text() == "" || file.findn(search_box->get_text()) != -1)) {
  150. TreeItem *ti = search_options->create_item(root);
  151. ti->set_text(0, file);
  152. if (root->get_children() == ti) {
  153. ti->select(0);
  154. }
  155. }
  156. }
  157. get_ok()->set_disabled(root->get_children() == nullptr);
  158. }
  159. void ScriptEditorQuickOpen::_confirmed() {
  160. TreeItem *ti = search_options->get_selected();
  161. if (!ti) {
  162. return;
  163. }
  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. search_box->set_clear_button_enabled(true);
  173. FALLTHROUGH;
  174. }
  175. case NOTIFICATION_THEME_CHANGED: {
  176. search_box->set_right_icon(get_icon("Search", "EditorIcons"));
  177. } break;
  178. case NOTIFICATION_EXIT_TREE: {
  179. disconnect("confirmed", this, "_confirmed");
  180. } break;
  181. }
  182. }
  183. void ScriptEditorQuickOpen::_bind_methods() {
  184. ClassDB::bind_method(D_METHOD("_text_changed"), &ScriptEditorQuickOpen::_text_changed);
  185. ClassDB::bind_method(D_METHOD("_confirmed"), &ScriptEditorQuickOpen::_confirmed);
  186. ClassDB::bind_method(D_METHOD("_sbox_input"), &ScriptEditorQuickOpen::_sbox_input);
  187. ADD_SIGNAL(MethodInfo("goto_line", PropertyInfo(Variant::INT, "line")));
  188. }
  189. ScriptEditorQuickOpen::ScriptEditorQuickOpen() {
  190. VBoxContainer *vbc = memnew(VBoxContainer);
  191. add_child(vbc);
  192. search_box = memnew(LineEdit);
  193. vbc->add_margin_child(TTR("Search:"), search_box);
  194. search_box->connect("text_changed", this, "_text_changed");
  195. search_box->connect("gui_input", this, "_sbox_input");
  196. search_options = memnew(Tree);
  197. vbc->add_margin_child(TTR("Matches:"), search_options, true);
  198. get_ok()->set_text(TTR("Open"));
  199. get_ok()->set_disabled(true);
  200. register_text_enter(search_box);
  201. set_hide_on_ok(false);
  202. search_options->connect("item_activated", this, "_confirmed");
  203. search_options->set_hide_root(true);
  204. search_options->set_hide_folding(true);
  205. search_options->add_constant_override("draw_guides", 1);
  206. }
  207. /////////////////////////////////
  208. ScriptEditor *ScriptEditor::script_editor = nullptr;
  209. /*** SCRIPT EDITOR ******/
  210. String ScriptEditor::_get_debug_tooltip(const String &p_text, Node *_se) {
  211. String val = debugger->get_var_value(p_text);
  212. if (val != String()) {
  213. return p_text + ": " + val;
  214. } else {
  215. return String();
  216. }
  217. }
  218. void ScriptEditor::_breaked(bool p_breaked, bool p_can_debug) {
  219. if (bool(EditorSettings::get_singleton()->get("text_editor/external/use_external_editor"))) {
  220. return;
  221. }
  222. debug_menu->get_popup()->set_item_disabled(debug_menu->get_popup()->get_item_index(DEBUG_NEXT), !(p_breaked && p_can_debug));
  223. debug_menu->get_popup()->set_item_disabled(debug_menu->get_popup()->get_item_index(DEBUG_STEP), !(p_breaked && p_can_debug));
  224. debug_menu->get_popup()->set_item_disabled(debug_menu->get_popup()->get_item_index(DEBUG_BREAK), p_breaked);
  225. debug_menu->get_popup()->set_item_disabled(debug_menu->get_popup()->get_item_index(DEBUG_CONTINUE), !p_breaked);
  226. for (int i = 0; i < tab_container->get_child_count(); i++) {
  227. ScriptEditorBase *se = Object::cast_to<ScriptEditorBase>(tab_container->get_child(i));
  228. if (!se) {
  229. continue;
  230. }
  231. se->set_debugger_active(p_breaked);
  232. }
  233. }
  234. void ScriptEditor::_show_debugger(bool p_show) {
  235. }
  236. void ScriptEditor::_script_created(Ref<Script> p_script) {
  237. editor->push_item(p_script.operator->());
  238. }
  239. void ScriptEditor::_goto_script_line2(int p_line) {
  240. ScriptEditorBase *current = _get_current_editor();
  241. if (current) {
  242. current->goto_line(p_line);
  243. }
  244. }
  245. void ScriptEditor::_goto_script_line(REF p_script, int p_line) {
  246. Ref<Script> script = Object::cast_to<Script>(*p_script);
  247. if (script.is_valid() && (script->has_source_code() || script->get_path().is_resource_file())) {
  248. if (edit(p_script, p_line, 0)) {
  249. editor->push_item(p_script.ptr());
  250. ScriptEditorBase *current = _get_current_editor();
  251. if (ScriptTextEditor *script_text_editor = Object::cast_to<ScriptTextEditor>(current)) {
  252. script_text_editor->goto_line_centered(p_line);
  253. } else if (current) {
  254. current->goto_line(p_line, true);
  255. }
  256. }
  257. }
  258. }
  259. void ScriptEditor::_set_execution(REF p_script, int p_line) {
  260. Ref<Script> script = Object::cast_to<Script>(*p_script);
  261. if (script.is_valid() && (script->has_source_code() || script->get_path().is_resource_file())) {
  262. for (int i = 0; i < tab_container->get_child_count(); i++) {
  263. ScriptEditorBase *se = Object::cast_to<ScriptEditorBase>(tab_container->get_child(i));
  264. if (!se) {
  265. continue;
  266. }
  267. if ((script != nullptr && se->get_edited_resource() == p_script) || se->get_edited_resource()->get_path() == script->get_path()) {
  268. se->set_executing_line(p_line);
  269. }
  270. }
  271. }
  272. }
  273. void ScriptEditor::_clear_execution(REF p_script) {
  274. Ref<Script> script = Object::cast_to<Script>(*p_script);
  275. if (script.is_valid() && (script->has_source_code() || script->get_path().is_resource_file())) {
  276. for (int i = 0; i < tab_container->get_child_count(); i++) {
  277. ScriptEditorBase *se = Object::cast_to<ScriptEditorBase>(tab_container->get_child(i));
  278. if (!se) {
  279. continue;
  280. }
  281. if ((script != nullptr && se->get_edited_resource() == p_script) || se->get_edited_resource()->get_path() == script->get_path()) {
  282. se->clear_executing_line();
  283. }
  284. }
  285. }
  286. }
  287. ScriptEditorBase *ScriptEditor::_get_current_editor() const {
  288. int selected = tab_container->get_current_tab();
  289. if (selected < 0 || selected >= tab_container->get_child_count()) {
  290. return nullptr;
  291. }
  292. return Object::cast_to<ScriptEditorBase>(tab_container->get_child(selected));
  293. }
  294. void ScriptEditor::_update_history_arrows() {
  295. script_back->set_disabled(history_pos <= 0);
  296. script_forward->set_disabled(history_pos >= history.size() - 1);
  297. }
  298. void ScriptEditor::_save_history() {
  299. if (history_pos >= 0 && history_pos < history.size() && history[history_pos].control == tab_container->get_current_tab_control()) {
  300. Node *n = tab_container->get_current_tab_control();
  301. if (Object::cast_to<ScriptEditorBase>(n)) {
  302. history.write[history_pos].state = Object::cast_to<ScriptEditorBase>(n)->get_edit_state();
  303. }
  304. if (Object::cast_to<EditorHelp>(n)) {
  305. history.write[history_pos].state = Object::cast_to<EditorHelp>(n)->get_scroll();
  306. }
  307. }
  308. history.resize(history_pos + 1);
  309. ScriptHistory sh;
  310. sh.control = tab_container->get_current_tab_control();
  311. sh.state = Variant();
  312. history.push_back(sh);
  313. history_pos++;
  314. _update_history_arrows();
  315. }
  316. void ScriptEditor::_go_to_tab(int p_idx) {
  317. ScriptEditorBase *current = _get_current_editor();
  318. if (current) {
  319. if (current->is_unsaved()) {
  320. current->apply_code();
  321. }
  322. }
  323. Control *c = Object::cast_to<Control>(tab_container->get_child(p_idx));
  324. if (!c) {
  325. return;
  326. }
  327. if (history_pos >= 0 && history_pos < history.size() && history[history_pos].control == tab_container->get_current_tab_control()) {
  328. Node *n = tab_container->get_current_tab_control();
  329. if (Object::cast_to<ScriptEditorBase>(n)) {
  330. history.write[history_pos].state = Object::cast_to<ScriptEditorBase>(n)->get_edit_state();
  331. }
  332. if (Object::cast_to<EditorHelp>(n)) {
  333. history.write[history_pos].state = Object::cast_to<EditorHelp>(n)->get_scroll();
  334. }
  335. }
  336. history.resize(history_pos + 1);
  337. ScriptHistory sh;
  338. sh.control = c;
  339. sh.state = Variant();
  340. history.push_back(sh);
  341. history_pos++;
  342. tab_container->set_current_tab(p_idx);
  343. c = tab_container->get_current_tab_control();
  344. if (Object::cast_to<ScriptEditorBase>(c)) {
  345. script_name_label->set_text(Object::cast_to<ScriptEditorBase>(c)->get_name());
  346. script_icon->set_texture(Object::cast_to<ScriptEditorBase>(c)->get_icon());
  347. if (is_visible_in_tree()) {
  348. Object::cast_to<ScriptEditorBase>(c)->ensure_focus();
  349. }
  350. Ref<Script> script = Object::cast_to<ScriptEditorBase>(c)->get_edited_resource();
  351. if (script != nullptr) {
  352. notify_script_changed(script);
  353. }
  354. Object::cast_to<ScriptEditorBase>(c)->validate();
  355. }
  356. if (Object::cast_to<EditorHelp>(c)) {
  357. script_name_label->set_text(Object::cast_to<EditorHelp>(c)->get_class());
  358. script_icon->set_texture(get_icon("Help", "EditorIcons"));
  359. if (is_visible_in_tree()) {
  360. Object::cast_to<EditorHelp>(c)->set_focused();
  361. }
  362. }
  363. c->set_meta("__editor_pass", ++edit_pass);
  364. _update_history_arrows();
  365. _update_script_colors();
  366. _update_members_overview();
  367. _update_help_overview();
  368. _update_selected_editor_menu();
  369. _update_members_overview_visibility();
  370. _update_help_overview_visibility();
  371. }
  372. void ScriptEditor::_add_recent_script(String p_path) {
  373. if (p_path.empty()) {
  374. return;
  375. }
  376. Array rc = EditorSettings::get_singleton()->get_project_metadata("recent_files", "scripts", Array());
  377. if (rc.find(p_path) != -1) {
  378. rc.erase(p_path);
  379. }
  380. rc.push_front(p_path);
  381. if (rc.size() > 10) {
  382. rc.resize(10);
  383. }
  384. EditorSettings::get_singleton()->set_project_metadata("recent_files", "scripts", rc);
  385. _update_recent_scripts();
  386. }
  387. void ScriptEditor::_update_recent_scripts() {
  388. Array rc = EditorSettings::get_singleton()->get_project_metadata("recent_files", "scripts", Array());
  389. recent_scripts->clear();
  390. String path;
  391. for (int i = 0; i < rc.size(); i++) {
  392. path = rc[i];
  393. recent_scripts->add_item(path.replace("res://", ""));
  394. }
  395. recent_scripts->add_separator();
  396. recent_scripts->add_shortcut(ED_SHORTCUT("script_editor/clear_recent", TTR("Clear Recent Files")));
  397. recent_scripts->set_as_minsize();
  398. }
  399. void ScriptEditor::_open_recent_script(int p_idx) {
  400. // clear button
  401. if (p_idx == recent_scripts->get_item_count() - 1) {
  402. EditorSettings::get_singleton()->set_project_metadata("recent_files", "scripts", Array());
  403. call_deferred("_update_recent_scripts");
  404. return;
  405. }
  406. Array rc = EditorSettings::get_singleton()->get_project_metadata("recent_files", "scripts", Array());
  407. ERR_FAIL_INDEX(p_idx, rc.size());
  408. String path = rc[p_idx];
  409. // if its not on disk its a help file or deleted
  410. if (FileAccess::exists(path)) {
  411. List<String> extensions;
  412. ResourceLoader::get_recognized_extensions_for_type("Script", &extensions);
  413. if (extensions.find(path.get_extension())) {
  414. Ref<Script> script = ResourceLoader::load(path);
  415. if (script.is_valid()) {
  416. edit(script, true);
  417. return;
  418. }
  419. }
  420. Error err;
  421. Ref<TextFile> text_file = _load_text_file(path, &err);
  422. if (text_file.is_valid()) {
  423. edit(text_file, true);
  424. return;
  425. }
  426. // if it's a path then it's most likely a deleted file not help
  427. } else if (path.find("::") != -1) {
  428. // built-in script
  429. String res_path = path.get_slice("::", 0);
  430. if (ResourceLoader::get_resource_type(res_path) == "PackedScene") {
  431. if (!EditorNode::get_singleton()->is_scene_open(res_path)) {
  432. EditorNode::get_singleton()->load_scene(res_path);
  433. }
  434. } else {
  435. EditorNode::get_singleton()->load_resource(res_path);
  436. }
  437. Ref<Script> script = ResourceLoader::load(path);
  438. if (script.is_valid()) {
  439. edit(script, true);
  440. return;
  441. }
  442. } else if (!path.is_resource_file()) {
  443. _help_class_open(path);
  444. return;
  445. }
  446. rc.remove(p_idx);
  447. EditorSettings::get_singleton()->set_project_metadata("recent_files", "scripts", rc);
  448. _update_recent_scripts();
  449. _show_error_dialog(path);
  450. }
  451. void ScriptEditor::_show_error_dialog(String p_path) {
  452. error_dialog->set_text(vformat(TTR("Can't open '%s'. The file could have been moved or deleted."), p_path));
  453. error_dialog->popup_centered_minsize();
  454. }
  455. void ScriptEditor::_close_tab(int p_idx, bool p_save, bool p_history_back) {
  456. int selected = p_idx;
  457. if (selected < 0 || selected >= tab_container->get_child_count()) {
  458. return;
  459. }
  460. Node *tselected = tab_container->get_child(selected);
  461. ScriptEditorBase *current = Object::cast_to<ScriptEditorBase>(tselected);
  462. if (current) {
  463. Ref<Script> script = current->get_edited_resource();
  464. if (p_save) {
  465. // Do not try to save internal scripts
  466. if (!script.is_valid() || !(script->get_path() == "" || script->get_path().find("local://") != -1 || script->get_path().find("::") != -1)) {
  467. _save_current_script();
  468. }
  469. }
  470. if (script != nullptr) {
  471. previous_scripts.push_back(script->get_path());
  472. notify_script_close(script);
  473. }
  474. }
  475. // roll back to previous tab
  476. if (p_history_back) {
  477. _history_back();
  478. }
  479. //remove from history
  480. history.resize(history_pos + 1);
  481. for (int i = 0; i < history.size(); i++) {
  482. if (history[i].control == tselected) {
  483. history.remove(i);
  484. i--;
  485. history_pos--;
  486. }
  487. }
  488. if (history_pos >= history.size()) {
  489. history_pos = history.size() - 1;
  490. }
  491. int idx = tab_container->get_current_tab();
  492. if (current) {
  493. current->clear_edit_menu();
  494. }
  495. memdelete(tselected);
  496. if (idx >= tab_container->get_child_count()) {
  497. idx = tab_container->get_child_count() - 1;
  498. }
  499. if (idx >= 0) {
  500. if (history_pos >= 0) {
  501. idx = history[history_pos].control->get_index();
  502. }
  503. tab_container->set_current_tab(idx);
  504. } else {
  505. _update_selected_editor_menu();
  506. }
  507. _update_history_arrows();
  508. _update_script_names();
  509. _update_members_overview_visibility();
  510. _update_help_overview_visibility();
  511. _save_layout();
  512. }
  513. void ScriptEditor::_close_current_tab(bool p_save) {
  514. _close_tab(tab_container->get_current_tab(), p_save);
  515. }
  516. void ScriptEditor::_close_discard_current_tab(const String &p_str) {
  517. _close_tab(tab_container->get_current_tab(), false);
  518. erase_tab_confirm->hide();
  519. }
  520. void ScriptEditor::_close_docs_tab() {
  521. int child_count = tab_container->get_child_count();
  522. for (int i = child_count - 1; i >= 0; i--) {
  523. EditorHelp *se = Object::cast_to<EditorHelp>(tab_container->get_child(i));
  524. if (se) {
  525. _close_tab(i, true, false);
  526. }
  527. }
  528. }
  529. void ScriptEditor::_copy_script_path() {
  530. ScriptEditorBase *se = _get_current_editor();
  531. if (se) {
  532. RES script = se->get_edited_resource();
  533. OS::get_singleton()->set_clipboard(script->get_path());
  534. }
  535. }
  536. void ScriptEditor::_close_other_tabs() {
  537. int child_count = tab_container->get_child_count();
  538. int current_idx = tab_container->get_current_tab();
  539. for (int i = child_count - 1; i >= 0; i--) {
  540. if (i == current_idx) {
  541. continue;
  542. }
  543. tab_container->set_current_tab(i);
  544. ScriptEditorBase *se = Object::cast_to<ScriptEditorBase>(tab_container->get_child(i));
  545. if (se) {
  546. // Maybe there are unsaved changes
  547. if (se->is_unsaved()) {
  548. _ask_close_current_unsaved_tab(se);
  549. continue;
  550. }
  551. }
  552. _close_current_tab(false);
  553. }
  554. }
  555. void ScriptEditor::_close_all_tabs() {
  556. int child_count = tab_container->get_child_count();
  557. for (int i = child_count - 1; i >= 0; i--) {
  558. tab_container->set_current_tab(i);
  559. ScriptEditorBase *se = Object::cast_to<ScriptEditorBase>(tab_container->get_child(i));
  560. if (se) {
  561. // Maybe there are unsaved changes
  562. if (se->is_unsaved()) {
  563. _ask_close_current_unsaved_tab(se);
  564. continue;
  565. }
  566. }
  567. _close_current_tab(false);
  568. }
  569. }
  570. void ScriptEditor::_ask_close_current_unsaved_tab(ScriptEditorBase *current) {
  571. erase_tab_confirm->set_text(TTR("Close and save changes?") + "\n\"" + current->get_name() + "\"");
  572. erase_tab_confirm->popup_centered_minsize();
  573. }
  574. void ScriptEditor::_resave_scripts(const String &p_str) {
  575. apply_scripts();
  576. for (int i = 0; i < tab_container->get_child_count(); i++) {
  577. ScriptEditorBase *se = Object::cast_to<ScriptEditorBase>(tab_container->get_child(i));
  578. if (!se) {
  579. continue;
  580. }
  581. RES script = se->get_edited_resource();
  582. if (script->get_path() == "" || script->get_path().find("local://") != -1 || script->get_path().find("::") != -1) {
  583. continue; //internal script, who cares
  584. }
  585. if (trim_trailing_whitespace_on_save) {
  586. se->trim_trailing_whitespace();
  587. }
  588. se->insert_final_newline();
  589. if (convert_indent_on_save) {
  590. if (use_space_indentation) {
  591. se->convert_indent_to_spaces();
  592. } else {
  593. se->convert_indent_to_tabs();
  594. }
  595. }
  596. Ref<TextFile> text_file = script;
  597. if (text_file != nullptr) {
  598. se->apply_code();
  599. _save_text_file(text_file, text_file->get_path());
  600. break;
  601. } else {
  602. editor->save_resource(script);
  603. }
  604. se->tag_saved_version();
  605. }
  606. disk_changed->hide();
  607. }
  608. void ScriptEditor::_reload_scripts() {
  609. for (int i = 0; i < tab_container->get_child_count(); i++) {
  610. ScriptEditorBase *se = Object::cast_to<ScriptEditorBase>(tab_container->get_child(i));
  611. if (!se) {
  612. continue;
  613. }
  614. RES edited_res = se->get_edited_resource();
  615. if (edited_res->get_path() == "" || edited_res->get_path().find("local://") != -1 || edited_res->get_path().find("::") != -1) {
  616. continue; //internal script, who cares
  617. }
  618. uint64_t last_date = edited_res->get_last_modified_time();
  619. uint64_t date = FileAccess::get_modified_time(edited_res->get_path());
  620. if (last_date == date) {
  621. continue;
  622. }
  623. Ref<Script> script = edited_res;
  624. if (script != nullptr) {
  625. Ref<Script> rel_script = ResourceLoader::load(script->get_path(), script->get_class(), true);
  626. ERR_CONTINUE(!rel_script.is_valid());
  627. script->set_source_code(rel_script->get_source_code());
  628. script->set_last_modified_time(rel_script->get_last_modified_time());
  629. script->reload();
  630. }
  631. Ref<TextFile> text_file = edited_res;
  632. if (text_file != nullptr) {
  633. Error err;
  634. Ref<TextFile> rel_text_file = _load_text_file(text_file->get_path(), &err);
  635. ERR_CONTINUE(!rel_text_file.is_valid());
  636. text_file->set_text(rel_text_file->get_text());
  637. text_file->set_last_modified_time(rel_text_file->get_last_modified_time());
  638. }
  639. se->reload_text();
  640. }
  641. disk_changed->hide();
  642. _update_script_names();
  643. }
  644. void ScriptEditor::_res_saved_callback(const Ref<Resource> &p_res) {
  645. for (int i = 0; i < tab_container->get_child_count(); i++) {
  646. ScriptEditorBase *se = Object::cast_to<ScriptEditorBase>(tab_container->get_child(i));
  647. if (!se) {
  648. continue;
  649. }
  650. RES script = se->get_edited_resource();
  651. if (script->get_path() == "" || script->get_path().find("local://") != -1 || script->get_path().find("::") != -1) {
  652. continue; //internal script, who cares
  653. }
  654. if (script == p_res) {
  655. se->tag_saved_version();
  656. }
  657. }
  658. _update_script_names();
  659. if (!pending_auto_reload && auto_reload_running_scripts) {
  660. call_deferred("_live_auto_reload_running_scripts");
  661. pending_auto_reload = true;
  662. }
  663. }
  664. void ScriptEditor::_live_auto_reload_running_scripts() {
  665. pending_auto_reload = false;
  666. debugger->reload_scripts();
  667. }
  668. bool ScriptEditor::_test_script_times_on_disk(RES p_for_script) {
  669. disk_changed_list->clear();
  670. TreeItem *r = disk_changed_list->create_item();
  671. disk_changed_list->set_hide_root(true);
  672. bool need_ask = false;
  673. bool need_reload = false;
  674. bool use_autoreload = bool(EDITOR_DEF("text_editor/files/auto_reload_scripts_on_external_change", false));
  675. for (int i = 0; i < tab_container->get_child_count(); i++) {
  676. ScriptEditorBase *se = Object::cast_to<ScriptEditorBase>(tab_container->get_child(i));
  677. if (se) {
  678. RES edited_res = se->get_edited_resource();
  679. if (p_for_script.is_valid() && edited_res.is_valid() && p_for_script != edited_res) {
  680. continue;
  681. }
  682. if (edited_res->get_path() == "" || edited_res->get_path().find("local://") != -1 || edited_res->get_path().find("::") != -1) {
  683. continue; //internal script, who cares
  684. }
  685. uint64_t last_date = edited_res->get_last_modified_time();
  686. uint64_t date = FileAccess::get_modified_time(edited_res->get_path());
  687. if (last_date != date) {
  688. TreeItem *ti = disk_changed_list->create_item(r);
  689. ti->set_text(0, edited_res->get_path().get_file());
  690. if (!use_autoreload || se->is_unsaved()) {
  691. need_ask = true;
  692. }
  693. need_reload = true;
  694. }
  695. }
  696. }
  697. if (need_reload) {
  698. if (!need_ask) {
  699. script_editor->_reload_scripts();
  700. need_reload = false;
  701. } else {
  702. disk_changed->call_deferred("popup_centered_ratio", 0.5);
  703. }
  704. }
  705. return need_reload;
  706. }
  707. void ScriptEditor::_file_dialog_action(String p_file) {
  708. switch (file_dialog_option) {
  709. case FILE_NEW_TEXTFILE: {
  710. Error err;
  711. FileAccess *file = FileAccess::open(p_file, FileAccess::WRITE, &err);
  712. if (err) {
  713. editor->show_warning(TTR("Error writing TextFile:") + "\n" + p_file, TTR("Error!"));
  714. break;
  715. }
  716. file->close();
  717. memdelete(file);
  718. FALLTHROUGH;
  719. }
  720. case FILE_OPEN: {
  721. List<String> extensions;
  722. ResourceLoader::get_recognized_extensions_for_type("Script", &extensions);
  723. if (extensions.find(p_file.get_extension())) {
  724. Ref<Script> scr = ResourceLoader::load(p_file);
  725. if (!scr.is_valid()) {
  726. editor->show_warning(TTR("Could not load file at:") + "\n\n" + p_file, TTR("Error!"));
  727. file_dialog_option = -1;
  728. return;
  729. }
  730. edit(scr);
  731. file_dialog_option = -1;
  732. return;
  733. }
  734. Error error;
  735. Ref<TextFile> text_file = _load_text_file(p_file, &error);
  736. if (error != OK) {
  737. editor->show_warning(TTR("Could not load file at:") + "\n\n" + p_file, TTR("Error!"));
  738. }
  739. if (text_file.is_valid()) {
  740. edit(text_file);
  741. file_dialog_option = -1;
  742. return;
  743. }
  744. } break;
  745. case FILE_SAVE_AS: {
  746. ScriptEditorBase *current = _get_current_editor();
  747. if (current) {
  748. RES resource = current->get_edited_resource();
  749. String path = ProjectSettings::get_singleton()->localize_path(p_file);
  750. Error err = _save_text_file(resource, path);
  751. if (err != OK) {
  752. editor->show_accept(TTR("Error saving file!"), TTR("OK"));
  753. return;
  754. }
  755. resource->set_path(path);
  756. _update_script_names();
  757. }
  758. } break;
  759. case THEME_SAVE_AS: {
  760. if (!EditorSettings::get_singleton()->save_text_editor_theme_as(p_file)) {
  761. editor->show_warning(TTR("Error while saving theme."), TTR("Error Saving"));
  762. }
  763. } break;
  764. case THEME_IMPORT: {
  765. if (!EditorSettings::get_singleton()->import_text_editor_theme(p_file)) {
  766. editor->show_warning(TTR("Error importing theme."), TTR("Error Importing"));
  767. }
  768. } break;
  769. }
  770. file_dialog_option = -1;
  771. }
  772. Ref<Script> ScriptEditor::_get_current_script() {
  773. ScriptEditorBase *current = _get_current_editor();
  774. if (current) {
  775. Ref<Script> script = current->get_edited_resource();
  776. return script != nullptr ? script : nullptr;
  777. } else {
  778. return nullptr;
  779. }
  780. }
  781. Array ScriptEditor::_get_open_scripts() const {
  782. Array ret;
  783. Vector<Ref<Script>> scripts = get_open_scripts();
  784. int scrits_amount = scripts.size();
  785. for (int idx_script = 0; idx_script < scrits_amount; idx_script++) {
  786. ret.push_back(scripts[idx_script]);
  787. }
  788. return ret;
  789. }
  790. bool ScriptEditor::toggle_scripts_panel() {
  791. list_split->set_visible(!list_split->is_visible());
  792. EditorSettings::get_singleton()->set_project_metadata("scripts_panel", "show_scripts_panel", list_split->is_visible());
  793. return list_split->is_visible();
  794. }
  795. bool ScriptEditor::is_scripts_panel_toggled() {
  796. return list_split->is_visible();
  797. }
  798. void ScriptEditor::_save_current_script() {
  799. ScriptEditorBase *current = _get_current_editor();
  800. if (_test_script_times_on_disk()) {
  801. return;
  802. }
  803. if (trim_trailing_whitespace_on_save) {
  804. current->trim_trailing_whitespace();
  805. }
  806. current->insert_final_newline();
  807. if (convert_indent_on_save) {
  808. if (use_space_indentation) {
  809. current->convert_indent_to_spaces();
  810. } else {
  811. current->convert_indent_to_tabs();
  812. }
  813. }
  814. RES resource = current->get_edited_resource();
  815. Ref<TextFile> text_file = resource;
  816. if (text_file != nullptr) {
  817. current->apply_code();
  818. _save_text_file(text_file, text_file->get_path());
  819. return;
  820. }
  821. editor->save_resource(resource);
  822. }
  823. void ScriptEditor::_menu_option(int p_option) {
  824. ScriptEditorBase *current = _get_current_editor();
  825. switch (p_option) {
  826. case FILE_NEW: {
  827. script_create_dialog->config("Node", "new_script", false, false);
  828. script_create_dialog->popup_centered();
  829. } break;
  830. case FILE_NEW_TEXTFILE: {
  831. file_dialog->set_mode(EditorFileDialog::MODE_SAVE_FILE);
  832. file_dialog->set_access(EditorFileDialog::ACCESS_FILESYSTEM);
  833. file_dialog_option = FILE_NEW_TEXTFILE;
  834. file_dialog->clear_filters();
  835. file_dialog->popup_centered_ratio();
  836. file_dialog->set_title(TTR("New Text File..."));
  837. } break;
  838. case FILE_OPEN: {
  839. file_dialog->set_mode(EditorFileDialog::MODE_OPEN_FILE);
  840. file_dialog->set_access(EditorFileDialog::ACCESS_FILESYSTEM);
  841. file_dialog_option = FILE_OPEN;
  842. List<String> extensions;
  843. ResourceLoader::get_recognized_extensions_for_type("Script", &extensions);
  844. file_dialog->clear_filters();
  845. for (int i = 0; i < extensions.size(); i++) {
  846. file_dialog->add_filter("*." + extensions[i] + " ; " + extensions[i].to_upper());
  847. }
  848. file_dialog->popup_centered_ratio();
  849. file_dialog->set_title(TTR("Open File"));
  850. return;
  851. } break;
  852. case FILE_REOPEN_CLOSED: {
  853. if (previous_scripts.empty()) {
  854. return;
  855. }
  856. String path = previous_scripts.back()->get();
  857. previous_scripts.pop_back();
  858. List<String> extensions;
  859. ResourceLoader::get_recognized_extensions_for_type("Script", &extensions);
  860. bool built_in = !path.is_resource_file();
  861. if (extensions.find(path.get_extension()) || built_in) {
  862. if (built_in) {
  863. String res_path = path.get_slice("::", 0);
  864. if (ResourceLoader::get_resource_type(res_path) == "PackedScene") {
  865. if (!EditorNode::get_singleton()->is_scene_open(res_path)) {
  866. EditorNode::get_singleton()->load_scene(res_path);
  867. script_editor->call_deferred("_menu_option", p_option);
  868. previous_scripts.push_back(path); //repeat the operation
  869. return;
  870. }
  871. } else {
  872. EditorNode::get_singleton()->load_resource(res_path);
  873. }
  874. }
  875. Ref<Script> scr = ResourceLoader::load(path);
  876. if (!scr.is_valid()) {
  877. editor->show_warning(TTR("Could not load file at:") + "\n\n" + path, TTR("Error!"));
  878. file_dialog_option = -1;
  879. return;
  880. }
  881. edit(scr);
  882. file_dialog_option = -1;
  883. return;
  884. } else {
  885. Error error;
  886. Ref<TextFile> text_file = _load_text_file(path, &error);
  887. if (error != OK) {
  888. editor->show_warning(TTR("Could not load file at:") + "\n\n" + path, TTR("Error!"));
  889. }
  890. if (text_file.is_valid()) {
  891. edit(text_file);
  892. file_dialog_option = -1;
  893. return;
  894. }
  895. }
  896. } break;
  897. case FILE_SAVE_ALL: {
  898. if (_test_script_times_on_disk()) {
  899. return;
  900. }
  901. save_all_scripts();
  902. } break;
  903. case SEARCH_IN_FILES: {
  904. _on_find_in_files_requested("");
  905. } break;
  906. case SEARCH_HELP: {
  907. help_search_dialog->popup_dialog();
  908. } break;
  909. case SEARCH_WEBSITE: {
  910. OS::get_singleton()->shell_open("https://docs.godotengine.org/");
  911. } break;
  912. case WINDOW_NEXT: {
  913. _history_forward();
  914. } break;
  915. case WINDOW_PREV: {
  916. _history_back();
  917. } break;
  918. case WINDOW_SORT: {
  919. _sort_list_on_update = true;
  920. _update_script_names();
  921. } break;
  922. case DEBUG_KEEP_DEBUGGER_OPEN: {
  923. bool ischecked = debug_menu->get_popup()->is_item_checked(debug_menu->get_popup()->get_item_index(DEBUG_KEEP_DEBUGGER_OPEN));
  924. if (debugger) {
  925. debugger->set_hide_on_stop(ischecked);
  926. }
  927. debug_menu->get_popup()->set_item_checked(debug_menu->get_popup()->get_item_index(DEBUG_KEEP_DEBUGGER_OPEN), !ischecked);
  928. EditorSettings::get_singleton()->set_project_metadata("debug_options", "keep_debugger_open", !ischecked);
  929. } break;
  930. case DEBUG_WITH_EXTERNAL_EDITOR: {
  931. bool ischecked = debug_menu->get_popup()->is_item_checked(debug_menu->get_popup()->get_item_index(DEBUG_WITH_EXTERNAL_EDITOR));
  932. if (debugger) {
  933. debugger->set_debug_with_external_editor(!ischecked);
  934. }
  935. debug_menu->get_popup()->set_item_checked(debug_menu->get_popup()->get_item_index(DEBUG_WITH_EXTERNAL_EDITOR), !ischecked);
  936. EditorSettings::get_singleton()->set_project_metadata("debug_options", "debug_with_external_editor", !ischecked);
  937. } break;
  938. case TOGGLE_SCRIPTS_PANEL: {
  939. if (current) {
  940. ScriptTextEditor *editor = Object::cast_to<ScriptTextEditor>(current);
  941. toggle_scripts_panel();
  942. if (editor) {
  943. editor->update_toggle_scripts_button();
  944. }
  945. } else {
  946. toggle_scripts_panel();
  947. }
  948. }
  949. }
  950. if (current) {
  951. switch (p_option) {
  952. case FILE_SAVE: {
  953. _save_current_script();
  954. } break;
  955. case FILE_SAVE_AS: {
  956. if (trim_trailing_whitespace_on_save) {
  957. current->trim_trailing_whitespace();
  958. }
  959. current->insert_final_newline();
  960. if (convert_indent_on_save) {
  961. if (use_space_indentation) {
  962. current->convert_indent_to_spaces();
  963. } else {
  964. current->convert_indent_to_tabs();
  965. }
  966. }
  967. RES resource = current->get_edited_resource();
  968. Ref<TextFile> text_file = resource;
  969. if (text_file != nullptr) {
  970. file_dialog->set_mode(EditorFileDialog::MODE_SAVE_FILE);
  971. file_dialog->set_access(EditorFileDialog::ACCESS_FILESYSTEM);
  972. file_dialog_option = FILE_SAVE_AS;
  973. List<String> extensions;
  974. ResourceLoader::get_recognized_extensions_for_type("Script", &extensions);
  975. file_dialog->clear_filters();
  976. file_dialog->set_current_dir(text_file->get_path().get_base_dir());
  977. file_dialog->set_current_file(text_file->get_path().get_file());
  978. file_dialog->popup_centered_ratio();
  979. file_dialog->set_title(TTR("Save File As..."));
  980. break;
  981. }
  982. editor->push_item(resource.ptr());
  983. editor->save_resource_as(resource);
  984. } break;
  985. case FILE_TOOL_RELOAD:
  986. case FILE_TOOL_RELOAD_SOFT: {
  987. current->reload(p_option == FILE_TOOL_RELOAD_SOFT);
  988. } break;
  989. case FILE_RUN: {
  990. Ref<Script> scr = current->get_edited_resource();
  991. if (scr == nullptr || scr.is_null()) {
  992. EditorNode::get_singleton()->show_warning(TTR("Can't obtain the script for running."));
  993. break;
  994. }
  995. current->apply_code();
  996. Error err = scr->reload(false); //hard reload script before running always
  997. if (err != OK) {
  998. EditorNode::get_singleton()->show_warning(TTR("Script failed reloading, check console for errors."));
  999. return;
  1000. }
  1001. if (!scr->is_tool()) {
  1002. EditorNode::get_singleton()->show_warning(TTR("Script is not in tool mode, will not be able to run."));
  1003. return;
  1004. }
  1005. if (!ClassDB::is_parent_class(scr->get_instance_base_type(), "EditorScript")) {
  1006. EditorNode::get_singleton()->show_warning(TTR("To run this script, it must inherit EditorScript and be set to tool mode."));
  1007. return;
  1008. }
  1009. Ref<EditorScript> es = memnew(EditorScript);
  1010. es->set_script(scr.get_ref_ptr());
  1011. es->set_editor(EditorNode::get_singleton());
  1012. es->_run();
  1013. EditorNode::get_undo_redo()->clear_history();
  1014. } break;
  1015. case FILE_CLOSE: {
  1016. if (current->is_unsaved()) {
  1017. _ask_close_current_unsaved_tab(current);
  1018. } else {
  1019. _close_current_tab(false);
  1020. }
  1021. } break;
  1022. case FILE_COPY_PATH: {
  1023. _copy_script_path();
  1024. } break;
  1025. case SHOW_IN_FILE_SYSTEM: {
  1026. const RES script = current->get_edited_resource();
  1027. const String path = script->get_path();
  1028. if (!path.empty()) {
  1029. FileSystemDock *file_system_dock = EditorNode::get_singleton()->get_filesystem_dock();
  1030. file_system_dock->navigate_to_path(path);
  1031. // Ensure that the FileSystem dock is visible.
  1032. TabContainer *tab_container = (TabContainer *)file_system_dock->get_parent_control();
  1033. tab_container->set_current_tab(file_system_dock->get_position_in_parent());
  1034. }
  1035. } break;
  1036. case CLOSE_DOCS: {
  1037. _close_docs_tab();
  1038. } break;
  1039. case CLOSE_OTHER_TABS: {
  1040. _close_other_tabs();
  1041. } break;
  1042. case CLOSE_ALL: {
  1043. _close_all_tabs();
  1044. } break;
  1045. case DEBUG_NEXT: {
  1046. if (debugger) {
  1047. debugger->debug_next();
  1048. }
  1049. } break;
  1050. case DEBUG_STEP: {
  1051. if (debugger) {
  1052. debugger->debug_step();
  1053. }
  1054. } break;
  1055. case DEBUG_BREAK: {
  1056. if (debugger) {
  1057. debugger->debug_break();
  1058. }
  1059. } break;
  1060. case DEBUG_CONTINUE: {
  1061. if (debugger) {
  1062. debugger->debug_continue();
  1063. }
  1064. } break;
  1065. case WINDOW_MOVE_UP: {
  1066. if (tab_container->get_current_tab() > 0) {
  1067. tab_container->move_child(current, tab_container->get_current_tab() - 1);
  1068. tab_container->set_current_tab(tab_container->get_current_tab() - 1);
  1069. _update_script_names();
  1070. }
  1071. } break;
  1072. case WINDOW_MOVE_DOWN: {
  1073. if (tab_container->get_current_tab() < tab_container->get_child_count() - 1) {
  1074. tab_container->move_child(current, tab_container->get_current_tab() + 1);
  1075. tab_container->set_current_tab(tab_container->get_current_tab() + 1);
  1076. _update_script_names();
  1077. }
  1078. } break;
  1079. default: {
  1080. if (p_option >= WINDOW_SELECT_BASE) {
  1081. tab_container->set_current_tab(p_option - WINDOW_SELECT_BASE);
  1082. _update_script_names();
  1083. }
  1084. }
  1085. }
  1086. } else {
  1087. EditorHelp *help = Object::cast_to<EditorHelp>(tab_container->get_current_tab_control());
  1088. if (help) {
  1089. switch (p_option) {
  1090. case HELP_SEARCH_FIND: {
  1091. help->popup_search();
  1092. } break;
  1093. case HELP_SEARCH_FIND_NEXT: {
  1094. help->search_again();
  1095. } break;
  1096. case HELP_SEARCH_FIND_PREVIOUS: {
  1097. help->search_again(true);
  1098. } break;
  1099. case FILE_CLOSE: {
  1100. _close_current_tab();
  1101. } break;
  1102. case CLOSE_DOCS: {
  1103. _close_docs_tab();
  1104. } break;
  1105. case CLOSE_OTHER_TABS: {
  1106. _close_other_tabs();
  1107. } break;
  1108. case CLOSE_ALL: {
  1109. _close_all_tabs();
  1110. } break;
  1111. case WINDOW_MOVE_UP: {
  1112. if (tab_container->get_current_tab() > 0) {
  1113. tab_container->move_child(help, tab_container->get_current_tab() - 1);
  1114. tab_container->set_current_tab(tab_container->get_current_tab() - 1);
  1115. _update_script_names();
  1116. }
  1117. } break;
  1118. case WINDOW_MOVE_DOWN: {
  1119. if (tab_container->get_current_tab() < tab_container->get_child_count() - 1) {
  1120. tab_container->move_child(help, tab_container->get_current_tab() + 1);
  1121. tab_container->set_current_tab(tab_container->get_current_tab() + 1);
  1122. _update_script_names();
  1123. }
  1124. } break;
  1125. }
  1126. }
  1127. }
  1128. }
  1129. void ScriptEditor::_update_debug_options() {
  1130. bool keep_debugger_open = EditorSettings::get_singleton()->get_project_metadata("debug_options", "keep_debugger_open", false);
  1131. bool debug_with_external_editor = EditorSettings::get_singleton()->get_project_metadata("debug_options", "debug_with_external_editor", false);
  1132. if (keep_debugger_open) {
  1133. _menu_option(DEBUG_KEEP_DEBUGGER_OPEN);
  1134. }
  1135. if (debug_with_external_editor) {
  1136. _menu_option(DEBUG_WITH_EXTERNAL_EDITOR);
  1137. }
  1138. }
  1139. void ScriptEditor::_theme_option(int p_option) {
  1140. switch (p_option) {
  1141. case THEME_IMPORT: {
  1142. file_dialog->set_mode(EditorFileDialog::MODE_OPEN_FILE);
  1143. file_dialog->set_access(EditorFileDialog::ACCESS_FILESYSTEM);
  1144. file_dialog_option = THEME_IMPORT;
  1145. file_dialog->clear_filters();
  1146. file_dialog->add_filter("*.tet");
  1147. file_dialog->popup_centered_ratio();
  1148. file_dialog->set_title(TTR("Import Theme"));
  1149. } break;
  1150. case THEME_RELOAD: {
  1151. EditorSettings::get_singleton()->load_text_editor_theme();
  1152. } break;
  1153. case THEME_SAVE: {
  1154. if (EditorSettings::get_singleton()->is_default_text_editor_theme()) {
  1155. ScriptEditor::_show_save_theme_as_dialog();
  1156. } else if (!EditorSettings::get_singleton()->save_text_editor_theme()) {
  1157. editor->show_warning(TTR("Error while saving theme"), TTR("Error saving"));
  1158. }
  1159. } break;
  1160. case THEME_SAVE_AS: {
  1161. ScriptEditor::_show_save_theme_as_dialog();
  1162. } break;
  1163. }
  1164. }
  1165. void ScriptEditor::_show_save_theme_as_dialog() {
  1166. file_dialog->set_mode(EditorFileDialog::MODE_SAVE_FILE);
  1167. file_dialog->set_access(EditorFileDialog::ACCESS_FILESYSTEM);
  1168. file_dialog_option = THEME_SAVE_AS;
  1169. file_dialog->clear_filters();
  1170. file_dialog->add_filter("*.tet");
  1171. file_dialog->set_current_path(EditorSettings::get_singleton()->get_text_editor_themes_dir().plus_file(EditorSettings::get_singleton()->get("text_editor/theme/color_theme")));
  1172. file_dialog->popup_centered_ratio();
  1173. file_dialog->set_title(TTR("Save Theme As..."));
  1174. }
  1175. void ScriptEditor::_tab_changed(int p_which) {
  1176. ensure_select_current();
  1177. }
  1178. void ScriptEditor::_notification(int p_what) {
  1179. switch (p_what) {
  1180. case NOTIFICATION_ENTER_TREE: {
  1181. editor->connect("play_pressed", this, "_editor_play");
  1182. editor->connect("pause_pressed", this, "_editor_pause");
  1183. editor->connect("stop_pressed", this, "_editor_stop");
  1184. editor->connect("script_add_function_request", this, "_add_callback");
  1185. editor->connect("resource_saved", this, "_res_saved_callback");
  1186. script_list->connect("item_selected", this, "_script_selected");
  1187. members_overview->connect("item_selected", this, "_members_overview_selected");
  1188. help_overview->connect("item_selected", this, "_help_overview_selected");
  1189. script_split->connect("dragged", this, "_script_split_dragged");
  1190. EditorSettings::get_singleton()->connect("settings_changed", this, "_editor_settings_changed");
  1191. FALLTHROUGH;
  1192. }
  1193. case NOTIFICATION_THEME_CHANGED: {
  1194. help_search->set_icon(get_icon("HelpSearch", "EditorIcons"));
  1195. site_search->set_icon(get_icon("Instance", "EditorIcons"));
  1196. script_forward->set_icon(get_icon("Forward", "EditorIcons"));
  1197. script_back->set_icon(get_icon("Back", "EditorIcons"));
  1198. members_overview_alphabeta_sort_button->set_icon(get_icon("Sort", "EditorIcons"));
  1199. filter_scripts->set_right_icon(get_icon("Search", "EditorIcons"));
  1200. filter_methods->set_right_icon(get_icon("Search", "EditorIcons"));
  1201. filename->add_style_override("normal", editor->get_gui_base()->get_stylebox("normal", "LineEdit"));
  1202. recent_scripts->set_as_minsize();
  1203. } break;
  1204. case NOTIFICATION_READY: {
  1205. get_tree()->connect("tree_changed", this, "_tree_changed");
  1206. editor->get_inspector_dock()->connect("request_help", this, "_request_help");
  1207. editor->connect("request_help_search", this, "_help_search");
  1208. _update_debug_options();
  1209. } break;
  1210. case NOTIFICATION_EXIT_TREE: {
  1211. editor->disconnect("play_pressed", this, "_editor_play");
  1212. editor->disconnect("pause_pressed", this, "_editor_pause");
  1213. editor->disconnect("stop_pressed", this, "_editor_stop");
  1214. } break;
  1215. case MainLoop::NOTIFICATION_WM_FOCUS_IN: {
  1216. _test_script_times_on_disk();
  1217. _update_modified_scripts_for_external_editor();
  1218. } break;
  1219. case CanvasItem::NOTIFICATION_VISIBILITY_CHANGED: {
  1220. if (is_visible()) {
  1221. find_in_files_button->show();
  1222. } else {
  1223. if (find_in_files->is_visible_in_tree()) {
  1224. editor->hide_bottom_panel();
  1225. }
  1226. find_in_files_button->hide();
  1227. }
  1228. } break;
  1229. default:
  1230. break;
  1231. }
  1232. }
  1233. bool ScriptEditor::can_take_away_focus() const {
  1234. ScriptEditorBase *current = _get_current_editor();
  1235. if (current) {
  1236. return current->can_lose_focus_on_node_selection();
  1237. } else {
  1238. return true;
  1239. }
  1240. }
  1241. void ScriptEditor::close_builtin_scripts_from_scene(const String &p_scene) {
  1242. for (int i = 0; i < tab_container->get_child_count(); i++) {
  1243. ScriptEditorBase *se = Object::cast_to<ScriptEditorBase>(tab_container->get_child(i));
  1244. if (se) {
  1245. Ref<Script> script = se->get_edited_resource();
  1246. if (script == nullptr || !script.is_valid()) {
  1247. continue;
  1248. }
  1249. if (script->get_path().find("::") != -1 && script->get_path().begins_with(p_scene)) { //is an internal script and belongs to scene being closed
  1250. _close_tab(i);
  1251. i--;
  1252. }
  1253. }
  1254. }
  1255. }
  1256. void ScriptEditor::edited_scene_changed() {
  1257. _update_modified_scripts_for_external_editor();
  1258. }
  1259. void ScriptEditor::notify_script_close(const Ref<Script> &p_script) {
  1260. emit_signal("script_close", p_script);
  1261. }
  1262. void ScriptEditor::notify_script_changed(const Ref<Script> &p_script) {
  1263. emit_signal("editor_script_changed", p_script);
  1264. }
  1265. void ScriptEditor::get_breakpoints(List<String> *p_breakpoints) {
  1266. for (int i = 0; i < tab_container->get_child_count(); i++) {
  1267. ScriptEditorBase *se = Object::cast_to<ScriptEditorBase>(tab_container->get_child(i));
  1268. if (!se) {
  1269. continue;
  1270. }
  1271. Ref<Script> script = se->get_edited_resource();
  1272. if (script == nullptr) {
  1273. continue;
  1274. }
  1275. List<int> bpoints;
  1276. se->get_breakpoints(&bpoints);
  1277. String base = script->get_path();
  1278. if (base.begins_with("local://") || base == "") {
  1279. continue;
  1280. }
  1281. for (List<int>::Element *E = bpoints.front(); E; E = E->next()) {
  1282. p_breakpoints->push_back(base + ":" + itos(E->get() + 1));
  1283. }
  1284. }
  1285. }
  1286. void ScriptEditor::ensure_focus_current() {
  1287. if (!is_inside_tree()) {
  1288. return;
  1289. }
  1290. ScriptEditorBase *current = _get_current_editor();
  1291. if (current) {
  1292. current->ensure_focus();
  1293. }
  1294. }
  1295. void ScriptEditor::_members_overview_selected(int p_idx) {
  1296. ScriptEditorBase *se = _get_current_editor();
  1297. if (!se) {
  1298. return;
  1299. }
  1300. // Go to the member's line and reset the cursor column. We can't change scroll_position
  1301. // directly until we have gone to the line first, since code might be folded.
  1302. se->goto_line(members_overview->get_item_metadata(p_idx));
  1303. Dictionary state = se->get_edit_state();
  1304. state["column"] = 0;
  1305. state["scroll_position"] = members_overview->get_item_metadata(p_idx);
  1306. se->set_edit_state(state);
  1307. }
  1308. void ScriptEditor::_help_overview_selected(int p_idx) {
  1309. Node *current = tab_container->get_child(tab_container->get_current_tab());
  1310. EditorHelp *se = Object::cast_to<EditorHelp>(current);
  1311. if (!se) {
  1312. return;
  1313. }
  1314. se->scroll_to_section(help_overview->get_item_metadata(p_idx));
  1315. }
  1316. void ScriptEditor::_script_selected(int p_idx) {
  1317. grab_focus_block = !Input::get_singleton()->is_mouse_button_pressed(1); //amazing hack, simply amazing
  1318. _go_to_tab(script_list->get_item_metadata(p_idx));
  1319. grab_focus_block = false;
  1320. }
  1321. void ScriptEditor::ensure_select_current() {
  1322. if (tab_container->get_child_count() && tab_container->get_current_tab() >= 0) {
  1323. ScriptEditorBase *se = _get_current_editor();
  1324. if (se) {
  1325. se->enable_editor();
  1326. if (!grab_focus_block && is_visible_in_tree()) {
  1327. se->ensure_focus();
  1328. }
  1329. }
  1330. }
  1331. _update_selected_editor_menu();
  1332. }
  1333. void ScriptEditor::_find_scripts(Node *p_base, Node *p_current, Set<Ref<Script>> &used) {
  1334. if (p_current != p_base && p_current->get_owner() != p_base) {
  1335. return;
  1336. }
  1337. if (p_current->get_script_instance()) {
  1338. Ref<Script> scr = p_current->get_script();
  1339. if (scr.is_valid()) {
  1340. used.insert(scr);
  1341. }
  1342. }
  1343. for (int i = 0; i < p_current->get_child_count(); i++) {
  1344. _find_scripts(p_base, p_current->get_child(i), used);
  1345. }
  1346. }
  1347. struct _ScriptEditorItemData {
  1348. String name;
  1349. String sort_key;
  1350. Ref<Texture> icon;
  1351. int index;
  1352. String tooltip;
  1353. bool used;
  1354. int category;
  1355. Node *ref;
  1356. bool operator<(const _ScriptEditorItemData &id) const {
  1357. if (category == id.category) {
  1358. if (sort_key == id.sort_key) {
  1359. return index < id.index;
  1360. } else {
  1361. return sort_key < id.sort_key;
  1362. }
  1363. } else {
  1364. return category < id.category;
  1365. }
  1366. }
  1367. };
  1368. void ScriptEditor::_update_members_overview_visibility() {
  1369. ScriptEditorBase *se = _get_current_editor();
  1370. if (!se) {
  1371. members_overview_alphabeta_sort_button->set_visible(false);
  1372. members_overview->set_visible(false);
  1373. overview_vbox->set_visible(false);
  1374. return;
  1375. }
  1376. if (members_overview_enabled && se->show_members_overview()) {
  1377. members_overview_alphabeta_sort_button->set_visible(true);
  1378. members_overview->set_visible(true);
  1379. overview_vbox->set_visible(true);
  1380. } else {
  1381. members_overview_alphabeta_sort_button->set_visible(false);
  1382. members_overview->set_visible(false);
  1383. overview_vbox->set_visible(false);
  1384. }
  1385. }
  1386. void ScriptEditor::_toggle_members_overview_alpha_sort(bool p_alphabetic_sort) {
  1387. EditorSettings::get_singleton()->set("text_editor/tools/sort_members_outline_alphabetically", p_alphabetic_sort);
  1388. _update_members_overview();
  1389. }
  1390. void ScriptEditor::_update_members_overview() {
  1391. members_overview->clear();
  1392. ScriptEditorBase *se = _get_current_editor();
  1393. if (!se) {
  1394. return;
  1395. }
  1396. Vector<String> functions = se->get_functions();
  1397. if (EditorSettings::get_singleton()->get("text_editor/tools/sort_members_outline_alphabetically")) {
  1398. functions.sort();
  1399. }
  1400. for (int i = 0; i < functions.size(); i++) {
  1401. String filter = filter_methods->get_text();
  1402. String name = functions[i].get_slice(":", 0);
  1403. if (filter == "" || filter.is_subsequence_ofi(name)) {
  1404. members_overview->add_item(name);
  1405. members_overview->set_item_metadata(members_overview->get_item_count() - 1, functions[i].get_slice(":", 1).to_int() - 1);
  1406. }
  1407. }
  1408. String path = se->get_edited_resource()->get_path();
  1409. bool built_in = !path.is_resource_file();
  1410. String name = built_in ? path.get_file() : se->get_name();
  1411. filename->set_text(name);
  1412. }
  1413. void ScriptEditor::_update_help_overview_visibility() {
  1414. int selected = tab_container->get_current_tab();
  1415. if (selected < 0 || selected >= tab_container->get_child_count()) {
  1416. help_overview->set_visible(false);
  1417. return;
  1418. }
  1419. Node *current = tab_container->get_child(tab_container->get_current_tab());
  1420. EditorHelp *se = Object::cast_to<EditorHelp>(current);
  1421. if (!se) {
  1422. help_overview->set_visible(false);
  1423. return;
  1424. }
  1425. if (help_overview_enabled) {
  1426. members_overview_alphabeta_sort_button->set_visible(false);
  1427. help_overview->set_visible(true);
  1428. overview_vbox->set_visible(true);
  1429. filename->set_text(se->get_name());
  1430. } else {
  1431. help_overview->set_visible(false);
  1432. overview_vbox->set_visible(false);
  1433. }
  1434. }
  1435. void ScriptEditor::_update_help_overview() {
  1436. help_overview->clear();
  1437. int selected = tab_container->get_current_tab();
  1438. if (selected < 0 || selected >= tab_container->get_child_count()) {
  1439. return;
  1440. }
  1441. Node *current = tab_container->get_child(tab_container->get_current_tab());
  1442. EditorHelp *se = Object::cast_to<EditorHelp>(current);
  1443. if (!se) {
  1444. return;
  1445. }
  1446. Vector<Pair<String, int>> sections = se->get_sections();
  1447. for (int i = 0; i < sections.size(); i++) {
  1448. help_overview->add_item(sections[i].first);
  1449. help_overview->set_item_metadata(i, sections[i].second);
  1450. }
  1451. }
  1452. void ScriptEditor::_update_script_colors() {
  1453. bool script_temperature_enabled = EditorSettings::get_singleton()->get("text_editor/script_list/script_temperature_enabled");
  1454. bool highlight_current = EditorSettings::get_singleton()->get("text_editor/script_list/highlight_current_script");
  1455. int hist_size = EditorSettings::get_singleton()->get("text_editor/script_list/script_temperature_history_size");
  1456. Color hot_color = get_color("accent_color", "Editor");
  1457. Color cold_color = get_color("font_color", "Editor");
  1458. for (int i = 0; i < script_list->get_item_count(); i++) {
  1459. int c = script_list->get_item_metadata(i);
  1460. Node *n = tab_container->get_child(c);
  1461. if (!n) {
  1462. continue;
  1463. }
  1464. script_list->set_item_custom_bg_color(i, Color(0, 0, 0, 0));
  1465. bool current = tab_container->get_current_tab() == c;
  1466. if (current && highlight_current) {
  1467. script_list->set_item_custom_bg_color(i, EditorSettings::get_singleton()->get("text_editor/script_list/current_script_background_color"));
  1468. } else if (script_temperature_enabled) {
  1469. if (!n->has_meta("__editor_pass")) {
  1470. continue;
  1471. }
  1472. int pass = n->get_meta("__editor_pass");
  1473. int h = edit_pass - pass;
  1474. if (h > hist_size) {
  1475. continue;
  1476. }
  1477. int non_zero_hist_size = (hist_size == 0) ? 1 : hist_size;
  1478. float v = Math::ease((edit_pass - pass) / float(non_zero_hist_size), 0.4);
  1479. script_list->set_item_custom_fg_color(i, hot_color.linear_interpolate(cold_color, v));
  1480. }
  1481. }
  1482. }
  1483. void ScriptEditor::_update_script_names() {
  1484. if (restoring_layout) {
  1485. return;
  1486. }
  1487. Set<Ref<Script>> used;
  1488. Node *edited = EditorNode::get_singleton()->get_edited_scene();
  1489. if (edited) {
  1490. _find_scripts(edited, edited, used);
  1491. }
  1492. script_list->clear();
  1493. bool split_script_help = EditorSettings::get_singleton()->get("text_editor/script_list/group_help_pages");
  1494. ScriptSortBy sort_by = (ScriptSortBy)(int)EditorSettings::get_singleton()->get("text_editor/script_list/sort_scripts_by");
  1495. ScriptListName display_as = (ScriptListName)(int)EditorSettings::get_singleton()->get("text_editor/script_list/list_script_names_as");
  1496. Vector<_ScriptEditorItemData> sedata;
  1497. for (int i = 0; i < tab_container->get_child_count(); i++) {
  1498. ScriptEditorBase *se = Object::cast_to<ScriptEditorBase>(tab_container->get_child(i));
  1499. if (se) {
  1500. Ref<Texture> icon = se->get_icon();
  1501. String path = se->get_edited_resource()->get_path();
  1502. bool built_in = !path.is_resource_file();
  1503. String name;
  1504. if (built_in) {
  1505. name = path.get_file();
  1506. const String &resource_name = se->get_edited_resource()->get_name();
  1507. if (resource_name != "") {
  1508. // If the built-in script has a custom resource name defined,
  1509. // display the built-in script name as follows: `ResourceName (scene_file.tscn)`
  1510. name = vformat("%s (%s)", resource_name, name.substr(0, name.find("::", 0)));
  1511. }
  1512. } else {
  1513. name = se->get_name();
  1514. }
  1515. _ScriptEditorItemData sd;
  1516. sd.icon = icon;
  1517. sd.name = name;
  1518. sd.tooltip = path;
  1519. sd.index = i;
  1520. sd.used = used.has(se->get_edited_resource());
  1521. sd.category = 0;
  1522. sd.ref = se;
  1523. switch (sort_by) {
  1524. case SORT_BY_NAME: {
  1525. sd.sort_key = name.to_lower();
  1526. } break;
  1527. case SORT_BY_PATH: {
  1528. sd.sort_key = path;
  1529. } break;
  1530. case SORT_BY_NONE: {
  1531. sd.sort_key = "";
  1532. } break;
  1533. }
  1534. switch (display_as) {
  1535. case DISPLAY_NAME: {
  1536. sd.name = name;
  1537. } break;
  1538. case DISPLAY_DIR_AND_NAME: {
  1539. if (!path.get_base_dir().get_file().empty()) {
  1540. sd.name = path.get_base_dir().get_file().plus_file(name);
  1541. } else {
  1542. sd.name = name;
  1543. }
  1544. } break;
  1545. case DISPLAY_FULL_PATH: {
  1546. sd.name = path;
  1547. } break;
  1548. }
  1549. sedata.push_back(sd);
  1550. }
  1551. Vector<String> disambiguated_script_names;
  1552. Vector<String> full_script_paths;
  1553. for (int j = 0; j < sedata.size(); j++) {
  1554. String name = sedata[j].name.replace("(*)", "");
  1555. ScriptListName script_display = (ScriptListName)(int)EditorSettings::get_singleton()->get("text_editor/script_list/list_script_names_as");
  1556. switch (script_display) {
  1557. case DISPLAY_NAME: {
  1558. name = name.get_file();
  1559. } break;
  1560. case DISPLAY_DIR_AND_NAME: {
  1561. name = name.get_base_dir().get_file().plus_file(name.get_file());
  1562. } break;
  1563. default:
  1564. break;
  1565. }
  1566. disambiguated_script_names.push_back(name);
  1567. full_script_paths.push_back(sedata[j].tooltip);
  1568. }
  1569. EditorNode::disambiguate_filenames(full_script_paths, disambiguated_script_names);
  1570. for (int j = 0; j < sedata.size(); j++) {
  1571. if (sedata[j].name.ends_with("(*)")) {
  1572. sedata.write[j].name = disambiguated_script_names[j] + "(*)";
  1573. } else {
  1574. sedata.write[j].name = disambiguated_script_names[j];
  1575. }
  1576. }
  1577. EditorHelp *eh = Object::cast_to<EditorHelp>(tab_container->get_child(i));
  1578. if (eh) {
  1579. String name = eh->get_class();
  1580. Ref<Texture> icon = get_icon("Help", "EditorIcons");
  1581. String tooltip = vformat(TTR("%s Class Reference"), name);
  1582. _ScriptEditorItemData sd;
  1583. sd.icon = icon;
  1584. sd.name = name;
  1585. sd.sort_key = name.to_lower();
  1586. sd.tooltip = tooltip;
  1587. sd.index = i;
  1588. sd.used = false;
  1589. sd.category = split_script_help ? 1 : 0;
  1590. sd.ref = eh;
  1591. sedata.push_back(sd);
  1592. }
  1593. }
  1594. if (_sort_list_on_update && !sedata.empty()) {
  1595. sedata.sort();
  1596. // change actual order of tab_container so that the order can be rearranged by user
  1597. int cur_tab = tab_container->get_current_tab();
  1598. int prev_tab = tab_container->get_previous_tab();
  1599. int new_cur_tab = -1;
  1600. int new_prev_tab = -1;
  1601. for (int i = 0; i < sedata.size(); i++) {
  1602. tab_container->move_child(sedata[i].ref, i);
  1603. if (new_prev_tab == -1 && sedata[i].index == prev_tab) {
  1604. new_prev_tab = i;
  1605. }
  1606. if (new_cur_tab == -1 && sedata[i].index == cur_tab) {
  1607. new_cur_tab = i;
  1608. }
  1609. // Update index of sd entries for sorted order
  1610. _ScriptEditorItemData sd = sedata[i];
  1611. sd.index = i;
  1612. sedata.set(i, sd);
  1613. }
  1614. tab_container->set_current_tab(new_prev_tab);
  1615. tab_container->set_current_tab(new_cur_tab);
  1616. _sort_list_on_update = false;
  1617. }
  1618. Vector<_ScriptEditorItemData> sedata_filtered;
  1619. for (int i = 0; i < sedata.size(); i++) {
  1620. String filter = filter_scripts->get_text();
  1621. if (filter == "" || filter.is_subsequence_ofi(sedata[i].name)) {
  1622. sedata_filtered.push_back(sedata[i]);
  1623. }
  1624. }
  1625. for (int i = 0; i < sedata_filtered.size(); i++) {
  1626. script_list->add_item(sedata_filtered[i].name, sedata_filtered[i].icon);
  1627. int index = script_list->get_item_count() - 1;
  1628. script_list->set_item_tooltip(index, sedata_filtered[i].tooltip);
  1629. script_list->set_item_metadata(index, sedata_filtered[i].index); /* Saving as metadata the script's index in the tab container and not the filtered one */
  1630. if (sedata_filtered[i].used) {
  1631. script_list->set_item_custom_bg_color(index, Color(88 / 255.0, 88 / 255.0, 60 / 255.0));
  1632. }
  1633. if (tab_container->get_current_tab() == sedata_filtered[i].index) {
  1634. script_list->select(index);
  1635. script_name_label->set_text(sedata_filtered[i].name);
  1636. script_icon->set_texture(sedata_filtered[i].icon);
  1637. ScriptEditorBase *se = _get_current_editor();
  1638. if (se) {
  1639. se->enable_editor();
  1640. _update_selected_editor_menu();
  1641. }
  1642. }
  1643. }
  1644. if (!waiting_update_names) {
  1645. _update_members_overview();
  1646. _update_help_overview();
  1647. } else {
  1648. waiting_update_names = false;
  1649. }
  1650. _update_members_overview_visibility();
  1651. _update_help_overview_visibility();
  1652. _update_script_colors();
  1653. file_menu->get_popup()->set_item_disabled(file_menu->get_popup()->get_item_index(FILE_REOPEN_CLOSED), previous_scripts.empty());
  1654. }
  1655. void ScriptEditor::_update_script_connections() {
  1656. for (int i = 0; i < tab_container->get_child_count(); i++) {
  1657. ScriptTextEditor *ste = Object::cast_to<ScriptTextEditor>(tab_container->get_child(i));
  1658. if (!ste) {
  1659. continue;
  1660. }
  1661. ste->_update_connected_methods();
  1662. }
  1663. }
  1664. Ref<TextFile> ScriptEditor::_load_text_file(const String &p_path, Error *r_error) {
  1665. if (r_error) {
  1666. *r_error = ERR_FILE_CANT_OPEN;
  1667. }
  1668. String local_path = ProjectSettings::get_singleton()->localize_path(p_path);
  1669. String path = ResourceLoader::path_remap(local_path);
  1670. TextFile *text_file = memnew(TextFile);
  1671. Ref<TextFile> text_res(text_file);
  1672. Error err = text_file->load_text(path);
  1673. ERR_FAIL_COND_V_MSG(err != OK, RES(), "Cannot load text file '" + path + "'.");
  1674. text_file->set_file_path(local_path);
  1675. text_file->set_path(local_path, true);
  1676. if (ResourceLoader::get_timestamp_on_load()) {
  1677. text_file->set_last_modified_time(FileAccess::get_modified_time(path));
  1678. }
  1679. if (r_error) {
  1680. *r_error = OK;
  1681. }
  1682. return text_res;
  1683. }
  1684. Error ScriptEditor::_save_text_file(Ref<TextFile> p_text_file, const String &p_path) {
  1685. Ref<TextFile> sqscr = p_text_file;
  1686. ERR_FAIL_COND_V(sqscr.is_null(), ERR_INVALID_PARAMETER);
  1687. String source = sqscr->get_text();
  1688. Error err;
  1689. FileAccess *file = FileAccess::open(p_path, FileAccess::WRITE, &err);
  1690. ERR_FAIL_COND_V_MSG(err, err, "Cannot save text file '" + p_path + "'.");
  1691. file->store_string(source);
  1692. if (file->get_error() != OK && file->get_error() != ERR_FILE_EOF) {
  1693. memdelete(file);
  1694. return ERR_CANT_CREATE;
  1695. }
  1696. file->close();
  1697. memdelete(file);
  1698. if (ResourceSaver::get_timestamp_on_save()) {
  1699. p_text_file->set_last_modified_time(FileAccess::get_modified_time(p_path));
  1700. }
  1701. _res_saved_callback(sqscr);
  1702. return OK;
  1703. }
  1704. bool ScriptEditor::edit(const RES &p_resource, int p_line, int p_col, bool p_grab_focus) {
  1705. if (p_resource.is_null()) {
  1706. return false;
  1707. }
  1708. Ref<Script> script = p_resource;
  1709. // Don't open dominant script if using an external editor.
  1710. const bool use_external_editor =
  1711. EditorSettings::get_singleton()->get("text_editor/external/use_external_editor") ||
  1712. (script.is_valid() && script->get_language()->overrides_external_editor());
  1713. const bool open_dominant = EditorSettings::get_singleton()->get("text_editor/files/open_dominant_script_on_scene_change");
  1714. const bool should_open = (open_dominant && !use_external_editor) || !EditorNode::get_singleton()->is_changing_scene();
  1715. if (script.is_valid() && script->get_language()->overrides_external_editor()) {
  1716. if (should_open) {
  1717. Error err = script->get_language()->open_in_external_editor(script, p_line >= 0 ? p_line : 0, p_col);
  1718. if (err != OK)
  1719. ERR_PRINT("Couldn't open script in the overridden external text editor");
  1720. }
  1721. return false;
  1722. }
  1723. if (use_external_editor &&
  1724. (debugger->get_dump_stack_script() != p_resource || debugger->get_debug_with_external_editor()) &&
  1725. p_resource->get_path().is_resource_file() &&
  1726. p_resource->get_class_name() != StringName("VisualScript")) {
  1727. String path = EditorSettings::get_singleton()->get("text_editor/external/exec_path");
  1728. String flags = EditorSettings::get_singleton()->get("text_editor/external/exec_flags");
  1729. List<String> args;
  1730. bool has_file_flag = false;
  1731. String script_path = ProjectSettings::get_singleton()->globalize_path(p_resource->get_path());
  1732. if (flags.size()) {
  1733. String project_path = ProjectSettings::get_singleton()->get_resource_path();
  1734. flags = flags.replacen("{line}", itos(p_line > 0 ? p_line : 0));
  1735. flags = flags.replacen("{col}", itos(p_col));
  1736. flags = flags.strip_edges().replace("\\\\", "\\");
  1737. int from = 0;
  1738. int num_chars = 0;
  1739. bool inside_quotes = false;
  1740. for (int i = 0; i < flags.size(); i++) {
  1741. if (flags[i] == '"' && (!i || flags[i - 1] != '\\')) {
  1742. if (!inside_quotes) {
  1743. from++;
  1744. }
  1745. inside_quotes = !inside_quotes;
  1746. } else if (flags[i] == '\0' || (!inside_quotes && flags[i] == ' ')) {
  1747. String arg = flags.substr(from, num_chars);
  1748. if (arg.find("{file}") != -1) {
  1749. has_file_flag = true;
  1750. }
  1751. // do path replacement here, else there will be issues with spaces and quotes
  1752. arg = arg.replacen("{project}", project_path);
  1753. arg = arg.replacen("{file}", script_path);
  1754. args.push_back(arg);
  1755. from = i + 1;
  1756. num_chars = 0;
  1757. } else {
  1758. num_chars++;
  1759. }
  1760. }
  1761. }
  1762. // Default to passing script path if no {file} flag is specified.
  1763. if (!has_file_flag) {
  1764. args.push_back(script_path);
  1765. }
  1766. Error err = OS::get_singleton()->execute(path, args, false);
  1767. if (err == OK) {
  1768. return false;
  1769. }
  1770. WARN_PRINT("Couldn't open external text editor, using internal");
  1771. }
  1772. for (int i = 0; i < tab_container->get_child_count(); i++) {
  1773. ScriptEditorBase *se = Object::cast_to<ScriptEditorBase>(tab_container->get_child(i));
  1774. if (!se) {
  1775. continue;
  1776. }
  1777. if ((script != nullptr && se->get_edited_resource() == p_resource) || se->get_edited_resource()->get_path() == p_resource->get_path()) {
  1778. if (should_open) {
  1779. se->enable_editor();
  1780. if (tab_container->get_current_tab() != i) {
  1781. _go_to_tab(i);
  1782. _update_script_names();
  1783. }
  1784. if (is_visible_in_tree()) {
  1785. se->ensure_focus();
  1786. }
  1787. if (p_line > 0) {
  1788. se->goto_line(p_line - 1);
  1789. }
  1790. }
  1791. _update_script_names();
  1792. script_list->ensure_current_is_visible();
  1793. return true;
  1794. }
  1795. }
  1796. // doesn't have it, make a new one
  1797. ScriptEditorBase *se = nullptr;
  1798. for (int i = script_editor_func_count - 1; i >= 0; i--) {
  1799. se = script_editor_funcs[i](p_resource);
  1800. if (se) {
  1801. break;
  1802. }
  1803. }
  1804. ERR_FAIL_COND_V(!se, false);
  1805. se->set_edited_resource(p_resource);
  1806. if (p_resource->get_class_name() != StringName("VisualScript")) {
  1807. bool highlighter_set = false;
  1808. for (int i = 0; i < syntax_highlighters_func_count; i++) {
  1809. SyntaxHighlighter *highlighter = syntax_highlighters_funcs[i]();
  1810. se->add_syntax_highlighter(highlighter);
  1811. if (script != nullptr && !highlighter_set) {
  1812. List<String> languages = highlighter->get_supported_languages();
  1813. if (languages.find(script->get_language()->get_name())) {
  1814. se->set_syntax_highlighter(highlighter);
  1815. highlighter_set = true;
  1816. }
  1817. }
  1818. }
  1819. }
  1820. tab_container->add_child(se);
  1821. if (p_grab_focus) {
  1822. se->enable_editor();
  1823. }
  1824. se->set_tooltip_request_func("_get_debug_tooltip", this);
  1825. if (se->get_edit_menu()) {
  1826. se->get_edit_menu()->hide();
  1827. menu_hb->add_child(se->get_edit_menu());
  1828. menu_hb->move_child(se->get_edit_menu(), 1);
  1829. }
  1830. if (p_grab_focus) {
  1831. _go_to_tab(tab_container->get_tab_count() - 1);
  1832. _add_recent_script(p_resource->get_path());
  1833. }
  1834. _sort_list_on_update = true;
  1835. _update_script_names();
  1836. _save_layout();
  1837. se->connect("name_changed", this, "_update_script_names");
  1838. se->connect("edited_script_changed", this, "_script_changed");
  1839. se->connect("request_help", this, "_help_search");
  1840. se->connect("request_open_script_at_line", this, "_goto_script_line");
  1841. se->connect("go_to_help", this, "_help_class_goto");
  1842. se->connect("request_save_history", this, "_save_history");
  1843. se->connect("search_in_files_requested", this, "_on_find_in_files_requested");
  1844. //test for modification, maybe the script was not edited but was loaded
  1845. _test_script_times_on_disk(p_resource);
  1846. _update_modified_scripts_for_external_editor(p_resource);
  1847. if (p_line > 0) {
  1848. se->goto_line(p_line - 1);
  1849. }
  1850. notify_script_changed(p_resource);
  1851. return true;
  1852. }
  1853. void ScriptEditor::save_all_scripts() {
  1854. for (int i = 0; i < tab_container->get_child_count(); i++) {
  1855. ScriptEditorBase *se = Object::cast_to<ScriptEditorBase>(tab_container->get_child(i));
  1856. if (!se) {
  1857. continue;
  1858. }
  1859. if (convert_indent_on_save) {
  1860. if (use_space_indentation) {
  1861. se->convert_indent_to_spaces();
  1862. } else {
  1863. se->convert_indent_to_tabs();
  1864. }
  1865. }
  1866. if (trim_trailing_whitespace_on_save) {
  1867. se->trim_trailing_whitespace();
  1868. }
  1869. se->insert_final_newline();
  1870. if (!se->is_unsaved()) {
  1871. continue;
  1872. }
  1873. RES edited_res = se->get_edited_resource();
  1874. if (edited_res.is_valid()) {
  1875. se->apply_code();
  1876. }
  1877. if (edited_res->get_path() != "" && edited_res->get_path().find("local://") == -1 && edited_res->get_path().find("::") == -1) {
  1878. Ref<TextFile> text_file = edited_res;
  1879. if (text_file != nullptr) {
  1880. _save_text_file(text_file, text_file->get_path());
  1881. continue;
  1882. }
  1883. editor->save_resource(edited_res); //external script, save it
  1884. }
  1885. }
  1886. _update_script_names();
  1887. EditorFileSystem::get_singleton()->update_script_classes();
  1888. }
  1889. void ScriptEditor::apply_scripts() const {
  1890. for (int i = 0; i < tab_container->get_child_count(); i++) {
  1891. ScriptEditorBase *se = Object::cast_to<ScriptEditorBase>(tab_container->get_child(i));
  1892. if (!se) {
  1893. continue;
  1894. }
  1895. se->apply_code();
  1896. }
  1897. }
  1898. void ScriptEditor::open_script_create_dialog(const String &p_base_name, const String &p_base_path) {
  1899. _menu_option(FILE_NEW);
  1900. script_create_dialog->config(p_base_name, p_base_path);
  1901. }
  1902. void ScriptEditor::_editor_play() {
  1903. debugger->start();
  1904. debug_menu->get_popup()->grab_focus();
  1905. debug_menu->get_popup()->set_item_disabled(debug_menu->get_popup()->get_item_index(DEBUG_NEXT), true);
  1906. debug_menu->get_popup()->set_item_disabled(debug_menu->get_popup()->get_item_index(DEBUG_STEP), true);
  1907. debug_menu->get_popup()->set_item_disabled(debug_menu->get_popup()->get_item_index(DEBUG_BREAK), false);
  1908. debug_menu->get_popup()->set_item_disabled(debug_menu->get_popup()->get_item_index(DEBUG_CONTINUE), true);
  1909. }
  1910. void ScriptEditor::_editor_pause() {
  1911. }
  1912. void ScriptEditor::_editor_stop() {
  1913. debugger->stop();
  1914. debug_menu->get_popup()->set_item_disabled(debug_menu->get_popup()->get_item_index(DEBUG_NEXT), true);
  1915. debug_menu->get_popup()->set_item_disabled(debug_menu->get_popup()->get_item_index(DEBUG_STEP), true);
  1916. debug_menu->get_popup()->set_item_disabled(debug_menu->get_popup()->get_item_index(DEBUG_BREAK), true);
  1917. debug_menu->get_popup()->set_item_disabled(debug_menu->get_popup()->get_item_index(DEBUG_CONTINUE), true);
  1918. for (int i = 0; i < tab_container->get_child_count(); i++) {
  1919. ScriptEditorBase *se = Object::cast_to<ScriptEditorBase>(tab_container->get_child(i));
  1920. if (!se) {
  1921. continue;
  1922. }
  1923. se->set_debugger_active(false);
  1924. }
  1925. }
  1926. void ScriptEditor::_add_callback(Object *p_obj, const String &p_function, const PoolStringArray &p_args) {
  1927. ERR_FAIL_COND(!p_obj);
  1928. Ref<Script> script = p_obj->get_script();
  1929. ERR_FAIL_COND(!script.is_valid());
  1930. editor->push_item(script.ptr());
  1931. for (int i = 0; i < tab_container->get_child_count(); i++) {
  1932. ScriptEditorBase *se = Object::cast_to<ScriptEditorBase>(tab_container->get_child(i));
  1933. if (!se) {
  1934. continue;
  1935. }
  1936. if (se->get_edited_resource() != script) {
  1937. continue;
  1938. }
  1939. se->add_callback(p_function, p_args);
  1940. _go_to_tab(i);
  1941. script_list->select(script_list->find_metadata(i));
  1942. // Save the current script so the changes can be picked up by an external editor.
  1943. _save_current_script();
  1944. break;
  1945. }
  1946. }
  1947. void ScriptEditor::_save_layout() {
  1948. if (restoring_layout) {
  1949. return;
  1950. }
  1951. editor->save_layout();
  1952. }
  1953. void ScriptEditor::_editor_settings_changed() {
  1954. trim_trailing_whitespace_on_save = EditorSettings::get_singleton()->get("text_editor/files/trim_trailing_whitespace_on_save");
  1955. convert_indent_on_save = EditorSettings::get_singleton()->get("text_editor/indent/convert_indent_on_save");
  1956. use_space_indentation = EditorSettings::get_singleton()->get("text_editor/indent/type");
  1957. members_overview_enabled = EditorSettings::get_singleton()->get("text_editor/script_list/show_members_overview");
  1958. help_overview_enabled = EditorSettings::get_singleton()->get("text_editor/help/show_help_index");
  1959. _update_members_overview_visibility();
  1960. _update_help_overview_visibility();
  1961. _update_autosave_timer();
  1962. if (current_theme == "") {
  1963. current_theme = EditorSettings::get_singleton()->get("text_editor/theme/color_theme");
  1964. } else if (current_theme != EditorSettings::get_singleton()->get("text_editor/theme/color_theme")) {
  1965. current_theme = EditorSettings::get_singleton()->get("text_editor/theme/color_theme");
  1966. EditorSettings::get_singleton()->load_text_editor_theme();
  1967. }
  1968. for (int i = 0; i < tab_container->get_child_count(); i++) {
  1969. ScriptEditorBase *se = Object::cast_to<ScriptEditorBase>(tab_container->get_child(i));
  1970. if (!se) {
  1971. continue;
  1972. }
  1973. se->update_settings();
  1974. }
  1975. _update_script_colors();
  1976. _update_script_names();
  1977. ScriptServer::set_reload_scripts_on_save(EDITOR_DEF("text_editor/files/auto_reload_and_parse_scripts_on_save", true));
  1978. }
  1979. void ScriptEditor::_autosave_scripts() {
  1980. save_all_scripts();
  1981. }
  1982. void ScriptEditor::_update_autosave_timer() {
  1983. if (!autosave_timer->is_inside_tree()) {
  1984. return;
  1985. }
  1986. float autosave_time = EditorSettings::get_singleton()->get("text_editor/files/autosave_interval_secs");
  1987. if (autosave_time > 0) {
  1988. autosave_timer->set_wait_time(autosave_time);
  1989. autosave_timer->start();
  1990. } else {
  1991. autosave_timer->stop();
  1992. }
  1993. }
  1994. void ScriptEditor::_tree_changed() {
  1995. if (waiting_update_names) {
  1996. return;
  1997. }
  1998. waiting_update_names = true;
  1999. call_deferred("_update_script_names");
  2000. call_deferred("_update_script_connections");
  2001. }
  2002. void ScriptEditor::_script_split_dragged(float) {
  2003. _save_layout();
  2004. }
  2005. Variant ScriptEditor::get_drag_data_fw(const Point2 &p_point, Control *p_from) {
  2006. if (tab_container->get_child_count() == 0) {
  2007. return Variant();
  2008. }
  2009. Node *cur_node = tab_container->get_child(tab_container->get_current_tab());
  2010. HBoxContainer *drag_preview = memnew(HBoxContainer);
  2011. String preview_name = "";
  2012. Ref<Texture> preview_icon;
  2013. ScriptEditorBase *se = Object::cast_to<ScriptEditorBase>(cur_node);
  2014. if (se) {
  2015. preview_name = se->get_name();
  2016. preview_icon = se->get_icon();
  2017. }
  2018. EditorHelp *eh = Object::cast_to<EditorHelp>(cur_node);
  2019. if (eh) {
  2020. preview_name = eh->get_class();
  2021. preview_icon = get_icon("Help", "EditorIcons");
  2022. }
  2023. if (!preview_icon.is_null()) {
  2024. TextureRect *tf = memnew(TextureRect);
  2025. tf->set_texture(preview_icon);
  2026. drag_preview->add_child(tf);
  2027. }
  2028. Label *label = memnew(Label(preview_name));
  2029. drag_preview->add_child(label);
  2030. set_drag_preview(drag_preview);
  2031. Dictionary drag_data;
  2032. drag_data["type"] = "script_list_element"; // using a custom type because node caused problems when dragging to scene tree
  2033. drag_data["script_list_element"] = cur_node;
  2034. return drag_data;
  2035. }
  2036. bool ScriptEditor::can_drop_data_fw(const Point2 &p_point, const Variant &p_data, Control *p_from) const {
  2037. Dictionary d = p_data;
  2038. if (!d.has("type")) {
  2039. return false;
  2040. }
  2041. if (String(d["type"]) == "script_list_element") {
  2042. Node *node = d["script_list_element"];
  2043. ScriptEditorBase *se = Object::cast_to<ScriptEditorBase>(node);
  2044. if (se) {
  2045. return true;
  2046. }
  2047. EditorHelp *eh = Object::cast_to<EditorHelp>(node);
  2048. if (eh) {
  2049. return true;
  2050. }
  2051. }
  2052. if (String(d["type"]) == "nodes") {
  2053. Array nodes = d["nodes"];
  2054. if (nodes.size() == 0) {
  2055. return false;
  2056. }
  2057. Node *node = get_node((nodes[0]));
  2058. ScriptEditorBase *se = Object::cast_to<ScriptEditorBase>(node);
  2059. if (se) {
  2060. return true;
  2061. }
  2062. EditorHelp *eh = Object::cast_to<EditorHelp>(node);
  2063. if (eh) {
  2064. return true;
  2065. }
  2066. }
  2067. if (String(d["type"]) == "files") {
  2068. Vector<String> files = d["files"];
  2069. if (files.size() == 0) {
  2070. return false; //weird
  2071. }
  2072. for (int i = 0; i < files.size(); i++) {
  2073. String file = files[i];
  2074. if (file == "" || !FileAccess::exists(file)) {
  2075. continue;
  2076. }
  2077. Ref<Script> scr = ResourceLoader::load(file);
  2078. if (scr.is_valid()) {
  2079. return true;
  2080. }
  2081. }
  2082. return true;
  2083. }
  2084. return false;
  2085. }
  2086. void ScriptEditor::drop_data_fw(const Point2 &p_point, const Variant &p_data, Control *p_from) {
  2087. if (!can_drop_data_fw(p_point, p_data, p_from)) {
  2088. return;
  2089. }
  2090. Dictionary d = p_data;
  2091. if (!d.has("type")) {
  2092. return;
  2093. }
  2094. if (String(d["type"]) == "script_list_element") {
  2095. Node *node = d["script_list_element"];
  2096. ScriptEditorBase *se = Object::cast_to<ScriptEditorBase>(node);
  2097. EditorHelp *eh = Object::cast_to<EditorHelp>(node);
  2098. if (se || eh) {
  2099. int new_index = 0;
  2100. if (script_list->get_item_count() > 0) {
  2101. new_index = script_list->get_item_metadata(script_list->get_item_at_position(p_point));
  2102. }
  2103. tab_container->move_child(node, new_index);
  2104. tab_container->set_current_tab(new_index);
  2105. _update_script_names();
  2106. }
  2107. }
  2108. if (String(d["type"]) == "nodes") {
  2109. Array nodes = d["nodes"];
  2110. if (nodes.size() == 0) {
  2111. return;
  2112. }
  2113. Node *node = get_node(nodes[0]);
  2114. ScriptEditorBase *se = Object::cast_to<ScriptEditorBase>(node);
  2115. EditorHelp *eh = Object::cast_to<EditorHelp>(node);
  2116. if (se || eh) {
  2117. int new_index = 0;
  2118. if (script_list->get_item_count() > 0) {
  2119. new_index = script_list->get_item_metadata(script_list->get_item_at_position(p_point));
  2120. }
  2121. tab_container->move_child(node, new_index);
  2122. tab_container->set_current_tab(new_index);
  2123. _update_script_names();
  2124. }
  2125. }
  2126. if (String(d["type"]) == "files") {
  2127. Vector<String> files = d["files"];
  2128. int new_index = 0;
  2129. if (script_list->get_item_count() > 0) {
  2130. new_index = script_list->get_item_metadata(script_list->get_item_at_position(p_point));
  2131. }
  2132. int num_tabs_before = tab_container->get_child_count();
  2133. for (int i = 0; i < files.size(); i++) {
  2134. String file = files[i];
  2135. if (file == "" || !FileAccess::exists(file)) {
  2136. continue;
  2137. }
  2138. Ref<Script> scr = ResourceLoader::load(file);
  2139. if (scr.is_valid()) {
  2140. edit(scr);
  2141. if (tab_container->get_child_count() > num_tabs_before) {
  2142. tab_container->move_child(tab_container->get_child(tab_container->get_child_count() - 1), new_index);
  2143. num_tabs_before = tab_container->get_child_count();
  2144. } else { /* Maybe script was already open */
  2145. tab_container->move_child(tab_container->get_child(tab_container->get_current_tab()), new_index);
  2146. }
  2147. }
  2148. }
  2149. tab_container->set_current_tab(new_index);
  2150. _update_script_names();
  2151. }
  2152. }
  2153. void ScriptEditor::_unhandled_input(const Ref<InputEvent> &p_event) {
  2154. ERR_FAIL_COND(p_event.is_null());
  2155. if (!is_visible_in_tree() || !p_event->is_pressed() || p_event->is_echo()) {
  2156. return;
  2157. }
  2158. if (ED_IS_SHORTCUT("script_editor/next_script", p_event)) {
  2159. if (script_list->get_item_count() > 1) {
  2160. int next_tab = script_list->get_current() + 1;
  2161. next_tab %= script_list->get_item_count();
  2162. _go_to_tab(script_list->get_item_metadata(next_tab));
  2163. _update_script_names();
  2164. }
  2165. }
  2166. if (ED_IS_SHORTCUT("script_editor/prev_script", p_event)) {
  2167. if (script_list->get_item_count() > 1) {
  2168. int next_tab = script_list->get_current() - 1;
  2169. next_tab = next_tab >= 0 ? next_tab : script_list->get_item_count() - 1;
  2170. _go_to_tab(script_list->get_item_metadata(next_tab));
  2171. _update_script_names();
  2172. }
  2173. }
  2174. if (ED_IS_SHORTCUT("script_editor/window_move_up", p_event)) {
  2175. _menu_option(WINDOW_MOVE_UP);
  2176. }
  2177. if (ED_IS_SHORTCUT("script_editor/window_move_down", p_event)) {
  2178. _menu_option(WINDOW_MOVE_DOWN);
  2179. }
  2180. }
  2181. void ScriptEditor::_script_list_gui_input(const Ref<InputEvent> &ev) {
  2182. Ref<InputEventMouseButton> mb = ev;
  2183. if (mb.is_valid() && mb->is_pressed()) {
  2184. switch (mb->get_button_index()) {
  2185. case BUTTON_MIDDLE: {
  2186. // Right-click selects automatically; middle-click does not.
  2187. int idx = script_list->get_item_at_position(mb->get_position(), true);
  2188. if (idx >= 0) {
  2189. script_list->select(idx);
  2190. _script_selected(idx);
  2191. _menu_option(FILE_CLOSE);
  2192. }
  2193. } break;
  2194. case BUTTON_RIGHT: {
  2195. _make_script_list_context_menu();
  2196. } break;
  2197. }
  2198. }
  2199. }
  2200. void ScriptEditor::_make_script_list_context_menu() {
  2201. context_menu->clear();
  2202. int selected = tab_container->get_current_tab();
  2203. if (selected < 0 || selected >= tab_container->get_child_count()) {
  2204. return;
  2205. }
  2206. ScriptEditorBase *se = Object::cast_to<ScriptEditorBase>(tab_container->get_child(selected));
  2207. if (se) {
  2208. context_menu->add_shortcut(ED_GET_SHORTCUT("script_editor/save"), FILE_SAVE);
  2209. context_menu->add_shortcut(ED_GET_SHORTCUT("script_editor/save_as"), FILE_SAVE_AS);
  2210. }
  2211. context_menu->add_shortcut(ED_GET_SHORTCUT("script_editor/close_file"), FILE_CLOSE);
  2212. context_menu->add_shortcut(ED_GET_SHORTCUT("script_editor/close_all"), CLOSE_ALL);
  2213. context_menu->add_shortcut(ED_GET_SHORTCUT("script_editor/close_other_tabs"), CLOSE_OTHER_TABS);
  2214. context_menu->add_separator();
  2215. if (se) {
  2216. Ref<Script> scr = se->get_edited_resource();
  2217. if (scr != nullptr) {
  2218. context_menu->add_shortcut(ED_GET_SHORTCUT("script_editor/reload_script_soft"), FILE_TOOL_RELOAD_SOFT);
  2219. if (!scr.is_null() && scr->is_tool()) {
  2220. context_menu->add_shortcut(ED_GET_SHORTCUT("script_editor/run_file"), FILE_RUN);
  2221. context_menu->add_separator();
  2222. }
  2223. }
  2224. context_menu->add_shortcut(ED_GET_SHORTCUT("script_editor/copy_path"), FILE_COPY_PATH);
  2225. context_menu->add_shortcut(ED_GET_SHORTCUT("script_editor/show_in_file_system"), SHOW_IN_FILE_SYSTEM);
  2226. context_menu->add_separator();
  2227. }
  2228. context_menu->add_shortcut(ED_GET_SHORTCUT("script_editor/window_move_up"), WINDOW_MOVE_UP);
  2229. context_menu->add_shortcut(ED_GET_SHORTCUT("script_editor/window_move_down"), WINDOW_MOVE_DOWN);
  2230. context_menu->add_shortcut(ED_GET_SHORTCUT("script_editor/window_sort"), WINDOW_SORT);
  2231. context_menu->add_shortcut(ED_GET_SHORTCUT("script_editor/toggle_scripts_panel"), TOGGLE_SCRIPTS_PANEL);
  2232. context_menu->set_position(get_global_transform().xform(get_local_mouse_position()));
  2233. context_menu->set_size(Vector2(1, 1));
  2234. context_menu->popup();
  2235. }
  2236. void ScriptEditor::set_window_layout(Ref<ConfigFile> p_layout) {
  2237. if (!bool(EDITOR_DEF("text_editor/files/restore_scripts_on_load", true))) {
  2238. return;
  2239. }
  2240. if (!p_layout->has_section_key("ScriptEditor", "open_scripts") && !p_layout->has_section_key("ScriptEditor", "open_help")) {
  2241. return;
  2242. }
  2243. Array scripts = p_layout->get_value("ScriptEditor", "open_scripts");
  2244. Array helps;
  2245. if (p_layout->has_section_key("ScriptEditor", "open_help")) {
  2246. helps = p_layout->get_value("ScriptEditor", "open_help");
  2247. }
  2248. restoring_layout = true;
  2249. List<String> extensions;
  2250. ResourceLoader::get_recognized_extensions_for_type("Script", &extensions);
  2251. for (int i = 0; i < scripts.size(); i++) {
  2252. String path = scripts[i];
  2253. Dictionary script_info = scripts[i];
  2254. if (!script_info.empty()) {
  2255. path = script_info["path"];
  2256. }
  2257. if (!FileAccess::exists(path)) {
  2258. continue;
  2259. }
  2260. if (extensions.find(path.get_extension())) {
  2261. Ref<Script> scr = ResourceLoader::load(path);
  2262. if (!scr.is_valid()) {
  2263. continue;
  2264. }
  2265. if (!edit(scr, false)) {
  2266. continue;
  2267. }
  2268. } else {
  2269. Error error;
  2270. Ref<TextFile> text_file = _load_text_file(path, &error);
  2271. if (error != OK || !text_file.is_valid()) {
  2272. continue;
  2273. }
  2274. if (!edit(text_file, false)) {
  2275. continue;
  2276. }
  2277. }
  2278. if (!script_info.empty()) {
  2279. ScriptEditorBase *se = Object::cast_to<ScriptEditorBase>(tab_container->get_child(tab_container->get_tab_count() - 1));
  2280. if (se) {
  2281. se->set_edit_state(script_info["state"]);
  2282. }
  2283. }
  2284. }
  2285. for (int i = 0; i < helps.size(); i++) {
  2286. String path = helps[i];
  2287. if (path == "") { // invalid, skip
  2288. continue;
  2289. }
  2290. _help_class_open(path);
  2291. }
  2292. for (int i = 0; i < tab_container->get_child_count(); i++) {
  2293. tab_container->get_child(i)->set_meta("__editor_pass", Variant());
  2294. }
  2295. if (p_layout->has_section_key("ScriptEditor", "split_offset")) {
  2296. script_split->set_split_offset(p_layout->get_value("ScriptEditor", "split_offset"));
  2297. }
  2298. restoring_layout = false;
  2299. _update_script_names();
  2300. }
  2301. void ScriptEditor::get_window_layout(Ref<ConfigFile> p_layout) {
  2302. Array scripts;
  2303. Array helps;
  2304. for (int i = 0; i < tab_container->get_child_count(); i++) {
  2305. ScriptEditorBase *se = Object::cast_to<ScriptEditorBase>(tab_container->get_child(i));
  2306. if (se) {
  2307. String path = se->get_edited_resource()->get_path();
  2308. if (!path.is_resource_file()) {
  2309. continue;
  2310. }
  2311. Dictionary script_info;
  2312. script_info["path"] = path;
  2313. script_info["state"] = se->get_edit_state();
  2314. scripts.push_back(script_info);
  2315. }
  2316. EditorHelp *eh = Object::cast_to<EditorHelp>(tab_container->get_child(i));
  2317. if (eh) {
  2318. helps.push_back(eh->get_class());
  2319. }
  2320. }
  2321. p_layout->set_value("ScriptEditor", "open_scripts", scripts);
  2322. p_layout->set_value("ScriptEditor", "open_help", helps);
  2323. p_layout->set_value("ScriptEditor", "split_offset", script_split->get_split_offset());
  2324. }
  2325. void ScriptEditor::_help_class_open(const String &p_class) {
  2326. if (p_class == "") {
  2327. return;
  2328. }
  2329. for (int i = 0; i < tab_container->get_child_count(); i++) {
  2330. EditorHelp *eh = Object::cast_to<EditorHelp>(tab_container->get_child(i));
  2331. if (eh && eh->get_class() == p_class) {
  2332. _go_to_tab(i);
  2333. _update_script_names();
  2334. return;
  2335. }
  2336. }
  2337. EditorHelp *eh = memnew(EditorHelp);
  2338. eh->set_name(p_class);
  2339. tab_container->add_child(eh);
  2340. _go_to_tab(tab_container->get_tab_count() - 1);
  2341. eh->go_to_class(p_class, 0);
  2342. eh->connect("go_to_help", this, "_help_class_goto");
  2343. _add_recent_script(p_class);
  2344. _sort_list_on_update = true;
  2345. _update_script_names();
  2346. _save_layout();
  2347. }
  2348. void ScriptEditor::_help_class_goto(const String &p_desc) {
  2349. String cname = p_desc.get_slice(":", 1);
  2350. for (int i = 0; i < tab_container->get_child_count(); i++) {
  2351. EditorHelp *eh = Object::cast_to<EditorHelp>(tab_container->get_child(i));
  2352. if (eh && eh->get_class() == cname) {
  2353. _go_to_tab(i);
  2354. eh->go_to_help(p_desc);
  2355. _update_script_names();
  2356. return;
  2357. }
  2358. }
  2359. EditorHelp *eh = memnew(EditorHelp);
  2360. eh->set_name(cname);
  2361. tab_container->add_child(eh);
  2362. _go_to_tab(tab_container->get_tab_count() - 1);
  2363. eh->go_to_help(p_desc);
  2364. eh->connect("go_to_help", this, "_help_class_goto");
  2365. _add_recent_script(eh->get_class());
  2366. _sort_list_on_update = true;
  2367. _update_script_names();
  2368. _save_layout();
  2369. }
  2370. void ScriptEditor::_update_selected_editor_menu() {
  2371. for (int i = 0; i < tab_container->get_child_count(); i++) {
  2372. bool current = tab_container->get_current_tab() == i;
  2373. ScriptEditorBase *se = Object::cast_to<ScriptEditorBase>(tab_container->get_child(i));
  2374. if (se && se->get_edit_menu()) {
  2375. if (current) {
  2376. se->get_edit_menu()->show();
  2377. } else {
  2378. se->get_edit_menu()->hide();
  2379. }
  2380. }
  2381. }
  2382. EditorHelp *eh = Object::cast_to<EditorHelp>(tab_container->get_current_tab_control());
  2383. script_search_menu->get_popup()->clear();
  2384. if (eh) {
  2385. script_search_menu->get_popup()->add_shortcut(ED_SHORTCUT("script_editor/find", TTR("Find..."), KEY_MASK_CMD | KEY_F), HELP_SEARCH_FIND);
  2386. script_search_menu->get_popup()->add_shortcut(ED_SHORTCUT("script_editor/find_next", TTR("Find Next"), KEY_F3), HELP_SEARCH_FIND_NEXT);
  2387. script_search_menu->get_popup()->add_shortcut(ED_SHORTCUT("script_editor/find_previous", TTR("Find Previous"), KEY_MASK_SHIFT | KEY_F3), HELP_SEARCH_FIND_PREVIOUS);
  2388. script_search_menu->get_popup()->add_separator();
  2389. script_search_menu->get_popup()->add_shortcut(ED_SHORTCUT("script_editor/find_in_files", TTR("Find in Files"), KEY_MASK_CMD | KEY_MASK_SHIFT | KEY_F), SEARCH_IN_FILES);
  2390. script_search_menu->show();
  2391. } else {
  2392. if (tab_container->get_child_count() == 0) {
  2393. script_search_menu->get_popup()->add_shortcut(ED_SHORTCUT("script_editor/find_in_files", TTR("Find in Files"), KEY_MASK_CMD | KEY_MASK_SHIFT | KEY_F), SEARCH_IN_FILES);
  2394. script_search_menu->show();
  2395. } else {
  2396. script_search_menu->hide();
  2397. }
  2398. }
  2399. }
  2400. void ScriptEditor::_update_history_pos(int p_new_pos) {
  2401. Node *n = tab_container->get_current_tab_control();
  2402. if (Object::cast_to<ScriptEditorBase>(n)) {
  2403. history.write[history_pos].state = Object::cast_to<ScriptEditorBase>(n)->get_edit_state();
  2404. }
  2405. if (Object::cast_to<EditorHelp>(n)) {
  2406. history.write[history_pos].state = Object::cast_to<EditorHelp>(n)->get_scroll();
  2407. }
  2408. history_pos = p_new_pos;
  2409. tab_container->set_current_tab(history[history_pos].control->get_index());
  2410. n = history[history_pos].control;
  2411. if (Object::cast_to<ScriptEditorBase>(n)) {
  2412. Object::cast_to<ScriptEditorBase>(n)->set_edit_state(history[history_pos].state);
  2413. Object::cast_to<ScriptEditorBase>(n)->ensure_focus();
  2414. Ref<Script> script = Object::cast_to<ScriptEditorBase>(n)->get_edited_resource();
  2415. if (script != nullptr) {
  2416. notify_script_changed(script);
  2417. }
  2418. }
  2419. if (Object::cast_to<EditorHelp>(n)) {
  2420. Object::cast_to<EditorHelp>(n)->set_scroll(history[history_pos].state);
  2421. Object::cast_to<EditorHelp>(n)->set_focused();
  2422. }
  2423. n->set_meta("__editor_pass", ++edit_pass);
  2424. _update_script_names();
  2425. _update_history_arrows();
  2426. _update_selected_editor_menu();
  2427. }
  2428. void ScriptEditor::_history_forward() {
  2429. if (history_pos < history.size() - 1) {
  2430. _update_history_pos(history_pos + 1);
  2431. }
  2432. }
  2433. void ScriptEditor::_history_back() {
  2434. if (history_pos > 0) {
  2435. _update_history_pos(history_pos - 1);
  2436. }
  2437. }
  2438. Vector<Ref<Script>> ScriptEditor::get_open_scripts() const {
  2439. Vector<Ref<Script>> out_scripts = Vector<Ref<Script>>();
  2440. for (int i = 0; i < tab_container->get_child_count(); i++) {
  2441. ScriptEditorBase *se = Object::cast_to<ScriptEditorBase>(tab_container->get_child(i));
  2442. if (!se) {
  2443. continue;
  2444. }
  2445. Ref<Script> script = se->get_edited_resource();
  2446. if (script != nullptr) {
  2447. out_scripts.push_back(script);
  2448. }
  2449. }
  2450. return out_scripts;
  2451. }
  2452. void ScriptEditor::set_scene_root_script(Ref<Script> p_script) {
  2453. // Don't open dominant script if using an external editor.
  2454. const bool use_external_editor =
  2455. EditorSettings::get_singleton()->get("text_editor/external/use_external_editor") ||
  2456. (p_script.is_valid() && p_script->get_language()->overrides_external_editor());
  2457. const bool open_dominant = EditorSettings::get_singleton()->get("text_editor/files/open_dominant_script_on_scene_change");
  2458. if (open_dominant && !use_external_editor && p_script.is_valid()) {
  2459. edit(p_script);
  2460. }
  2461. }
  2462. bool ScriptEditor::script_goto_method(Ref<Script> p_script, const String &p_method) {
  2463. int line = p_script->get_member_line(p_method);
  2464. if (line == -1) {
  2465. return false;
  2466. }
  2467. return edit(p_script, line, 0);
  2468. }
  2469. void ScriptEditor::set_live_auto_reload_running_scripts(bool p_enabled) {
  2470. auto_reload_running_scripts = p_enabled;
  2471. }
  2472. void ScriptEditor::_help_search(String p_text) {
  2473. help_search_dialog->popup_dialog(p_text);
  2474. }
  2475. void ScriptEditor::_open_script_request(const String &p_path) {
  2476. Ref<Script> script = ResourceLoader::load(p_path);
  2477. if (script.is_valid()) {
  2478. script_editor->edit(script, false);
  2479. return;
  2480. }
  2481. Error err;
  2482. Ref<TextFile> text_file = script_editor->_load_text_file(p_path, &err);
  2483. if (text_file.is_valid()) {
  2484. script_editor->edit(text_file, false);
  2485. return;
  2486. }
  2487. }
  2488. int ScriptEditor::syntax_highlighters_func_count = 0;
  2489. CreateSyntaxHighlighterFunc ScriptEditor::syntax_highlighters_funcs[ScriptEditor::SYNTAX_HIGHLIGHTER_FUNC_MAX];
  2490. void ScriptEditor::register_create_syntax_highlighter_function(CreateSyntaxHighlighterFunc p_func) {
  2491. ERR_FAIL_COND(syntax_highlighters_func_count == SYNTAX_HIGHLIGHTER_FUNC_MAX);
  2492. syntax_highlighters_funcs[syntax_highlighters_func_count++] = p_func;
  2493. }
  2494. int ScriptEditor::script_editor_func_count = 0;
  2495. CreateScriptEditorFunc ScriptEditor::script_editor_funcs[ScriptEditor::SCRIPT_EDITOR_FUNC_MAX];
  2496. void ScriptEditor::register_create_script_editor_function(CreateScriptEditorFunc p_func) {
  2497. ERR_FAIL_COND(script_editor_func_count == SCRIPT_EDITOR_FUNC_MAX);
  2498. script_editor_funcs[script_editor_func_count++] = p_func;
  2499. }
  2500. void ScriptEditor::_script_changed() {
  2501. NodeDock::singleton->update_lists();
  2502. }
  2503. void ScriptEditor::_on_find_in_files_requested(String text) {
  2504. find_in_files_dialog->set_search_text(text);
  2505. find_in_files_dialog->popup_centered_minsize();
  2506. }
  2507. void ScriptEditor::_on_find_in_files_result_selected(String fpath, int line_number, int begin, int end) {
  2508. if (ResourceLoader::exists(fpath)) {
  2509. RES res = ResourceLoader::load(fpath);
  2510. if (fpath.get_extension() == "shader") {
  2511. ShaderEditorPlugin *shader_editor = Object::cast_to<ShaderEditorPlugin>(EditorNode::get_singleton()->get_editor_data().get_editor("Shader"));
  2512. shader_editor->edit(res.ptr());
  2513. shader_editor->make_visible(true);
  2514. shader_editor->get_shader_editor()->goto_line_selection(line_number - 1, begin, end);
  2515. return;
  2516. } else {
  2517. Ref<Script> script = res;
  2518. if (script.is_valid()) {
  2519. edit(script);
  2520. ScriptTextEditor *ste = Object::cast_to<ScriptTextEditor>(_get_current_editor());
  2521. if (ste) {
  2522. ste->goto_line_selection(line_number - 1, begin, end);
  2523. }
  2524. return;
  2525. }
  2526. }
  2527. }
  2528. // If the file is not a valid resource/script, load it as a text file.
  2529. Error err;
  2530. Ref<TextFile> text_file = _load_text_file(fpath, &err);
  2531. if (text_file.is_valid()) {
  2532. edit(text_file);
  2533. TextEditor *te = Object::cast_to<TextEditor>(_get_current_editor());
  2534. if (te) {
  2535. te->goto_line_selection(line_number - 1, begin, end);
  2536. }
  2537. }
  2538. }
  2539. void ScriptEditor::_start_find_in_files(bool with_replace) {
  2540. FindInFiles *f = find_in_files->get_finder();
  2541. f->set_search_text(find_in_files_dialog->get_search_text());
  2542. f->set_match_case(find_in_files_dialog->is_match_case());
  2543. f->set_whole_words(find_in_files_dialog->is_whole_words());
  2544. f->set_folder(find_in_files_dialog->get_folder());
  2545. f->set_filter(find_in_files_dialog->get_filter());
  2546. find_in_files->set_with_replace(with_replace);
  2547. find_in_files->start_search();
  2548. editor->make_bottom_panel_item_visible(find_in_files);
  2549. }
  2550. void ScriptEditor::_on_find_in_files_modified_files(PoolStringArray paths) {
  2551. _test_script_times_on_disk();
  2552. _update_modified_scripts_for_external_editor();
  2553. }
  2554. void ScriptEditor::_filter_scripts_text_changed(const String &p_newtext) {
  2555. _update_script_names();
  2556. }
  2557. void ScriptEditor::_filter_methods_text_changed(const String &p_newtext) {
  2558. _update_members_overview();
  2559. }
  2560. void ScriptEditor::_bind_methods() {
  2561. ClassDB::bind_method("_file_dialog_action", &ScriptEditor::_file_dialog_action);
  2562. ClassDB::bind_method("_tab_changed", &ScriptEditor::_tab_changed);
  2563. ClassDB::bind_method("_menu_option", &ScriptEditor::_menu_option);
  2564. ClassDB::bind_method("_close_current_tab", &ScriptEditor::_close_current_tab);
  2565. ClassDB::bind_method("_close_discard_current_tab", &ScriptEditor::_close_discard_current_tab);
  2566. ClassDB::bind_method("_close_docs_tab", &ScriptEditor::_close_docs_tab);
  2567. ClassDB::bind_method("_close_all_tabs", &ScriptEditor::_close_all_tabs);
  2568. ClassDB::bind_method("_close_other_tabs", &ScriptEditor::_close_other_tabs);
  2569. ClassDB::bind_method("_open_recent_script", &ScriptEditor::_open_recent_script);
  2570. ClassDB::bind_method("_theme_option", &ScriptEditor::_theme_option);
  2571. ClassDB::bind_method("_editor_play", &ScriptEditor::_editor_play);
  2572. ClassDB::bind_method("_editor_pause", &ScriptEditor::_editor_pause);
  2573. ClassDB::bind_method("_editor_stop", &ScriptEditor::_editor_stop);
  2574. ClassDB::bind_method("_add_callback", &ScriptEditor::_add_callback);
  2575. ClassDB::bind_method("_reload_scripts", &ScriptEditor::_reload_scripts);
  2576. ClassDB::bind_method("_resave_scripts", &ScriptEditor::_resave_scripts);
  2577. ClassDB::bind_method("_res_saved_callback", &ScriptEditor::_res_saved_callback);
  2578. ClassDB::bind_method("_goto_script_line", &ScriptEditor::_goto_script_line);
  2579. ClassDB::bind_method("_goto_script_line2", &ScriptEditor::_goto_script_line2);
  2580. ClassDB::bind_method("_set_execution", &ScriptEditor::_set_execution);
  2581. ClassDB::bind_method("_clear_execution", &ScriptEditor::_clear_execution);
  2582. ClassDB::bind_method("_help_search", &ScriptEditor::_help_search);
  2583. ClassDB::bind_method("_save_history", &ScriptEditor::_save_history);
  2584. ClassDB::bind_method("_copy_script_path", &ScriptEditor::_copy_script_path);
  2585. ClassDB::bind_method("_breaked", &ScriptEditor::_breaked);
  2586. ClassDB::bind_method("_show_debugger", &ScriptEditor::_show_debugger);
  2587. ClassDB::bind_method("_get_debug_tooltip", &ScriptEditor::_get_debug_tooltip);
  2588. ClassDB::bind_method("_autosave_scripts", &ScriptEditor::_autosave_scripts);
  2589. ClassDB::bind_method("_update_autosave_timer", &ScriptEditor::_update_autosave_timer);
  2590. ClassDB::bind_method("_editor_settings_changed", &ScriptEditor::_editor_settings_changed);
  2591. ClassDB::bind_method("_update_script_names", &ScriptEditor::_update_script_names);
  2592. ClassDB::bind_method("_update_script_connections", &ScriptEditor::_update_script_connections);
  2593. ClassDB::bind_method("_tree_changed", &ScriptEditor::_tree_changed);
  2594. ClassDB::bind_method("_members_overview_selected", &ScriptEditor::_members_overview_selected);
  2595. ClassDB::bind_method("_help_overview_selected", &ScriptEditor::_help_overview_selected);
  2596. ClassDB::bind_method("_script_selected", &ScriptEditor::_script_selected);
  2597. ClassDB::bind_method("_script_created", &ScriptEditor::_script_created);
  2598. ClassDB::bind_method("_script_split_dragged", &ScriptEditor::_script_split_dragged);
  2599. ClassDB::bind_method("_help_class_open", &ScriptEditor::_help_class_open);
  2600. ClassDB::bind_method("_help_class_goto", &ScriptEditor::_help_class_goto);
  2601. ClassDB::bind_method("_request_help", &ScriptEditor::_help_class_open);
  2602. ClassDB::bind_method("_history_forward", &ScriptEditor::_history_forward);
  2603. ClassDB::bind_method("_history_back", &ScriptEditor::_history_back);
  2604. ClassDB::bind_method("_live_auto_reload_running_scripts", &ScriptEditor::_live_auto_reload_running_scripts);
  2605. ClassDB::bind_method("_unhandled_input", &ScriptEditor::_unhandled_input);
  2606. ClassDB::bind_method("_script_list_gui_input", &ScriptEditor::_script_list_gui_input);
  2607. ClassDB::bind_method("_toggle_members_overview_alpha_sort", &ScriptEditor::_toggle_members_overview_alpha_sort);
  2608. ClassDB::bind_method("_update_members_overview", &ScriptEditor::_update_members_overview);
  2609. ClassDB::bind_method("_script_changed", &ScriptEditor::_script_changed);
  2610. ClassDB::bind_method("_filter_scripts_text_changed", &ScriptEditor::_filter_scripts_text_changed);
  2611. ClassDB::bind_method("_filter_methods_text_changed", &ScriptEditor::_filter_methods_text_changed);
  2612. ClassDB::bind_method("_update_recent_scripts", &ScriptEditor::_update_recent_scripts);
  2613. ClassDB::bind_method("_on_find_in_files_requested", &ScriptEditor::_on_find_in_files_requested);
  2614. ClassDB::bind_method("_start_find_in_files", &ScriptEditor::_start_find_in_files);
  2615. ClassDB::bind_method("_on_find_in_files_result_selected", &ScriptEditor::_on_find_in_files_result_selected);
  2616. ClassDB::bind_method("_on_find_in_files_modified_files", &ScriptEditor::_on_find_in_files_modified_files);
  2617. ClassDB::bind_method(D_METHOD("get_drag_data_fw", "point", "from"), &ScriptEditor::get_drag_data_fw);
  2618. ClassDB::bind_method(D_METHOD("can_drop_data_fw", "point", "data", "from"), &ScriptEditor::can_drop_data_fw);
  2619. ClassDB::bind_method(D_METHOD("drop_data_fw", "point", "data", "from"), &ScriptEditor::drop_data_fw);
  2620. ClassDB::bind_method(D_METHOD("goto_line", "line_number"), &ScriptEditor::_goto_script_line2);
  2621. ClassDB::bind_method(D_METHOD("get_current_script"), &ScriptEditor::_get_current_script);
  2622. ClassDB::bind_method(D_METHOD("get_open_scripts"), &ScriptEditor::_get_open_scripts);
  2623. ClassDB::bind_method(D_METHOD("open_script_create_dialog", "base_name", "base_path"), &ScriptEditor::open_script_create_dialog);
  2624. ADD_SIGNAL(MethodInfo("editor_script_changed", PropertyInfo(Variant::OBJECT, "script", PROPERTY_HINT_RESOURCE_TYPE, "Script")));
  2625. ADD_SIGNAL(MethodInfo("script_close", PropertyInfo(Variant::OBJECT, "script", PROPERTY_HINT_RESOURCE_TYPE, "Script")));
  2626. }
  2627. ScriptEditor::ScriptEditor(EditorNode *p_editor) {
  2628. current_theme = "";
  2629. completion_cache = memnew(EditorScriptCodeCompletionCache);
  2630. restoring_layout = false;
  2631. waiting_update_names = false;
  2632. pending_auto_reload = false;
  2633. auto_reload_running_scripts = true;
  2634. members_overview_enabled = EditorSettings::get_singleton()->get("text_editor/script_list/show_members_overview");
  2635. help_overview_enabled = EditorSettings::get_singleton()->get("text_editor/help/show_help_index");
  2636. editor = p_editor;
  2637. VBoxContainer *main_container = memnew(VBoxContainer);
  2638. add_child(main_container);
  2639. menu_hb = memnew(HBoxContainer);
  2640. main_container->add_child(menu_hb);
  2641. script_split = memnew(HSplitContainer);
  2642. main_container->add_child(script_split);
  2643. script_split->set_v_size_flags(SIZE_EXPAND_FILL);
  2644. list_split = memnew(VSplitContainer);
  2645. script_split->add_child(list_split);
  2646. list_split->set_v_size_flags(SIZE_EXPAND_FILL);
  2647. scripts_vbox = memnew(VBoxContainer);
  2648. scripts_vbox->set_v_size_flags(SIZE_EXPAND_FILL);
  2649. list_split->add_child(scripts_vbox);
  2650. filter_scripts = memnew(LineEdit);
  2651. filter_scripts->set_placeholder(TTR("Filter scripts"));
  2652. filter_scripts->set_clear_button_enabled(true);
  2653. filter_scripts->connect("text_changed", this, "_filter_scripts_text_changed");
  2654. scripts_vbox->add_child(filter_scripts);
  2655. script_list = memnew(ItemList);
  2656. scripts_vbox->add_child(script_list);
  2657. script_list->set_custom_minimum_size(Size2(150, 60) * EDSCALE); //need to give a bit of limit to avoid it from disappearing
  2658. script_list->set_v_size_flags(SIZE_EXPAND_FILL);
  2659. script_split->set_split_offset(70 * EDSCALE);
  2660. _sort_list_on_update = true;
  2661. script_list->connect("gui_input", this, "_script_list_gui_input", varray(), CONNECT_DEFERRED);
  2662. script_list->set_allow_rmb_select(true);
  2663. script_list->set_drag_forwarding(this);
  2664. context_menu = memnew(PopupMenu);
  2665. add_child(context_menu);
  2666. context_menu->connect("id_pressed", this, "_menu_option");
  2667. context_menu->set_hide_on_window_lose_focus(true);
  2668. overview_vbox = memnew(VBoxContainer);
  2669. overview_vbox->set_custom_minimum_size(Size2(0, 90));
  2670. overview_vbox->set_v_size_flags(SIZE_EXPAND_FILL);
  2671. list_split->add_child(overview_vbox);
  2672. list_split->set_visible(EditorSettings::get_singleton()->get_project_metadata("scripts_panel", "show_scripts_panel", true));
  2673. buttons_hbox = memnew(HBoxContainer);
  2674. overview_vbox->add_child(buttons_hbox);
  2675. filename = memnew(Label);
  2676. filename->set_clip_text(true);
  2677. filename->set_h_size_flags(SIZE_EXPAND_FILL);
  2678. filename->add_style_override("normal", EditorNode::get_singleton()->get_gui_base()->get_stylebox("normal", "LineEdit"));
  2679. buttons_hbox->add_child(filename);
  2680. members_overview_alphabeta_sort_button = memnew(ToolButton);
  2681. members_overview_alphabeta_sort_button->set_tooltip(TTR("Toggle alphabetical sorting of the method list."));
  2682. members_overview_alphabeta_sort_button->set_toggle_mode(true);
  2683. members_overview_alphabeta_sort_button->set_pressed(EditorSettings::get_singleton()->get("text_editor/tools/sort_members_outline_alphabetically"));
  2684. members_overview_alphabeta_sort_button->connect("toggled", this, "_toggle_members_overview_alpha_sort");
  2685. buttons_hbox->add_child(members_overview_alphabeta_sort_button);
  2686. filter_methods = memnew(LineEdit);
  2687. filter_methods->set_placeholder(TTR("Filter methods"));
  2688. filter_methods->set_clear_button_enabled(true);
  2689. filter_methods->connect("text_changed", this, "_filter_methods_text_changed");
  2690. overview_vbox->add_child(filter_methods);
  2691. members_overview = memnew(ItemList);
  2692. overview_vbox->add_child(members_overview);
  2693. members_overview->set_allow_reselect(true);
  2694. members_overview->set_custom_minimum_size(Size2(0, 60) * EDSCALE); //need to give a bit of limit to avoid it from disappearing
  2695. members_overview->set_v_size_flags(SIZE_EXPAND_FILL);
  2696. members_overview->set_allow_rmb_select(true);
  2697. help_overview = memnew(ItemList);
  2698. overview_vbox->add_child(help_overview);
  2699. help_overview->set_allow_reselect(true);
  2700. help_overview->set_custom_minimum_size(Size2(0, 60) * EDSCALE); //need to give a bit of limit to avoid it from disappearing
  2701. help_overview->set_v_size_flags(SIZE_EXPAND_FILL);
  2702. tab_container = memnew(TabContainer);
  2703. tab_container->set_tabs_visible(false);
  2704. tab_container->set_custom_minimum_size(Size2(200, 0) * EDSCALE);
  2705. script_split->add_child(tab_container);
  2706. tab_container->set_h_size_flags(SIZE_EXPAND_FILL);
  2707. ED_SHORTCUT("script_editor/window_sort", TTR("Sort"));
  2708. ED_SHORTCUT("script_editor/window_move_up", TTR("Move Up"), KEY_MASK_SHIFT | KEY_MASK_ALT | KEY_UP);
  2709. ED_SHORTCUT("script_editor/window_move_down", TTR("Move Down"), KEY_MASK_SHIFT | KEY_MASK_ALT | KEY_DOWN);
  2710. ED_SHORTCUT("script_editor/next_script", TTR("Next script"), KEY_MASK_CMD | KEY_MASK_SHIFT | KEY_PERIOD); // these should be KEY_GREATER and KEY_LESS but those don't work
  2711. ED_SHORTCUT("script_editor/prev_script", TTR("Previous script"), KEY_MASK_CMD | KEY_MASK_SHIFT | KEY_COMMA);
  2712. set_process_unhandled_input(true);
  2713. file_menu = memnew(MenuButton);
  2714. menu_hb->add_child(file_menu);
  2715. file_menu->set_text(TTR("File"));
  2716. file_menu->set_switch_on_hover(true);
  2717. file_menu->get_popup()->set_hide_on_window_lose_focus(true);
  2718. file_menu->get_popup()->add_shortcut(ED_SHORTCUT("script_editor/new", TTR("New Script...")), FILE_NEW);
  2719. file_menu->get_popup()->add_shortcut(ED_SHORTCUT("script_editor/new_textfile", TTR("New Text File...")), FILE_NEW_TEXTFILE);
  2720. file_menu->get_popup()->add_shortcut(ED_SHORTCUT("script_editor/open", TTR("Open...")), FILE_OPEN);
  2721. file_menu->get_popup()->add_shortcut(ED_SHORTCUT("script_editor/reopen_closed_script", TTR("Reopen Closed Script"), KEY_MASK_CMD | KEY_MASK_SHIFT | KEY_T), FILE_REOPEN_CLOSED);
  2722. file_menu->get_popup()->add_submenu_item(TTR("Open Recent"), "RecentScripts", FILE_OPEN_RECENT);
  2723. recent_scripts = memnew(PopupMenu);
  2724. recent_scripts->set_name("RecentScripts");
  2725. file_menu->get_popup()->add_child(recent_scripts);
  2726. recent_scripts->connect("id_pressed", this, "_open_recent_script");
  2727. _update_recent_scripts();
  2728. file_menu->get_popup()->add_separator();
  2729. file_menu->get_popup()->add_shortcut(ED_SHORTCUT("script_editor/save", TTR("Save"), KEY_MASK_ALT | KEY_MASK_CMD | KEY_S), FILE_SAVE);
  2730. file_menu->get_popup()->add_shortcut(ED_SHORTCUT("script_editor/save_as", TTR("Save As...")), FILE_SAVE_AS);
  2731. file_menu->get_popup()->add_shortcut(ED_SHORTCUT("script_editor/save_all", TTR("Save All"), KEY_MASK_SHIFT | KEY_MASK_ALT | KEY_S), FILE_SAVE_ALL);
  2732. file_menu->get_popup()->add_separator();
  2733. 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);
  2734. file_menu->get_popup()->add_shortcut(ED_SHORTCUT("script_editor/copy_path", TTR("Copy Script Path")), FILE_COPY_PATH);
  2735. file_menu->get_popup()->add_shortcut(ED_SHORTCUT("script_editor/show_in_file_system", TTR("Show in FileSystem")), SHOW_IN_FILE_SYSTEM);
  2736. file_menu->get_popup()->add_separator();
  2737. file_menu->get_popup()->add_shortcut(ED_SHORTCUT("script_editor/history_previous", TTR("History Previous"), KEY_MASK_ALT | KEY_LEFT), WINDOW_PREV);
  2738. file_menu->get_popup()->add_shortcut(ED_SHORTCUT("script_editor/history_next", TTR("History Next"), KEY_MASK_ALT | KEY_RIGHT), WINDOW_NEXT);
  2739. file_menu->get_popup()->add_separator();
  2740. file_menu->get_popup()->add_submenu_item(TTR("Theme"), "Theme", FILE_THEME);
  2741. theme_submenu = memnew(PopupMenu);
  2742. theme_submenu->set_name("Theme");
  2743. file_menu->get_popup()->add_child(theme_submenu);
  2744. theme_submenu->connect("id_pressed", this, "_theme_option");
  2745. theme_submenu->add_shortcut(ED_SHORTCUT("script_editor/import_theme", TTR("Import Theme...")), THEME_IMPORT);
  2746. theme_submenu->add_shortcut(ED_SHORTCUT("script_editor/reload_theme", TTR("Reload Theme")), THEME_RELOAD);
  2747. theme_submenu->add_separator();
  2748. theme_submenu->add_shortcut(ED_SHORTCUT("script_editor/save_theme", TTR("Save Theme")), THEME_SAVE);
  2749. theme_submenu->add_shortcut(ED_SHORTCUT("script_editor/save_theme_as", TTR("Save Theme As...")), THEME_SAVE_AS);
  2750. file_menu->get_popup()->add_separator();
  2751. file_menu->get_popup()->add_shortcut(ED_SHORTCUT("script_editor/close_file", TTR("Close"), KEY_MASK_CMD | KEY_W), FILE_CLOSE);
  2752. file_menu->get_popup()->add_shortcut(ED_SHORTCUT("script_editor/close_all", TTR("Close All")), CLOSE_ALL);
  2753. file_menu->get_popup()->add_shortcut(ED_SHORTCUT("script_editor/close_other_tabs", TTR("Close Other Tabs")), CLOSE_OTHER_TABS);
  2754. file_menu->get_popup()->add_shortcut(ED_SHORTCUT("script_editor/close_docs", TTR("Close Docs")), CLOSE_DOCS);
  2755. file_menu->get_popup()->add_separator();
  2756. file_menu->get_popup()->add_shortcut(ED_SHORTCUT("script_editor/run_file", TTR("Run"), KEY_MASK_CMD | KEY_MASK_SHIFT | KEY_X), FILE_RUN);
  2757. file_menu->get_popup()->add_separator();
  2758. 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);
  2759. file_menu->get_popup()->connect("id_pressed", this, "_menu_option");
  2760. script_search_menu = memnew(MenuButton);
  2761. menu_hb->add_child(script_search_menu);
  2762. script_search_menu->set_text(TTR("Search"));
  2763. script_search_menu->set_switch_on_hover(true);
  2764. script_search_menu->get_popup()->set_hide_on_window_lose_focus(true);
  2765. script_search_menu->get_popup()->connect("id_pressed", this, "_menu_option");
  2766. debug_menu = memnew(MenuButton);
  2767. menu_hb->add_child(debug_menu);
  2768. debug_menu->set_text(TTR("Debug"));
  2769. debug_menu->set_switch_on_hover(true);
  2770. debug_menu->get_popup()->set_hide_on_window_lose_focus(true);
  2771. debug_menu->get_popup()->add_shortcut(ED_SHORTCUT("debugger/step_into", TTR("Step Into"), KEY_F11), DEBUG_STEP);
  2772. debug_menu->get_popup()->add_shortcut(ED_SHORTCUT("debugger/step_over", TTR("Step Over"), KEY_F10), DEBUG_NEXT);
  2773. debug_menu->get_popup()->add_separator();
  2774. debug_menu->get_popup()->add_shortcut(ED_SHORTCUT("debugger/break", TTR("Break")), DEBUG_BREAK);
  2775. debug_menu->get_popup()->add_shortcut(ED_SHORTCUT("debugger/continue", TTR("Continue"), KEY_F12), DEBUG_CONTINUE);
  2776. debug_menu->get_popup()->add_separator();
  2777. debug_menu->get_popup()->add_check_shortcut(ED_SHORTCUT("debugger/keep_debugger_open", TTR("Keep Debugger Open")), DEBUG_KEEP_DEBUGGER_OPEN);
  2778. debug_menu->get_popup()->add_check_shortcut(ED_SHORTCUT("debugger/debug_with_external_editor", TTR("Debug with External Editor")), DEBUG_WITH_EXTERNAL_EDITOR);
  2779. debug_menu->get_popup()->connect("id_pressed", this, "_menu_option");
  2780. debug_menu->get_popup()->set_item_disabled(debug_menu->get_popup()->get_item_index(DEBUG_NEXT), true);
  2781. debug_menu->get_popup()->set_item_disabled(debug_menu->get_popup()->get_item_index(DEBUG_STEP), true);
  2782. debug_menu->get_popup()->set_item_disabled(debug_menu->get_popup()->get_item_index(DEBUG_BREAK), true);
  2783. debug_menu->get_popup()->set_item_disabled(debug_menu->get_popup()->get_item_index(DEBUG_CONTINUE), true);
  2784. menu_hb->add_spacer();
  2785. script_icon = memnew(TextureRect);
  2786. menu_hb->add_child(script_icon);
  2787. script_name_label = memnew(Label);
  2788. menu_hb->add_child(script_name_label);
  2789. script_icon->hide();
  2790. script_name_label->hide();
  2791. menu_hb->add_spacer();
  2792. site_search = memnew(ToolButton);
  2793. site_search->set_text(TTR("Online Docs"));
  2794. site_search->connect("pressed", this, "_menu_option", varray(SEARCH_WEBSITE));
  2795. menu_hb->add_child(site_search);
  2796. site_search->set_tooltip(TTR("Open Godot online documentation."));
  2797. help_search = memnew(ToolButton);
  2798. help_search->set_text(TTR("Search Help"));
  2799. help_search->connect("pressed", this, "_menu_option", varray(SEARCH_HELP));
  2800. menu_hb->add_child(help_search);
  2801. help_search->set_tooltip(TTR("Search the reference documentation."));
  2802. menu_hb->add_child(memnew(VSeparator));
  2803. script_back = memnew(ToolButton);
  2804. script_back->connect("pressed", this, "_history_back");
  2805. menu_hb->add_child(script_back);
  2806. script_back->set_disabled(true);
  2807. script_back->set_tooltip(TTR("Go to previous edited document."));
  2808. script_forward = memnew(ToolButton);
  2809. script_forward->connect("pressed", this, "_history_forward");
  2810. menu_hb->add_child(script_forward);
  2811. script_forward->set_disabled(true);
  2812. script_forward->set_tooltip(TTR("Go to next edited document."));
  2813. tab_container->connect("tab_changed", this, "_tab_changed");
  2814. erase_tab_confirm = memnew(ConfirmationDialog);
  2815. erase_tab_confirm->get_ok()->set_text(TTR("Save"));
  2816. erase_tab_confirm->add_button(TTR("Discard"), OS::get_singleton()->get_swap_ok_cancel(), "discard");
  2817. erase_tab_confirm->connect("confirmed", this, "_close_current_tab", varray(true));
  2818. erase_tab_confirm->connect("custom_action", this, "_close_discard_current_tab");
  2819. add_child(erase_tab_confirm);
  2820. script_create_dialog = memnew(ScriptCreateDialog);
  2821. script_create_dialog->set_title(TTR("Create Script"));
  2822. add_child(script_create_dialog);
  2823. script_create_dialog->connect("script_created", this, "_script_created");
  2824. file_dialog_option = -1;
  2825. file_dialog = memnew(EditorFileDialog);
  2826. add_child(file_dialog);
  2827. file_dialog->connect("file_selected", this, "_file_dialog_action");
  2828. error_dialog = memnew(AcceptDialog);
  2829. add_child(error_dialog);
  2830. debugger = memnew(ScriptEditorDebugger(editor));
  2831. debugger->connect("goto_script_line", this, "_goto_script_line");
  2832. debugger->connect("set_execution", this, "_set_execution");
  2833. debugger->connect("clear_execution", this, "_clear_execution");
  2834. debugger->connect("show_debugger", this, "_show_debugger");
  2835. disk_changed = memnew(ConfirmationDialog);
  2836. {
  2837. VBoxContainer *vbc = memnew(VBoxContainer);
  2838. disk_changed->add_child(vbc);
  2839. Label *dl = memnew(Label);
  2840. dl->set_text(TTR("The following files are newer on disk.\nWhat action should be taken?:"));
  2841. vbc->add_child(dl);
  2842. disk_changed_list = memnew(Tree);
  2843. vbc->add_child(disk_changed_list);
  2844. disk_changed_list->set_v_size_flags(SIZE_EXPAND_FILL);
  2845. disk_changed->connect("confirmed", this, "_reload_scripts");
  2846. disk_changed->get_ok()->set_text(TTR("Reload"));
  2847. disk_changed->add_button(TTR("Resave"), !OS::get_singleton()->get_swap_ok_cancel(), "resave");
  2848. disk_changed->connect("custom_action", this, "_resave_scripts");
  2849. }
  2850. add_child(disk_changed);
  2851. script_editor = this;
  2852. Button *db = EditorNode::get_singleton()->add_bottom_panel_item(TTR("Debugger"), debugger);
  2853. debugger->set_tool_button(db);
  2854. debugger->connect("breaked", this, "_breaked");
  2855. autosave_timer = memnew(Timer);
  2856. autosave_timer->set_one_shot(false);
  2857. autosave_timer->connect(SceneStringNames::get_singleton()->tree_entered, this, "_update_autosave_timer");
  2858. autosave_timer->connect("timeout", this, "_autosave_scripts");
  2859. add_child(autosave_timer);
  2860. grab_focus_block = false;
  2861. help_search_dialog = memnew(EditorHelpSearch);
  2862. add_child(help_search_dialog);
  2863. help_search_dialog->connect("go_to_help", this, "_help_class_goto");
  2864. find_in_files_dialog = memnew(FindInFilesDialog);
  2865. find_in_files_dialog->connect(FindInFilesDialog::SIGNAL_FIND_REQUESTED, this, "_start_find_in_files", varray(false));
  2866. find_in_files_dialog->connect(FindInFilesDialog::SIGNAL_REPLACE_REQUESTED, this, "_start_find_in_files", varray(true));
  2867. add_child(find_in_files_dialog);
  2868. find_in_files = memnew(FindInFilesPanel);
  2869. find_in_files_button = editor->add_bottom_panel_item(TTR("Search Results"), find_in_files);
  2870. find_in_files->set_custom_minimum_size(Size2(0, 200) * EDSCALE);
  2871. find_in_files->connect(FindInFilesPanel::SIGNAL_RESULT_SELECTED, this, "_on_find_in_files_result_selected");
  2872. find_in_files->connect(FindInFilesPanel::SIGNAL_FILES_MODIFIED, this, "_on_find_in_files_modified_files");
  2873. find_in_files->hide();
  2874. find_in_files_button->hide();
  2875. history_pos = -1;
  2876. //debugger_gui->hide();
  2877. edit_pass = 0;
  2878. trim_trailing_whitespace_on_save = EditorSettings::get_singleton()->get("text_editor/files/trim_trailing_whitespace_on_save");
  2879. convert_indent_on_save = EditorSettings::get_singleton()->get("text_editor/indent/convert_indent_on_save");
  2880. use_space_indentation = EditorSettings::get_singleton()->get("text_editor/indent/type");
  2881. ScriptServer::edit_request_func = _open_script_request;
  2882. add_style_override("panel", editor->get_gui_base()->get_stylebox("ScriptEditorPanel", "EditorStyles"));
  2883. tab_container->add_style_override("panel", editor->get_gui_base()->get_stylebox("ScriptEditor", "EditorStyles"));
  2884. }
  2885. ScriptEditor::~ScriptEditor() {
  2886. memdelete(completion_cache);
  2887. }
  2888. void ScriptEditorPlugin::edit(Object *p_object) {
  2889. if (Object::cast_to<Script>(p_object)) {
  2890. Script *p_script = Object::cast_to<Script>(p_object);
  2891. String res_path = p_script->get_path().get_slice("::", 0);
  2892. if (_is_built_in_script(p_script)) {
  2893. if (ResourceLoader::get_resource_type(res_path) == "PackedScene") {
  2894. if (!EditorNode::get_singleton()->is_scene_open(res_path)) {
  2895. EditorNode::get_singleton()->load_scene(res_path);
  2896. }
  2897. } else {
  2898. EditorNode::get_singleton()->load_resource(res_path);
  2899. }
  2900. }
  2901. script_editor->edit(p_script);
  2902. } else if (Object::cast_to<TextFile>(p_object)) {
  2903. script_editor->edit(Object::cast_to<TextFile>(p_object));
  2904. }
  2905. }
  2906. bool ScriptEditorPlugin::handles(Object *p_object) const {
  2907. if (Object::cast_to<TextFile>(p_object)) {
  2908. return true;
  2909. }
  2910. if (Object::cast_to<Script>(p_object)) {
  2911. return true;
  2912. }
  2913. return p_object->is_class("Script");
  2914. }
  2915. void ScriptEditorPlugin::make_visible(bool p_visible) {
  2916. if (p_visible) {
  2917. script_editor->show();
  2918. script_editor->set_process(true);
  2919. script_editor->ensure_select_current();
  2920. } else {
  2921. script_editor->hide();
  2922. script_editor->set_process(false);
  2923. }
  2924. }
  2925. void ScriptEditorPlugin::selected_notify() {
  2926. script_editor->ensure_select_current();
  2927. }
  2928. void ScriptEditorPlugin::save_external_data() {
  2929. script_editor->save_all_scripts();
  2930. }
  2931. void ScriptEditorPlugin::apply_changes() {
  2932. script_editor->apply_scripts();
  2933. }
  2934. void ScriptEditorPlugin::restore_global_state() {
  2935. }
  2936. void ScriptEditorPlugin::save_global_state() {
  2937. }
  2938. void ScriptEditorPlugin::set_window_layout(Ref<ConfigFile> p_layout) {
  2939. script_editor->set_window_layout(p_layout);
  2940. }
  2941. void ScriptEditorPlugin::get_window_layout(Ref<ConfigFile> p_layout) {
  2942. script_editor->get_window_layout(p_layout);
  2943. }
  2944. void ScriptEditorPlugin::get_breakpoints(List<String> *p_breakpoints) {
  2945. script_editor->get_breakpoints(p_breakpoints);
  2946. }
  2947. void ScriptEditorPlugin::edited_scene_changed() {
  2948. script_editor->edited_scene_changed();
  2949. }
  2950. ScriptEditorPlugin::ScriptEditorPlugin(EditorNode *p_node) {
  2951. editor = p_node;
  2952. script_editor = memnew(ScriptEditor(p_node));
  2953. editor->get_viewport()->add_child(script_editor);
  2954. script_editor->set_v_size_flags(Control::SIZE_EXPAND_FILL);
  2955. script_editor->hide();
  2956. EDITOR_DEF("text_editor/files/auto_reload_scripts_on_external_change", true);
  2957. ScriptServer::set_reload_scripts_on_save(EDITOR_DEF("text_editor/files/auto_reload_and_parse_scripts_on_save", true));
  2958. EDITOR_DEF("text_editor/files/open_dominant_script_on_scene_change", true);
  2959. EDITOR_DEF("text_editor/external/use_external_editor", false);
  2960. EDITOR_DEF("text_editor/external/exec_path", "");
  2961. EDITOR_DEF("text_editor/script_list/script_temperature_enabled", true);
  2962. EDITOR_DEF("text_editor/script_list/highlight_current_script", true);
  2963. EDITOR_DEF("text_editor/script_list/script_temperature_history_size", 15);
  2964. EDITOR_DEF("text_editor/script_list/current_script_background_color", Color(1, 1, 1, 0.3));
  2965. EDITOR_DEF("text_editor/script_list/group_help_pages", true);
  2966. EditorSettings::get_singleton()->add_property_hint(PropertyInfo(Variant::INT, "text_editor/script_list/sort_scripts_by", PROPERTY_HINT_ENUM, "Name,Path,None"));
  2967. EDITOR_DEF("text_editor/script_list/sort_scripts_by", 0);
  2968. EditorSettings::get_singleton()->add_property_hint(PropertyInfo(Variant::INT, "text_editor/script_list/list_script_names_as", PROPERTY_HINT_ENUM, "Name,Parent Directory And Name,Full Path"));
  2969. EDITOR_DEF("text_editor/script_list/list_script_names_as", 0);
  2970. EditorSettings::get_singleton()->add_property_hint(PropertyInfo(Variant::STRING, "text_editor/external/exec_path", PROPERTY_HINT_GLOBAL_FILE));
  2971. EDITOR_DEF("text_editor/external/exec_flags", "{file}");
  2972. EditorSettings::get_singleton()->add_property_hint(PropertyInfo(Variant::STRING, "text_editor/external/exec_flags", PROPERTY_HINT_PLACEHOLDER_TEXT, "Call flags with placeholders: {project}, {file}, {col}, {line}."));
  2973. ED_SHORTCUT("script_editor/reopen_closed_script", TTR("Reopen Closed Script"), KEY_MASK_CMD | KEY_MASK_SHIFT | KEY_T);
  2974. ED_SHORTCUT("script_editor/clear_recent", TTR("Clear Recent Scripts"));
  2975. }
  2976. ScriptEditorPlugin::~ScriptEditorPlugin() {
  2977. }