script_editor_plugin.cpp 111 KB

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