script_editor_plugin.cpp 112 KB

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