script_editor_plugin.cpp 109 KB

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