script_editor_plugin.cpp 86 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003
  1. /*************************************************************************/
  2. /* script_editor_plugin.cpp */
  3. /*************************************************************************/
  4. /* This file is part of: */
  5. /* GODOT ENGINE */
  6. /* http://www.godotengine.org */
  7. /*************************************************************************/
  8. /* Copyright (c) 2007-2016 Juan Linietsky, Ariel Manzur. */
  9. /* */
  10. /* Permission is hereby granted, free of charge, to any person obtaining */
  11. /* a copy of this software and associated documentation files (the */
  12. /* "Software"), to deal in the Software without restriction, including */
  13. /* without limitation the rights to use, copy, modify, merge, publish, */
  14. /* distribute, sublicense, and/or sell copies of the Software, and to */
  15. /* permit persons to whom the Software is furnished to do so, subject to */
  16. /* the following conditions: */
  17. /* */
  18. /* The above copyright notice and this permission notice shall be */
  19. /* included in all copies or substantial portions of the Software. */
  20. /* */
  21. /* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, */
  22. /* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF */
  23. /* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.*/
  24. /* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY */
  25. /* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, */
  26. /* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */
  27. /* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
  28. /*************************************************************************/
  29. #include "script_editor_plugin.h"
  30. #include "tools/editor/editor_settings.h"
  31. #include "io/resource_loader.h"
  32. #include "io/resource_saver.h"
  33. #include "os/keyboard.h"
  34. #include "os/os.h"
  35. #include "tools/editor/editor_node.h"
  36. #include "tools/editor/script_editor_debugger.h"
  37. #include "globals.h"
  38. #include "os/file_access.h"
  39. #include "scene/main/viewport.h"
  40. #include "os/keyboard.h"
  41. #include "os/input.h"
  42. /*** SCRIPT EDITOR ****/
  43. class EditorScriptCodeCompletionCache : public ScriptCodeCompletionCache {
  44. struct Cache {
  45. uint64_t time_loaded;
  46. RES cache;
  47. };
  48. Map<String,Cache> cached;
  49. public:
  50. uint64_t max_time_cache;
  51. int max_cache_size;
  52. void cleanup() {
  53. List< Map<String,Cache>::Element * > to_clean;
  54. Map<String,Cache>::Element *I=cached.front();
  55. while(I) {
  56. if ((OS::get_singleton()->get_ticks_msec()-I->get().time_loaded)>max_time_cache) {
  57. to_clean.push_back(I);
  58. }
  59. I=I->next();
  60. }
  61. while(to_clean.front()) {
  62. cached.erase(to_clean.front()->get());
  63. to_clean.pop_front();
  64. }
  65. }
  66. RES get_cached_resource(const String& p_path) {
  67. Map<String,Cache>::Element *E=cached.find(p_path);
  68. if (!E) {
  69. Cache c;
  70. c.cache=ResourceLoader::load(p_path);
  71. E=cached.insert(p_path,c);
  72. }
  73. E->get().time_loaded=OS::get_singleton()->get_ticks_msec();
  74. if (cached.size()>max_cache_size) {
  75. uint64_t older;
  76. Map<String,Cache>::Element *O=cached.front();
  77. older=O->get().time_loaded;
  78. Map<String,Cache>::Element *I=O;
  79. while(I) {
  80. if (I->get().time_loaded<older) {
  81. older = I->get().time_loaded;
  82. O=I;
  83. }
  84. I=I->next();
  85. }
  86. if (O!=E) {//should never heppane..
  87. cached.erase(O);
  88. }
  89. }
  90. return E->get().cache;
  91. }
  92. EditorScriptCodeCompletionCache() {
  93. max_cache_size=128;
  94. max_time_cache=5*60*1000; //minutes, five
  95. }
  96. };
  97. #define SORT_SCRIPT_LIST
  98. void ScriptEditorQuickOpen::popup(const Vector<String>& p_functions, bool p_dontclear) {
  99. popup_centered_ratio(0.6);
  100. if (p_dontclear)
  101. search_box->select_all();
  102. else
  103. search_box->clear();
  104. search_box->grab_focus();
  105. functions=p_functions;
  106. _update_search();
  107. }
  108. void ScriptEditorQuickOpen::_text_changed(const String& p_newtext) {
  109. _update_search();
  110. }
  111. void ScriptEditorQuickOpen::_sbox_input(const InputEvent& p_ie) {
  112. if (p_ie.type==InputEvent::KEY && (
  113. p_ie.key.scancode == KEY_UP ||
  114. p_ie.key.scancode == KEY_DOWN ||
  115. p_ie.key.scancode == KEY_PAGEUP ||
  116. p_ie.key.scancode == KEY_PAGEDOWN ) ) {
  117. search_options->call("_input_event",p_ie);
  118. search_box->accept_event();
  119. }
  120. }
  121. void ScriptEditorQuickOpen::_update_search() {
  122. search_options->clear();
  123. TreeItem *root = search_options->create_item();
  124. for(int i=0;i<functions.size();i++) {
  125. String file = functions[i];
  126. if ((search_box->get_text()=="" || file.findn(search_box->get_text())!=-1)) {
  127. TreeItem *ti = search_options->create_item(root);
  128. ti->set_text(0,file);
  129. if (root->get_children()==ti)
  130. ti->select(0);
  131. }
  132. }
  133. get_ok()->set_disabled(root->get_children()==NULL);
  134. }
  135. void ScriptEditorQuickOpen::_confirmed() {
  136. TreeItem *ti = search_options->get_selected();
  137. if (!ti)
  138. return;
  139. int line = ti->get_text(0).get_slice(":",1).to_int();
  140. emit_signal("goto_line",line-1);
  141. hide();
  142. }
  143. void ScriptEditorQuickOpen::_notification(int p_what) {
  144. if (p_what==NOTIFICATION_ENTER_TREE) {
  145. connect("confirmed",this,"_confirmed");
  146. }
  147. }
  148. void ScriptEditorQuickOpen::_bind_methods() {
  149. ObjectTypeDB::bind_method(_MD("_text_changed"),&ScriptEditorQuickOpen::_text_changed);
  150. ObjectTypeDB::bind_method(_MD("_confirmed"),&ScriptEditorQuickOpen::_confirmed);
  151. ObjectTypeDB::bind_method(_MD("_sbox_input"),&ScriptEditorQuickOpen::_sbox_input);
  152. ADD_SIGNAL(MethodInfo("goto_line",PropertyInfo(Variant::INT,"line")));
  153. }
  154. ScriptEditorQuickOpen::ScriptEditorQuickOpen() {
  155. VBoxContainer *vbc = memnew( VBoxContainer );
  156. add_child(vbc);
  157. set_child_rect(vbc);
  158. search_box = memnew( LineEdit );
  159. vbc->add_margin_child(TTR("Search:"),search_box);
  160. search_box->connect("text_changed",this,"_text_changed");
  161. search_box->connect("input_event",this,"_sbox_input");
  162. search_options = memnew( Tree );
  163. vbc->add_margin_child(TTR("Matches:"),search_options,true);
  164. get_ok()->set_text(TTR("Open"));
  165. get_ok()->set_disabled(true);
  166. register_text_enter(search_box);
  167. set_hide_on_ok(false);
  168. search_options->connect("item_activated",this,"_confirmed");
  169. search_options->set_hide_root(true);
  170. }
  171. /////////////////////////////////
  172. ScriptEditor *ScriptEditor::script_editor=NULL;
  173. Vector<String> ScriptTextEditor::get_functions() {
  174. String errortxt;
  175. int line=-1,col;
  176. TextEdit *te=get_text_edit();
  177. String text = te->get_text();
  178. List<String> fnc;
  179. if (script->get_language()->validate(text,line,col,errortxt,script->get_path(),&fnc)) {
  180. //if valid rewrite functions to latest
  181. functions.clear();
  182. for (List<String>::Element *E=fnc.front();E;E=E->next()) {
  183. functions.push_back(E->get());
  184. }
  185. }
  186. return functions;
  187. }
  188. void ScriptTextEditor::apply_code() {
  189. if (script.is_null())
  190. return;
  191. // print_line("applying code");
  192. script->set_source_code(get_text_edit()->get_text());
  193. script->update_exports();
  194. }
  195. Ref<Script> ScriptTextEditor::get_edited_script() const {
  196. return script;
  197. }
  198. void ScriptTextEditor::_load_theme_settings() {
  199. get_text_edit()->clear_colors();
  200. /* keyword color */
  201. get_text_edit()->set_custom_bg_color(EDITOR_DEF("text_editor/background_color",Color(0,0,0,0)));
  202. get_text_edit()->add_color_override("completion_background_color", EDITOR_DEF("text_editor/completion_background_color", Color(0,0,0,0)));
  203. get_text_edit()->add_color_override("completion_selected_color", EDITOR_DEF("text_editor/completion_selected_color", Color::html("434244")));
  204. get_text_edit()->add_color_override("font_color",EDITOR_DEF("text_editor/text_color",Color(0,0,0)));
  205. get_text_edit()->add_color_override("line_number_color",EDITOR_DEF("text_editor/line_number_color",Color(0,0,0)));
  206. get_text_edit()->add_color_override("caret_color",EDITOR_DEF("text_editor/caret_color",Color(0,0,0)));
  207. get_text_edit()->add_color_override("font_selected_color",EDITOR_DEF("text_editor/text_selected_color",Color(1,1,1)));
  208. get_text_edit()->add_color_override("selection_color",EDITOR_DEF("text_editor/selection_color",Color(0.2,0.2,1)));
  209. get_text_edit()->add_color_override("brace_mismatch_color",EDITOR_DEF("text_editor/brace_mismatch_color",Color(1,0.2,0.2)));
  210. get_text_edit()->add_color_override("current_line_color",EDITOR_DEF("text_editor/current_line_color",Color(0.3,0.5,0.8,0.15)));
  211. get_text_edit()->add_color_override("word_highlighted_color",EDITOR_DEF("text_editor/word_highlighted_color",Color(0.8,0.9,0.9,0.15)));
  212. get_text_edit()->add_color_override("number_color",EDITOR_DEF("text_editor/number_color",Color(0.9,0.6,0.0,2)));
  213. get_text_edit()->add_color_override("function_color",EDITOR_DEF("text_editor/function_color",Color(0.4,0.6,0.8)));
  214. get_text_edit()->add_color_override("member_variable_color",EDITOR_DEF("text_editor/member_variable_color",Color(0.9,0.3,0.3)));
  215. get_text_edit()->add_color_override("mark_color", EDITOR_DEF("text_editor/mark_color", Color(1.0,0.4,0.4,0.4)));
  216. get_text_edit()->add_color_override("breakpoint_color", EDITOR_DEF("text_editor/breakpoint_color", Color(0.8,0.8,0.4,0.2)));
  217. get_text_edit()->add_color_override("search_result_color",EDITOR_DEF("text_editor/search_result_color",Color(0.05,0.25,0.05,1)));
  218. get_text_edit()->add_color_override("search_result_border_color",EDITOR_DEF("text_editor/search_result_border_color",Color(0.1,0.45,0.1,1)));
  219. get_text_edit()->add_constant_override("line_spacing", EDITOR_DEF("text_editor/line_spacing",4));
  220. Color keyword_color= EDITOR_DEF("text_editor/keyword_color",Color(0.5,0.0,0.2));
  221. List<String> keywords;
  222. script->get_language()->get_reserved_words(&keywords);
  223. for(List<String>::Element *E=keywords.front();E;E=E->next()) {
  224. get_text_edit()->add_keyword_color(E->get(),keyword_color);
  225. }
  226. //colorize core types
  227. Color basetype_color= EDITOR_DEF("text_editor/base_type_color",Color(0.3,0.3,0.0));
  228. get_text_edit()->add_keyword_color("Vector2",basetype_color);
  229. get_text_edit()->add_keyword_color("Vector3",basetype_color);
  230. get_text_edit()->add_keyword_color("Plane",basetype_color);
  231. get_text_edit()->add_keyword_color("Quat",basetype_color);
  232. get_text_edit()->add_keyword_color("AABB",basetype_color);
  233. get_text_edit()->add_keyword_color("Matrix3",basetype_color);
  234. get_text_edit()->add_keyword_color("Transform",basetype_color);
  235. get_text_edit()->add_keyword_color("Color",basetype_color);
  236. get_text_edit()->add_keyword_color("Image",basetype_color);
  237. get_text_edit()->add_keyword_color("InputEvent",basetype_color);
  238. get_text_edit()->add_keyword_color("Rect2",basetype_color);
  239. get_text_edit()->add_keyword_color("NodePath",basetype_color);
  240. //colorize engine types
  241. Color type_color= EDITOR_DEF("text_editor/engine_type_color",Color(0.0,0.2,0.4));
  242. List<StringName> types;
  243. ObjectTypeDB::get_type_list(&types);
  244. for(List<StringName>::Element *E=types.front();E;E=E->next()) {
  245. String n = E->get();
  246. if (n.begins_with("_"))
  247. n = n.substr(1, n.length());
  248. get_text_edit()->add_keyword_color(n,type_color);
  249. }
  250. //colorize comments
  251. Color comment_color = EDITOR_DEF("text_editor/comment_color",Color::hex(0x797e7eff));
  252. List<String> comments;
  253. script->get_language()->get_comment_delimiters(&comments);
  254. for(List<String>::Element *E=comments.front();E;E=E->next()) {
  255. String comment = E->get();
  256. String beg = comment.get_slice(" ",0);
  257. String end = comment.get_slice_count(" ")>1?comment.get_slice(" ",1):String();
  258. get_text_edit()->add_color_region(beg,end,comment_color,end=="");
  259. }
  260. //colorize strings
  261. Color string_color = EDITOR_DEF("text_editor/string_color",Color::hex(0x6b6f00ff));
  262. List<String> strings;
  263. script->get_language()->get_string_delimiters(&strings);
  264. for (List<String>::Element *E=strings.front();E;E=E->next()) {
  265. String string = E->get();
  266. String beg = string.get_slice(" ",0);
  267. String end = string.get_slice_count(" ")>1?string.get_slice(" ",1):String();
  268. get_text_edit()->add_color_region(beg,end,string_color,end=="");
  269. }
  270. //colorize symbols
  271. Color symbol_color= EDITOR_DEF("text_editor/symbol_color",Color::hex(0x005291ff));
  272. get_text_edit()->set_symbol_color(symbol_color);
  273. }
  274. void ScriptTextEditor::reload_text() {
  275. ERR_FAIL_COND(script.is_null()) ;
  276. TextEdit *te = get_text_edit();
  277. int column = te->cursor_get_column();
  278. int row = te->cursor_get_line();
  279. int h = te->get_h_scroll();
  280. int v = te->get_v_scroll();
  281. te->set_text(script->get_source_code());
  282. te->clear_undo_history();
  283. te->cursor_set_line(row);
  284. te->cursor_set_column(column);
  285. te->set_h_scroll(h);
  286. te->set_v_scroll(v);
  287. te->tag_saved_version();
  288. _line_col_changed();
  289. }
  290. void ScriptTextEditor::_notification(int p_what) {
  291. if (p_what==NOTIFICATION_READY) {
  292. //emit_signal("name_changed");
  293. }
  294. }
  295. bool ScriptTextEditor::is_unsaved() {
  296. return get_text_edit()->get_version()!=get_text_edit()->get_saved_version();
  297. }
  298. String ScriptTextEditor::get_name() {
  299. String name;
  300. if (script->get_path().find("local://")==-1 && script->get_path().find("::")==-1) {
  301. name=script->get_path().get_file();
  302. if (get_text_edit()->get_version()!=get_text_edit()->get_saved_version()) {
  303. name+="(*)";
  304. }
  305. } else if (script->get_name()!="")
  306. name=script->get_name();
  307. else
  308. name=script->get_type()+"("+itos(script->get_instance_ID())+")";
  309. return name;
  310. }
  311. Ref<Texture> ScriptTextEditor::get_icon() {
  312. if (get_parent_control() && get_parent_control()->has_icon(script->get_type(),"EditorIcons")) {
  313. return get_parent_control()->get_icon(script->get_type(),"EditorIcons");
  314. }
  315. return Ref<Texture>();
  316. }
  317. void ScriptTextEditor::set_edited_script(const Ref<Script>& p_script) {
  318. ERR_FAIL_COND(!script.is_null());
  319. script=p_script;
  320. _load_theme_settings();
  321. get_text_edit()->set_text(script->get_source_code());
  322. get_text_edit()->clear_undo_history();
  323. get_text_edit()->tag_saved_version();
  324. emit_signal("name_changed");
  325. _line_col_changed();
  326. }
  327. void ScriptTextEditor::_validate_script() {
  328. String errortxt;
  329. int line=-1,col;
  330. TextEdit *te=get_text_edit();
  331. String text = te->get_text();
  332. List<String> fnc;
  333. if (!script->get_language()->validate(text,line,col,errortxt,script->get_path(),&fnc)) {
  334. String error_text="error("+itos(line)+","+itos(col)+"): "+errortxt;
  335. set_error(error_text);
  336. } else {
  337. set_error("");
  338. line=-1;
  339. if (!script->is_tool()) {
  340. script->set_source_code(text);
  341. script->update_exports();
  342. //script->reload(); //will update all the variables in property editors
  343. }
  344. functions.clear();
  345. for (List<String>::Element *E=fnc.front();E;E=E->next()) {
  346. functions.push_back(E->get());
  347. }
  348. }
  349. line--;
  350. for(int i=0;i<te->get_line_count();i++) {
  351. te->set_line_as_marked(i,line==i);
  352. }
  353. emit_signal("name_changed");
  354. }
  355. static Node* _find_node_for_script(Node* p_base, Node*p_current, const Ref<Script>& p_script) {
  356. if (p_current->get_owner()!=p_base && p_base!=p_current)
  357. return NULL;
  358. Ref<Script> c = p_current->get_script();
  359. if (c==p_script)
  360. return p_current;
  361. for(int i=0;i<p_current->get_child_count();i++) {
  362. Node *found = _find_node_for_script(p_base,p_current->get_child(i),p_script);
  363. if (found)
  364. return found;
  365. }
  366. return NULL;
  367. }
  368. static void _find_changed_scripts_for_external_editor(Node* p_base, Node*p_current, Set<Ref<Script> > &r_scripts) {
  369. if (p_current->get_owner()!=p_base && p_base!=p_current)
  370. return;
  371. Ref<Script> c = p_current->get_script();
  372. if (c.is_valid())
  373. r_scripts.insert(c);
  374. for(int i=0;i<p_current->get_child_count();i++) {
  375. _find_changed_scripts_for_external_editor(p_base,p_current->get_child(i),r_scripts);
  376. }
  377. }
  378. void ScriptEditor::_update_modified_scripts_for_external_editor(Ref<Script> p_for_script) {
  379. if (!bool(EditorSettings::get_singleton()->get("external_editor/use_external_editor")))
  380. return;
  381. Set<Ref<Script> > scripts;
  382. Node *base = get_tree()->get_edited_scene_root();
  383. if (base) {
  384. _find_changed_scripts_for_external_editor(base,base,scripts);
  385. }
  386. for (Set<Ref<Script> >::Element *E=scripts.front();E;E=E->next()) {
  387. Ref<Script> script = E->get();
  388. if (p_for_script.is_valid() && p_for_script!=script)
  389. continue;
  390. if (script->get_path()=="" || script->get_path().find("local://")!=-1 || script->get_path().find("::")!=-1) {
  391. continue; //internal script, who cares, though weird
  392. }
  393. uint64_t last_date = script->get_last_modified_time();
  394. uint64_t date = FileAccess::get_modified_time(script->get_path());
  395. if (last_date!=date) {
  396. Ref<Script> rel_script = ResourceLoader::load(script->get_path(),script->get_type(),true);
  397. ERR_CONTINUE(!rel_script.is_valid());
  398. script->set_source_code( rel_script->get_source_code() );
  399. script->set_last_modified_time( rel_script->get_last_modified_time() );
  400. script->update_exports();
  401. }
  402. }
  403. }
  404. void ScriptTextEditor::_code_complete_script(const String& p_code, List<String>* r_options) {
  405. Node *base = get_tree()->get_edited_scene_root();
  406. if (base) {
  407. base = _find_node_for_script(base,base,script);
  408. }
  409. String hint;
  410. Error err = script->get_language()->complete_code(p_code,script->get_path().get_base_dir(),base,r_options,hint);
  411. if (hint!="") {
  412. get_text_edit()->set_code_hint(hint);
  413. print_line("hint: "+hint.replace(String::chr(0xFFFF),"|"));
  414. }
  415. }
  416. void ScriptTextEditor::_bind_methods() {
  417. ADD_SIGNAL(MethodInfo("name_changed"));
  418. }
  419. ScriptTextEditor::ScriptTextEditor() {
  420. }
  421. /*** SCRIPT EDITOR ******/
  422. String ScriptEditor::_get_debug_tooltip(const String&p_text,Node *_ste) {
  423. ScriptTextEditor *ste=_ste->cast_to<ScriptTextEditor>();
  424. String val = debugger->get_var_value(p_text);
  425. if (val!=String()) {
  426. return p_text+": "+val;
  427. } else {
  428. return String();
  429. }
  430. }
  431. void ScriptEditor::_breaked(bool p_breaked,bool p_can_debug) {
  432. debug_menu->get_popup()->set_item_disabled( debug_menu->get_popup()->get_item_index(DEBUG_NEXT), !(p_breaked && p_can_debug));
  433. debug_menu->get_popup()->set_item_disabled( debug_menu->get_popup()->get_item_index(DEBUG_STEP), !(p_breaked && p_can_debug) );
  434. debug_menu->get_popup()->set_item_disabled( debug_menu->get_popup()->get_item_index(DEBUG_BREAK), p_breaked );
  435. debug_menu->get_popup()->set_item_disabled( debug_menu->get_popup()->get_item_index(DEBUG_CONTINUE), !p_breaked );
  436. }
  437. void ScriptEditor::_show_debugger(bool p_show) {
  438. // debug_menu->get_popup()->set_item_checked( debug_menu->get_popup()->get_item_index(DEBUG_SHOW), p_show);
  439. }
  440. void ScriptEditor::_script_created(Ref<Script> p_script) {
  441. editor->push_item(p_script.operator->());
  442. }
  443. void ScriptEditor::_trim_trailing_whitespace(TextEdit *tx) {
  444. bool trimed_whitespace = false;
  445. for (int i = 0; i < tx->get_line_count(); i++) {
  446. String line = tx->get_line(i);
  447. if (line.ends_with(" ") || line.ends_with("\t")) {
  448. if (!trimed_whitespace) {
  449. tx->begin_complex_operation();
  450. trimed_whitespace = true;
  451. }
  452. int end = 0;
  453. for (int j = line.length() - 1; j > -1; j--) {
  454. if (line[j] != ' ' && line[j] != '\t') {
  455. end = j+1;
  456. break;
  457. }
  458. }
  459. tx->set_line(i, line.substr(0, end));
  460. }
  461. }
  462. if (trimed_whitespace) {
  463. tx->end_complex_operation();
  464. tx->update();
  465. }
  466. }
  467. void ScriptEditor::_goto_script_line2(int p_line) {
  468. int selected = tab_container->get_current_tab();
  469. if (selected<0 || selected>=tab_container->get_child_count())
  470. return;
  471. ScriptTextEditor *current = tab_container->get_child(selected)->cast_to<ScriptTextEditor>();
  472. if (!current)
  473. return;
  474. current->get_text_edit()->cursor_set_line(p_line);
  475. }
  476. void ScriptEditor::_goto_script_line(REF p_script,int p_line) {
  477. editor->push_item(p_script.ptr());
  478. _goto_script_line2(p_line);
  479. }
  480. void ScriptEditor::_update_history_arrows() {
  481. script_back->set_disabled( history_pos<=0 );
  482. script_forward->set_disabled( history_pos>=history.size()-1 );
  483. }
  484. void ScriptEditor::_go_to_tab(int p_idx) {
  485. Node *cn = tab_container->get_child(p_idx);
  486. if (!cn)
  487. return;
  488. Control *c = cn->cast_to<Control>();
  489. if (!c)
  490. return;
  491. if (history_pos>=0 && history_pos<history.size() && history[history_pos].control==tab_container->get_current_tab_control()) {
  492. Node *n = tab_container->get_current_tab_control();
  493. if (n->cast_to<ScriptTextEditor>()) {
  494. history[history_pos].scroll_pos=n->cast_to<ScriptTextEditor>()->get_text_edit()->get_v_scroll();
  495. history[history_pos].cursor_column=n->cast_to<ScriptTextEditor>()->get_text_edit()->cursor_get_column();
  496. history[history_pos].cursor_row=n->cast_to<ScriptTextEditor>()->get_text_edit()->cursor_get_line();
  497. }
  498. if (n->cast_to<EditorHelp>()) {
  499. history[history_pos].scroll_pos=n->cast_to<EditorHelp>()->get_scroll();
  500. }
  501. }
  502. history.resize(history_pos+1);
  503. ScriptHistory sh;
  504. sh.control=c;
  505. sh.scroll_pos=0;
  506. history.push_back(sh);
  507. history_pos++;
  508. tab_container->set_current_tab(p_idx);
  509. c = tab_container->get_current_tab_control();
  510. if (c->cast_to<ScriptTextEditor>()) {
  511. script_name_label->set_text(c->cast_to<ScriptTextEditor>()->get_name());
  512. script_icon->set_texture(c->cast_to<ScriptTextEditor>()->get_icon());
  513. if (is_visible())
  514. c->cast_to<ScriptTextEditor>()->get_text_edit()->grab_focus();
  515. }
  516. if (c->cast_to<EditorHelp>()) {
  517. script_name_label->set_text(c->cast_to<EditorHelp>()->get_class_name());
  518. script_icon->set_texture(get_icon("Help","EditorIcons"));
  519. if (is_visible())
  520. c->cast_to<EditorHelp>()->set_focused();
  521. }
  522. c->set_meta("__editor_pass",++edit_pass);
  523. _update_history_arrows();
  524. _update_script_colors();
  525. }
  526. void ScriptEditor::_close_current_tab() {
  527. int selected = tab_container->get_current_tab();
  528. if (selected<0 || selected>=tab_container->get_child_count())
  529. return;
  530. Node *tselected = tab_container->get_child(selected);
  531. ScriptTextEditor *current = tab_container->get_child(selected)->cast_to<ScriptTextEditor>();
  532. if (current) {
  533. apply_scripts();
  534. }
  535. //remove from history
  536. history.resize(history_pos+1);
  537. for(int i=0;i<history.size();i++) {
  538. if (history[i].control==tselected) {
  539. history.remove(i);
  540. i--;
  541. history_pos--;
  542. }
  543. }
  544. if (history_pos>=history.size()) {
  545. history_pos=history.size()-1;
  546. }
  547. int idx = tab_container->get_current_tab();
  548. memdelete(tselected);
  549. if (idx>=tab_container->get_child_count())
  550. idx=tab_container->get_child_count()-1;
  551. if (idx>=0) {
  552. if (history_pos>=0) {
  553. idx = history[history_pos].control->get_index();
  554. }
  555. tab_container->set_current_tab(idx);
  556. //script_list->select(idx);
  557. }
  558. _update_history_arrows();
  559. _update_script_names();
  560. EditorNode::get_singleton()->save_layout();
  561. }
  562. void ScriptEditor::_resave_scripts(const String& p_str) {
  563. apply_scripts();
  564. for(int i=0;i<tab_container->get_child_count();i++) {
  565. ScriptTextEditor *ste = tab_container->get_child(i)->cast_to<ScriptTextEditor>();
  566. if (!ste)
  567. continue;
  568. Ref<Script> script = ste->get_edited_script();
  569. if (script->get_path()=="" || script->get_path().find("local://")!=-1 || script->get_path().find("::")!=-1)
  570. continue; //internal script, who cares
  571. if (trim_trailing_whitespace_on_save) {
  572. _trim_trailing_whitespace(ste->get_text_edit());
  573. }
  574. editor->save_resource(script);
  575. ste->get_text_edit()->tag_saved_version();
  576. }
  577. disk_changed->hide();
  578. }
  579. void ScriptEditor::_reload_scripts(){
  580. for(int i=0;i<tab_container->get_child_count();i++) {
  581. ScriptTextEditor *ste = tab_container->get_child(i)->cast_to<ScriptTextEditor>();
  582. if (!ste) {
  583. continue;
  584. }
  585. Ref<Script> script = ste->get_edited_script();
  586. if (script->get_path()=="" || script->get_path().find("local://")!=-1 || script->get_path().find("::")!=-1) {
  587. continue; //internal script, who cares
  588. }
  589. Ref<Script> rel_script = ResourceLoader::load(script->get_path(),script->get_type(),true);
  590. ERR_CONTINUE(!rel_script.is_valid());
  591. script->set_source_code( rel_script->get_source_code() );
  592. script->set_last_modified_time( rel_script->get_last_modified_time() );
  593. script->reload();
  594. ste->reload_text();
  595. }
  596. disk_changed->hide();
  597. _update_script_names();
  598. }
  599. void ScriptEditor::_res_saved_callback(const Ref<Resource>& p_res) {
  600. for(int i=0;i<tab_container->get_child_count();i++) {
  601. ScriptTextEditor *ste = tab_container->get_child(i)->cast_to<ScriptTextEditor>();
  602. if (!ste) {
  603. continue;
  604. }
  605. Ref<Script> script = ste->get_edited_script();
  606. if (script->get_path()=="" || script->get_path().find("local://")!=-1 || script->get_path().find("::")!=-1) {
  607. continue; //internal script, who cares
  608. }
  609. if (script==p_res) {
  610. ste->get_text_edit()->tag_saved_version();
  611. }
  612. }
  613. _update_script_names();
  614. if (!pending_auto_reload && auto_reload_running_scripts) {
  615. call_deferred("_live_auto_reload_running_scripts");
  616. pending_auto_reload=true;
  617. }
  618. }
  619. void ScriptEditor::_live_auto_reload_running_scripts() {
  620. pending_auto_reload=false;
  621. debugger->reload_scripts();
  622. }
  623. bool ScriptEditor::_test_script_times_on_disk(Ref<Script> p_for_script) {
  624. disk_changed_list->clear();
  625. TreeItem *r = disk_changed_list->create_item();
  626. disk_changed_list->set_hide_root(true);
  627. bool need_ask=false;
  628. bool need_reload=false;
  629. bool use_autoreload=bool(EDITOR_DEF("text_editor/auto_reload_scripts_on_external_change",false));
  630. for(int i=0;i<tab_container->get_child_count();i++) {
  631. ScriptTextEditor *ste = tab_container->get_child(i)->cast_to<ScriptTextEditor>();
  632. if (ste) {
  633. Ref<Script> script = ste->get_edited_script();
  634. if (p_for_script.is_valid() && p_for_script!=script)
  635. continue;
  636. if (script->get_path()=="" || script->get_path().find("local://")!=-1 || script->get_path().find("::")!=-1)
  637. continue; //internal script, who cares
  638. uint64_t last_date = script->get_last_modified_time();
  639. uint64_t date = FileAccess::get_modified_time(script->get_path());
  640. //printf("last date: %lli vs date: %lli\n",last_date,date);
  641. if (last_date!=date) {
  642. TreeItem *ti = disk_changed_list->create_item(r);
  643. ti->set_text(0,script->get_path().get_file());
  644. if (!use_autoreload || ste->is_unsaved()) {
  645. need_ask=true;
  646. }
  647. need_reload=true;
  648. //r->set_metadata(0,);
  649. }
  650. }
  651. }
  652. if (need_reload) {
  653. if (!need_ask) {
  654. script_editor->_reload_scripts();
  655. need_reload=false;
  656. } else {
  657. disk_changed->call_deferred("popup_centered_ratio",0.5);
  658. }
  659. }
  660. return need_reload;
  661. }
  662. void ScriptEditor::swap_lines(TextEdit *tx, int line1, int line2)
  663. {
  664. String tmp = tx->get_line(line1);
  665. String tmp2 = tx->get_line(line2);
  666. tx->set_line(line2, tmp);
  667. tx->set_line(line1, tmp2);
  668. tx->cursor_set_line(line2);
  669. }
  670. void ScriptEditor::_file_dialog_action(String p_file) {
  671. switch (file_dialog_option) {
  672. case FILE_SAVE_THEME_AS: {
  673. if(!EditorSettings::get_singleton()->save_text_editor_theme_as(p_file)) {
  674. editor->show_warning(TTR("Error while saving theme"), TTR("Error saving"));
  675. }
  676. } break;
  677. case FILE_IMPORT_THEME: {
  678. if(!EditorSettings::get_singleton()->import_text_editor_theme(p_file)) {
  679. editor->show_warning(TTR("Error importing theme"), TTR("Error importing"));
  680. }
  681. } break;
  682. }
  683. file_dialog_option = -1;
  684. }
  685. void ScriptEditor::_menu_option(int p_option) {
  686. switch(p_option) {
  687. case FILE_NEW: {
  688. script_create_dialog->config("Node", ".gd");
  689. script_create_dialog->popup_centered(Size2(300, 300)*EDSCALE);
  690. } break;
  691. case FILE_OPEN: {
  692. editor->open_resource("Script");
  693. return;
  694. } break;
  695. case FILE_SAVE_ALL: {
  696. if (!_test_script_times_on_disk())
  697. return;
  698. save_all_scripts();
  699. #if 0
  700. for(int i=0;i<tab_container->get_child_count();i++) {
  701. ScriptTextEditor *ste = tab_container->get_child(i)->cast_to<ScriptTextEditor>();
  702. if (!ste)
  703. continue;
  704. Ref<Script> script = ste->get_edited_script();
  705. if (script->get_path()=="" || script->get_path().find("local://")!=-1 || script->get_path().find("::")!=-1)
  706. continue; //internal script, who cares
  707. editor->save_resource( script );
  708. }
  709. #endif
  710. } break;
  711. case FILE_IMPORT_THEME: {
  712. file_dialog->set_mode(EditorFileDialog::MODE_OPEN_FILE);
  713. file_dialog->set_access(EditorFileDialog::ACCESS_FILESYSTEM);
  714. file_dialog_option = FILE_IMPORT_THEME;
  715. file_dialog->clear_filters();
  716. file_dialog->add_filter("*.tet");
  717. file_dialog->popup_centered_ratio();
  718. file_dialog->set_title(TTR("Import Theme"));
  719. } break;
  720. case FILE_RELOAD_THEME: {
  721. EditorSettings::get_singleton()->load_text_editor_theme();
  722. } break;
  723. case FILE_SAVE_THEME: {
  724. if(!EditorSettings::get_singleton()->save_text_editor_theme()) {
  725. editor->show_warning(TTR("Error while saving theme"), TTR("Error saving"));
  726. }
  727. } break;
  728. case FILE_SAVE_THEME_AS: {
  729. file_dialog->set_mode(EditorFileDialog::MODE_SAVE_FILE);
  730. file_dialog->set_access(EditorFileDialog::ACCESS_FILESYSTEM);
  731. file_dialog_option = FILE_SAVE_THEME_AS;
  732. file_dialog->clear_filters();
  733. file_dialog->add_filter("*.tet");
  734. file_dialog->set_current_path(EditorSettings::get_singleton()->get_settings_path() + "/text_editor_themes/" + EditorSettings::get_singleton()->get("text_editor/color_theme"));
  735. file_dialog->popup_centered_ratio();
  736. file_dialog->set_title(TTR("Save Theme As.."));
  737. } break;
  738. case SEARCH_HELP: {
  739. help_search_dialog->popup();
  740. } break;
  741. case SEARCH_CLASSES: {
  742. String current;
  743. if (tab_container->get_tab_count()>0) {
  744. EditorHelp *eh = tab_container->get_child( tab_container->get_current_tab() )->cast_to<EditorHelp>();
  745. if (eh) {
  746. current=eh->get_class_name();
  747. }
  748. }
  749. help_index->popup();
  750. if (current!="") {
  751. help_index->call_deferred("select_class",current);
  752. }
  753. } break;
  754. case SEARCH_WEBSITE: {
  755. OS::get_singleton()->shell_open("http://docs.godotengine.org/");
  756. } break;
  757. case WINDOW_NEXT: {
  758. _history_forward();
  759. } break;
  760. case WINDOW_PREV: {
  761. _history_back();
  762. } break;
  763. case DEBUG_SHOW: {
  764. if (debugger) {
  765. bool visible = debug_menu->get_popup()->is_item_checked( debug_menu->get_popup()->get_item_index(DEBUG_SHOW) );
  766. debug_menu->get_popup()->set_item_checked( debug_menu->get_popup()->get_item_index(DEBUG_SHOW), !visible);
  767. if (visible)
  768. debugger->hide();
  769. else
  770. debugger->show();
  771. }
  772. } break;
  773. case DEBUG_SHOW_KEEP_OPEN: {
  774. bool visible = debug_menu->get_popup()->is_item_checked( debug_menu->get_popup()->get_item_index(DEBUG_SHOW_KEEP_OPEN) );
  775. if (debugger)
  776. debugger->set_hide_on_stop(visible);
  777. debug_menu->get_popup()->set_item_checked( debug_menu->get_popup()->get_item_index(DEBUG_SHOW_KEEP_OPEN), !visible);
  778. } break;
  779. }
  780. int selected = tab_container->get_current_tab();
  781. if (selected<0 || selected>=tab_container->get_child_count())
  782. return;
  783. ScriptTextEditor *current = tab_container->get_child(selected)->cast_to<ScriptTextEditor>();
  784. if (current) {
  785. switch(p_option) {
  786. case FILE_NEW: {
  787. script_create_dialog->config("Node", ".gd");
  788. script_create_dialog->popup_centered(Size2(300, 300)*EDSCALE);
  789. } break;
  790. case FILE_SAVE: {
  791. if (_test_script_times_on_disk())
  792. return;
  793. if (trim_trailing_whitespace_on_save) {
  794. _trim_trailing_whitespace(current->get_text_edit());
  795. }
  796. editor->save_resource( current->get_edited_script() );
  797. } break;
  798. case FILE_SAVE_AS: {
  799. if (trim_trailing_whitespace_on_save) {
  800. _trim_trailing_whitespace(current->get_text_edit());
  801. }
  802. editor->save_resource_as( current->get_edited_script() );
  803. } break;
  804. case EDIT_UNDO: {
  805. current->get_text_edit()->undo();
  806. current->get_text_edit()->call_deferred("grab_focus");
  807. } break;
  808. case EDIT_REDO: {
  809. current->get_text_edit()->redo();
  810. current->get_text_edit()->call_deferred("grab_focus");
  811. } break;
  812. case EDIT_CUT: {
  813. current->get_text_edit()->cut();
  814. current->get_text_edit()->call_deferred("grab_focus");
  815. } break;
  816. case EDIT_COPY: {
  817. current->get_text_edit()->copy();
  818. current->get_text_edit()->call_deferred("grab_focus");
  819. } break;
  820. case EDIT_PASTE: {
  821. current->get_text_edit()->paste();
  822. current->get_text_edit()->call_deferred("grab_focus");
  823. } break;
  824. case EDIT_SELECT_ALL: {
  825. current->get_text_edit()->select_all();
  826. current->get_text_edit()->call_deferred("grab_focus");
  827. } break;
  828. case EDIT_MOVE_LINE_UP: {
  829. TextEdit *tx = current->get_text_edit();
  830. Ref<Script> scr = current->get_edited_script();
  831. if (scr.is_null())
  832. return;
  833. tx->begin_complex_operation();
  834. if (tx->is_selection_active())
  835. {
  836. int from_line = tx->get_selection_from_line();
  837. int from_col = tx->get_selection_from_column();
  838. int to_line = tx->get_selection_to_line();
  839. int to_column = tx->get_selection_to_column();
  840. for (int i = from_line; i <= to_line; i++)
  841. {
  842. int line_id = i;
  843. int next_id = i - 1;
  844. if (line_id == 0 || next_id < 0)
  845. return;
  846. swap_lines(tx, line_id, next_id);
  847. }
  848. int from_line_up = from_line > 0 ? from_line-1 : from_line;
  849. int to_line_up = to_line > 0 ? to_line-1 : to_line;
  850. tx->select(from_line_up, from_col, to_line_up, to_column);
  851. }
  852. else
  853. {
  854. int line_id = tx->cursor_get_line();
  855. int next_id = line_id - 1;
  856. if (line_id == 0 || next_id < 0)
  857. return;
  858. swap_lines(tx, line_id, next_id);
  859. }
  860. tx->end_complex_operation();
  861. tx->update();
  862. } break;
  863. case EDIT_MOVE_LINE_DOWN: {
  864. TextEdit *tx = current->get_text_edit();
  865. Ref<Script> scr = current->get_edited_script();
  866. if (scr.is_null())
  867. return;
  868. tx->begin_complex_operation();
  869. if (tx->is_selection_active())
  870. {
  871. int from_line = tx->get_selection_from_line();
  872. int from_col = tx->get_selection_from_column();
  873. int to_line = tx->get_selection_to_line();
  874. int to_column = tx->get_selection_to_column();
  875. for (int i = to_line; i >= from_line; i--)
  876. {
  877. int line_id = i;
  878. int next_id = i + 1;
  879. if (line_id == tx->get_line_count()-1 || next_id > tx->get_line_count())
  880. return;
  881. swap_lines(tx, line_id, next_id);
  882. }
  883. int from_line_down = from_line < tx->get_line_count() ? from_line+1 : from_line;
  884. int to_line_down = to_line < tx->get_line_count() ? to_line+1 : to_line;
  885. tx->select(from_line_down, from_col, to_line_down, to_column);
  886. }
  887. else
  888. {
  889. int line_id = tx->cursor_get_line();
  890. int next_id = line_id + 1;
  891. if (line_id == tx->get_line_count()-1 || next_id > tx->get_line_count())
  892. return;
  893. swap_lines(tx, line_id, next_id);
  894. }
  895. tx->end_complex_operation();
  896. tx->update();
  897. } break;
  898. case EDIT_INDENT_LEFT: {
  899. TextEdit *tx = current->get_text_edit();
  900. Ref<Script> scr = current->get_edited_script();
  901. if (scr.is_null())
  902. return;
  903. tx->begin_complex_operation();
  904. if (tx->is_selection_active())
  905. {
  906. tx->indent_selection_left();
  907. }
  908. else
  909. {
  910. int begin = tx->cursor_get_line();
  911. String line_text = tx->get_line(begin);
  912. // begins with tab
  913. if (line_text.begins_with("\t"))
  914. {
  915. line_text = line_text.substr(1, line_text.length());
  916. tx->set_line(begin, line_text);
  917. }
  918. // begins with 4 spaces
  919. else if (line_text.begins_with(" "))
  920. {
  921. line_text = line_text.substr(4, line_text.length());
  922. tx->set_line(begin, line_text);
  923. }
  924. }
  925. tx->end_complex_operation();
  926. tx->update();
  927. //tx->deselect();
  928. } break;
  929. case EDIT_INDENT_RIGHT: {
  930. TextEdit *tx = current->get_text_edit();
  931. Ref<Script> scr = current->get_edited_script();
  932. if (scr.is_null())
  933. return;
  934. tx->begin_complex_operation();
  935. if (tx->is_selection_active())
  936. {
  937. tx->indent_selection_right();
  938. }
  939. else
  940. {
  941. int begin = tx->cursor_get_line();
  942. String line_text = tx->get_line(begin);
  943. line_text = '\t' + line_text;
  944. tx->set_line(begin, line_text);
  945. }
  946. tx->end_complex_operation();
  947. tx->update();
  948. //tx->deselect();
  949. } break;
  950. case EDIT_CLONE_DOWN: {
  951. TextEdit *tx = current->get_text_edit();
  952. Ref<Script> scr = current->get_edited_script();
  953. if (scr.is_null())
  954. return;
  955. int from_line = tx->cursor_get_line();
  956. int to_line = tx->cursor_get_line();
  957. int column = tx->cursor_get_column();
  958. if (tx->is_selection_active()) {
  959. from_line = tx->get_selection_from_line();
  960. to_line = tx->get_selection_to_line();
  961. column = tx->cursor_get_column();
  962. }
  963. int next_line = to_line + 1;
  964. tx->begin_complex_operation();
  965. for (int i = from_line; i <= to_line; i++) {
  966. if (i >= tx->get_line_count() - 1) {
  967. tx->set_line(i, tx->get_line(i) + "\n");
  968. }
  969. String line_clone = tx->get_line(i);
  970. tx->insert_at(line_clone, next_line);
  971. next_line++;
  972. }
  973. tx->cursor_set_column(column);
  974. if (tx->is_selection_active()) {
  975. tx->select(to_line + 1, tx->get_selection_from_column(), next_line - 1, tx->get_selection_to_column());
  976. }
  977. tx->end_complex_operation();
  978. tx->update();
  979. } break;
  980. case EDIT_TOGGLE_COMMENT: {
  981. TextEdit *tx = current->get_text_edit();
  982. Ref<Script> scr = current->get_edited_script();
  983. if (scr.is_null())
  984. return;
  985. tx->begin_complex_operation();
  986. if (tx->is_selection_active())
  987. {
  988. int begin = tx->get_selection_from_line();
  989. int end = tx->get_selection_to_line();
  990. // End of selection ends on the first column of the last line, ignore it.
  991. if(tx->get_selection_to_column() == 0)
  992. end -= 1;
  993. for (int i = begin; i <= end; i++)
  994. {
  995. String line_text = tx->get_line(i);
  996. if (line_text.begins_with("#"))
  997. line_text = line_text.substr(1, line_text.length());
  998. else
  999. line_text = "#" + line_text;
  1000. tx->set_line(i, line_text);
  1001. }
  1002. }
  1003. else
  1004. {
  1005. int begin = tx->cursor_get_line();
  1006. String line_text = tx->get_line(begin);
  1007. if (line_text.begins_with("#"))
  1008. line_text = line_text.substr(1, line_text.length());
  1009. else
  1010. line_text = "#" + line_text;
  1011. tx->set_line(begin, line_text);
  1012. }
  1013. tx->end_complex_operation();
  1014. tx->update();
  1015. //tx->deselect();
  1016. } break;
  1017. case EDIT_COMPLETE: {
  1018. current->get_text_edit()->query_code_comple();
  1019. } break;
  1020. case EDIT_AUTO_INDENT: {
  1021. TextEdit *te = current->get_text_edit();
  1022. String text = te->get_text();
  1023. Ref<Script> scr = current->get_edited_script();
  1024. if (scr.is_null())
  1025. return;
  1026. int begin,end;
  1027. if (te->is_selection_active()) {
  1028. begin=te->get_selection_from_line();
  1029. end=te->get_selection_to_line();
  1030. } else {
  1031. begin=0;
  1032. end=te->get_line_count()-1;
  1033. }
  1034. scr->get_language()->auto_indent_code(text,begin,end);
  1035. te->set_text(text);
  1036. } break;
  1037. case FILE_TOOL_RELOAD:
  1038. case FILE_TOOL_RELOAD_SOFT: {
  1039. TextEdit *te = current->get_text_edit();
  1040. Ref<Script> scr = current->get_edited_script();
  1041. if (scr.is_null())
  1042. return;
  1043. scr->set_source_code(te->get_text());
  1044. scr->get_language()->reload_tool_script(scr,p_option==FILE_TOOL_RELOAD_SOFT);
  1045. } break;
  1046. case EDIT_TRIM_TRAILING_WHITESAPCE: {
  1047. _trim_trailing_whitespace(current->get_text_edit());
  1048. } break;
  1049. case SEARCH_FIND: {
  1050. current->get_find_replace_bar()->popup_search();
  1051. } break;
  1052. case SEARCH_FIND_NEXT: {
  1053. current->get_find_replace_bar()->search_next();
  1054. } break;
  1055. case SEARCH_FIND_PREV: {
  1056. current->get_find_replace_bar()->search_prev();
  1057. } break;
  1058. case SEARCH_REPLACE: {
  1059. current->get_find_replace_bar()->popup_replace();
  1060. } break;
  1061. case SEARCH_LOCATE_FUNCTION: {
  1062. if (!current)
  1063. return;
  1064. quick_open->popup(current->get_functions());
  1065. } break;
  1066. case SEARCH_GOTO_LINE: {
  1067. goto_line_dialog->popup_find_line(current->get_text_edit());
  1068. } break;
  1069. case DEBUG_TOGGLE_BREAKPOINT: {
  1070. int line=current->get_text_edit()->cursor_get_line();
  1071. bool dobreak = !current->get_text_edit()->is_line_set_as_breakpoint(line);
  1072. current->get_text_edit()->set_line_as_breakpoint(line,dobreak);
  1073. get_debugger()->set_breakpoint(current->get_edited_script()->get_path(),line+1,dobreak);
  1074. } break;
  1075. case DEBUG_REMOVE_ALL_BREAKPOINTS: {
  1076. List<int> bpoints;
  1077. current->get_text_edit()->get_breakpoints(&bpoints);
  1078. for(List<int>::Element *E=bpoints.front();E;E=E->next()) {
  1079. int line = E->get();
  1080. bool dobreak = !current->get_text_edit()->is_line_set_as_breakpoint(line);
  1081. current->get_text_edit()->set_line_as_breakpoint(line,dobreak);
  1082. get_debugger()->set_breakpoint(current->get_edited_script()->get_path(),line+1,dobreak);
  1083. }
  1084. }
  1085. case DEBUG_GOTO_NEXT_BREAKPOINT: {
  1086. List<int> bpoints;
  1087. current->get_text_edit()->get_breakpoints(&bpoints);
  1088. if (bpoints.size() <= 0) {
  1089. return;
  1090. }
  1091. int line=current->get_text_edit()->cursor_get_line();
  1092. // wrap around
  1093. if (line >= bpoints[bpoints.size() - 1]) {
  1094. current->get_text_edit()->cursor_set_line(bpoints[0]);
  1095. } else {
  1096. for(List<int>::Element *E=bpoints.front();E;E=E->next()) {
  1097. int bline = E->get();
  1098. if (bline > line) {
  1099. current->get_text_edit()->cursor_set_line(bline);
  1100. return;
  1101. }
  1102. }
  1103. }
  1104. } break;
  1105. case DEBUG_GOTO_PREV_BREAKPOINT: {
  1106. List<int> bpoints;
  1107. current->get_text_edit()->get_breakpoints(&bpoints);
  1108. if (bpoints.size() <= 0) {
  1109. return;
  1110. }
  1111. int line=current->get_text_edit()->cursor_get_line();
  1112. // wrap around
  1113. if (line <= bpoints[0]) {
  1114. current->get_text_edit()->cursor_set_line(bpoints[bpoints.size() - 1]);
  1115. } else {
  1116. for(List<int>::Element *E=bpoints.back();E;E=E->prev()) {
  1117. int bline = E->get();
  1118. if (bline < line) {
  1119. current->get_text_edit()->cursor_set_line(bline);
  1120. return;
  1121. }
  1122. }
  1123. }
  1124. } break;
  1125. case DEBUG_NEXT: {
  1126. if (debugger)
  1127. debugger->debug_next();
  1128. } break;
  1129. case DEBUG_STEP: {
  1130. if (debugger)
  1131. debugger->debug_step();
  1132. } break;
  1133. case DEBUG_BREAK: {
  1134. if (debugger)
  1135. debugger->debug_break();
  1136. } break;
  1137. case DEBUG_CONTINUE: {
  1138. if (debugger)
  1139. debugger->debug_continue();
  1140. } break;
  1141. case HELP_CONTEXTUAL: {
  1142. String text = current->get_text_edit()->get_selection_text();
  1143. if (text == "")
  1144. text = current->get_text_edit()->get_word_under_cursor();
  1145. if (text != "")
  1146. help_search_dialog->popup(text);
  1147. } break;
  1148. case FILE_CLOSE: {
  1149. if (current->get_text_edit()->get_version()!=current->get_text_edit()->get_saved_version()) {
  1150. erase_tab_confirm->set_text("Close and save changes?\n\""+current->get_name()+"\"");
  1151. erase_tab_confirm->popup_centered_minsize();
  1152. } else {
  1153. _close_current_tab();
  1154. }
  1155. } break;
  1156. case WINDOW_MOVE_LEFT: {
  1157. if (tab_container->get_current_tab()>0) {
  1158. tab_container->call_deferred("set_current_tab",tab_container->get_current_tab()-1);
  1159. script_list->call_deferred("select",tab_container->get_current_tab()-1);
  1160. tab_container->move_child(current,tab_container->get_current_tab()-1);
  1161. _update_script_names();
  1162. }
  1163. } break;
  1164. case WINDOW_MOVE_RIGHT: {
  1165. if (tab_container->get_current_tab()<tab_container->get_child_count()-1) {
  1166. tab_container->call_deferred("set_current_tab",tab_container->get_current_tab()+1);
  1167. script_list->call_deferred("select",tab_container->get_current_tab()+1);
  1168. tab_container->move_child(current,tab_container->get_current_tab()+1);
  1169. _update_script_names();
  1170. }
  1171. } break;
  1172. default: {
  1173. if (p_option>=WINDOW_SELECT_BASE) {
  1174. tab_container->set_current_tab(p_option-WINDOW_SELECT_BASE);
  1175. script_list->select(p_option-WINDOW_SELECT_BASE);
  1176. }
  1177. }
  1178. }
  1179. }
  1180. EditorHelp *help = tab_container->get_child(selected)->cast_to<EditorHelp>();
  1181. if (help) {
  1182. switch(p_option) {
  1183. case SEARCH_FIND: {
  1184. help->popup_search();
  1185. } break;
  1186. case SEARCH_FIND_NEXT: {
  1187. help->search_again();
  1188. } break;
  1189. case FILE_CLOSE: {
  1190. _close_current_tab();
  1191. } break;
  1192. }
  1193. }
  1194. }
  1195. void ScriptEditor::_tab_changed(int p_which) {
  1196. ensure_select_current();
  1197. }
  1198. void ScriptEditor::_notification(int p_what) {
  1199. if (p_what==NOTIFICATION_ENTER_TREE) {
  1200. editor->connect("play_pressed",this,"_editor_play");
  1201. editor->connect("pause_pressed",this,"_editor_pause");
  1202. editor->connect("stop_pressed",this,"_editor_stop");
  1203. editor->connect("script_add_function_request",this,"_add_callback");
  1204. editor->connect("resource_saved",this,"_res_saved_callback");
  1205. script_list->connect("item_selected",this,"_script_selected");
  1206. script_split->connect("dragged",this,"_script_split_dragged");
  1207. autosave_timer->connect("timeout",this,"_autosave_scripts");
  1208. {
  1209. float autosave_time = EditorSettings::get_singleton()->get("text_editor/autosave_interval_secs");
  1210. if (autosave_time>0) {
  1211. autosave_timer->set_wait_time(autosave_time);
  1212. autosave_timer->start();
  1213. } else {
  1214. autosave_timer->stop();
  1215. }
  1216. }
  1217. EditorSettings::get_singleton()->connect("settings_changed",this,"_editor_settings_changed");
  1218. help_search->set_icon(get_icon("Help","EditorIcons"));
  1219. site_search->set_icon(get_icon("Godot","EditorIcons"));
  1220. class_search->set_icon(get_icon("ClassList","EditorIcons"));
  1221. script_forward->set_icon(get_icon("Forward","EditorIcons"));
  1222. script_back->set_icon(get_icon("Back","EditorIcons"));
  1223. }
  1224. if (p_what==NOTIFICATION_READY) {
  1225. get_tree()->connect("tree_changed",this,"_tree_changed");
  1226. editor->connect("request_help",this,"_request_help");
  1227. }
  1228. if (p_what==NOTIFICATION_EXIT_TREE) {
  1229. editor->disconnect("play_pressed",this,"_editor_play");
  1230. editor->disconnect("pause_pressed",this,"_editor_pause");
  1231. editor->disconnect("stop_pressed",this,"_editor_stop");
  1232. }
  1233. if (p_what==MainLoop::NOTIFICATION_WM_FOCUS_IN) {
  1234. _test_script_times_on_disk();
  1235. _update_modified_scripts_for_external_editor();
  1236. }
  1237. if (p_what==NOTIFICATION_PROCESS) {
  1238. }
  1239. }
  1240. void ScriptEditor::edited_scene_changed() {
  1241. _update_modified_scripts_for_external_editor();
  1242. }
  1243. static const Node * _find_node_with_script(const Node* p_node, const RefPtr & p_script) {
  1244. if (p_node->get_script()==p_script)
  1245. return p_node;
  1246. for(int i=0;i<p_node->get_child_count();i++) {
  1247. const Node *result = _find_node_with_script(p_node->get_child(i),p_script);
  1248. if (result)
  1249. return result;
  1250. }
  1251. return NULL;
  1252. }
  1253. Dictionary ScriptEditor::get_state() const {
  1254. // apply_scripts();
  1255. Dictionary state;
  1256. #if 0
  1257. Array paths;
  1258. int open=-1;
  1259. for(int i=0;i<tab_container->get_child_count();i++) {
  1260. ScriptTextEditor *ste = tab_container->get_child(i)->cast_to<ScriptTextEditor>();
  1261. if (!ste)
  1262. continue;
  1263. Ref<Script> script = ste->get_edited_script();
  1264. if (script->get_path()!="" && script->get_path().find("local://")==-1 && script->get_path().find("::")==-1) {
  1265. paths.push_back(script->get_path());
  1266. } else {
  1267. const Node *owner = _find_node_with_script(get_tree()->get_root(),script.get_ref_ptr());
  1268. if (owner)
  1269. paths.push_back(owner->get_path());
  1270. }
  1271. if (i==tab_container->get_current_tab())
  1272. open=i;
  1273. }
  1274. if (paths.size())
  1275. state["sources"]=paths;
  1276. if (open!=-1)
  1277. state["current"]=open;
  1278. #endif
  1279. return state;
  1280. }
  1281. void ScriptEditor::set_state(const Dictionary& p_state) {
  1282. #if 0
  1283. print_line("attempt set state: "+String(Variant(p_state)));
  1284. if (!p_state.has("sources"))
  1285. return; //bleh
  1286. Array sources = p_state["sources"];
  1287. for(int i=0;i<sources.size();i++) {
  1288. Variant source=sources[i];
  1289. Ref<Script> script;
  1290. if (source.get_type()==Variant::NODE_PATH) {
  1291. Node *owner=get_tree()->get_root()->get_node(source);
  1292. if (!owner)
  1293. continue;
  1294. script = owner->get_script();
  1295. } else if (source.get_type()==Variant::STRING) {
  1296. script = ResourceLoader::load(source,"Script");
  1297. }
  1298. if (script.is_null()) //ah well..
  1299. continue;
  1300. editor->call("_resource_selected",script);
  1301. }
  1302. if (p_state.has("current")) {
  1303. tab_container->set_current_tab(p_state["current"]);
  1304. }
  1305. #endif
  1306. }
  1307. void ScriptEditor::clear() {
  1308. #if 0
  1309. List<ScriptTextEditor*> stes;
  1310. for(int i=0;i<tab_container->get_child_count();i++) {
  1311. ScriptTextEditor *ste = tab_container->get_child(i)->cast_to<ScriptTextEditor>();
  1312. if (!ste)
  1313. continue;
  1314. stes.push_back(ste);
  1315. }
  1316. while(stes.size()) {
  1317. memdelete(stes.front()->get());
  1318. stes.pop_front();
  1319. }
  1320. int idx = tab_container->get_current_tab();
  1321. if (idx>=tab_container->get_child_count())
  1322. idx=tab_container->get_child_count()-1;
  1323. if (idx>=0) {
  1324. tab_container->set_current_tab(idx);
  1325. script_list->select( script_list->find_metadata(idx) );
  1326. }
  1327. #endif
  1328. }
  1329. void ScriptEditor::get_breakpoints(List<String> *p_breakpoints) {
  1330. for(int i=0;i<tab_container->get_child_count();i++) {
  1331. ScriptTextEditor *ste = tab_container->get_child(i)->cast_to<ScriptTextEditor>();
  1332. if (!ste)
  1333. continue;
  1334. List<int> bpoints;
  1335. ste->get_text_edit()->get_breakpoints(&bpoints);
  1336. Ref<Script> script = ste->get_edited_script();
  1337. String base = script->get_path();
  1338. ERR_CONTINUE( base.begins_with("local://") || base=="" );
  1339. for(List<int>::Element *E=bpoints.front();E;E=E->next()) {
  1340. p_breakpoints->push_back(base+":"+itos(E->get()+1));
  1341. }
  1342. }
  1343. }
  1344. void ScriptEditor::ensure_focus_current() {
  1345. if (!is_inside_tree())
  1346. return;
  1347. int cidx = tab_container->get_current_tab();
  1348. if (cidx<0 || cidx>=tab_container->get_tab_count());
  1349. Control *c = tab_container->get_child(cidx)->cast_to<Control>();
  1350. if (!c)
  1351. return;
  1352. ScriptTextEditor *ste = c->cast_to<ScriptTextEditor>();
  1353. if (!ste)
  1354. return;
  1355. ste->get_text_edit()->grab_focus();
  1356. }
  1357. void ScriptEditor::_script_selected(int p_idx) {
  1358. grab_focus_block = !Input::get_singleton()->is_mouse_button_pressed(1); //amazing hack, simply amazing
  1359. _go_to_tab(script_list->get_item_metadata(p_idx));
  1360. grab_focus_block=false;
  1361. }
  1362. void ScriptEditor::ensure_select_current() {
  1363. if (tab_container->get_child_count() && tab_container->get_current_tab()>=0) {
  1364. Node *current = tab_container->get_child(tab_container->get_current_tab());
  1365. ScriptTextEditor *ste = current->cast_to<ScriptTextEditor>();
  1366. if (ste) {
  1367. Ref<Script> script = ste->get_edited_script();
  1368. if (!grab_focus_block && is_visible())
  1369. ste->get_text_edit()->grab_focus();
  1370. edit_menu->show();
  1371. search_menu->show();
  1372. script_search_menu->hide();
  1373. }
  1374. EditorHelp *eh = current->cast_to<EditorHelp>();
  1375. if (eh) {
  1376. edit_menu->hide();
  1377. search_menu->hide();
  1378. script_search_menu->show();
  1379. }
  1380. }
  1381. }
  1382. void ScriptEditor::_find_scripts(Node* p_base, Node* p_current, Set<Ref<Script> > &used) {
  1383. if (p_current!=p_base && p_current->get_owner()!=p_base)
  1384. return;
  1385. if (p_current->get_script_instance()) {
  1386. Ref<Script> scr = p_current->get_script();
  1387. if (scr.is_valid())
  1388. used.insert(scr);
  1389. }
  1390. for(int i=0;i<p_current->get_child_count();i++) {
  1391. _find_scripts(p_base,p_current->get_child(i),used);
  1392. }
  1393. }
  1394. struct _ScriptEditorItemData {
  1395. String name;
  1396. Ref<Texture> icon;
  1397. int index;
  1398. String tooltip;
  1399. bool used;
  1400. int category;
  1401. bool operator<(const _ScriptEditorItemData& id) const {
  1402. return category==id.category?name.nocasecmp_to(id.name)<0:category<id.category;
  1403. }
  1404. };
  1405. void ScriptEditor::_update_script_colors() {
  1406. bool enabled = EditorSettings::get_singleton()->get("text_editor/script_temperature_enabled");
  1407. if (!enabled)
  1408. return;
  1409. int hist_size = EditorSettings::get_singleton()->get("text_editor/script_temperature_history_size");
  1410. Color hot_color=EditorSettings::get_singleton()->get("text_editor/script_temperature_hot_color");
  1411. Color cold_color=EditorSettings::get_singleton()->get("text_editor/script_temperature_cold_color");
  1412. for(int i=0;i<script_list->get_item_count();i++) {
  1413. int c = script_list->get_item_metadata(i);
  1414. Node *n = tab_container->get_child(c);
  1415. if (!n)
  1416. continue;
  1417. script_list->set_item_custom_bg_color(i,Color(0,0,0,0));
  1418. if (!n->has_meta("__editor_pass")) {
  1419. continue;
  1420. }
  1421. int pass=n->get_meta("__editor_pass");
  1422. int h = edit_pass - pass;
  1423. if (h>hist_size) {
  1424. continue;
  1425. }
  1426. int non_zero_hist_size = ( hist_size == 0 ) ? 1 : hist_size;
  1427. float v = Math::ease((edit_pass-pass)/float(non_zero_hist_size),0.4);
  1428. script_list->set_item_custom_bg_color(i,hot_color.linear_interpolate(cold_color,v));
  1429. }
  1430. }
  1431. void ScriptEditor::_update_script_names() {
  1432. waiting_update_names=false;
  1433. Set<Ref<Script> > used;
  1434. Node* edited = EditorNode::get_singleton()->get_edited_scene();
  1435. if (edited) {
  1436. _find_scripts(edited,edited,used);
  1437. }
  1438. script_list->clear();
  1439. bool split_script_help = EditorSettings::get_singleton()->get("text_editor/group_help_pages");
  1440. Vector<_ScriptEditorItemData> sedata;
  1441. for(int i=0;i<tab_container->get_child_count();i++) {
  1442. ScriptTextEditor *ste = tab_container->get_child(i)->cast_to<ScriptTextEditor>();
  1443. if (ste) {
  1444. String name = ste->get_name();
  1445. Ref<Texture> icon = ste->get_icon();
  1446. String tooltip = ste->get_edited_script()->get_path();
  1447. _ScriptEditorItemData sd;
  1448. sd.icon=icon;
  1449. sd.name=name;
  1450. sd.tooltip=tooltip;
  1451. sd.index=i;
  1452. sd.used=used.has(ste->get_edited_script());
  1453. sd.category=0;
  1454. sedata.push_back(sd);
  1455. }
  1456. EditorHelp *eh = tab_container->get_child(i)->cast_to<EditorHelp>();
  1457. if (eh) {
  1458. String name = eh->get_class_name();
  1459. Ref<Texture> icon = get_icon("Help","EditorIcons");
  1460. String tooltip = name+" Class Reference";
  1461. _ScriptEditorItemData sd;
  1462. sd.icon=icon;
  1463. sd.name=name;
  1464. sd.tooltip=tooltip;
  1465. sd.index=i;
  1466. sd.used=false;
  1467. sd.category=split_script_help?1:0;
  1468. sedata.push_back(sd);
  1469. }
  1470. }
  1471. sedata.sort();
  1472. for(int i=0;i<sedata.size();i++) {
  1473. script_list->add_item(sedata[i].name,sedata[i].icon);
  1474. int index = script_list->get_item_count()-1;
  1475. script_list->set_item_tooltip(index,sedata[i].tooltip);
  1476. script_list->set_item_metadata(index,sedata[i].index);
  1477. if (sedata[i].used) {
  1478. script_list->set_item_custom_bg_color(index,Color(88/255.0,88/255.0,60/255.0));
  1479. }
  1480. if (tab_container->get_current_tab()==sedata[i].index) {
  1481. script_list->select(index);
  1482. script_name_label->set_text(sedata[i].name);
  1483. script_icon->set_texture(sedata[i].icon);
  1484. }
  1485. }
  1486. _update_script_colors();
  1487. }
  1488. void ScriptEditor::edit(const Ref<Script>& p_script) {
  1489. if (p_script.is_null())
  1490. return;
  1491. // see if already has it
  1492. bool open_dominant = EditorSettings::get_singleton()->get("text_editor/open_dominant_script_on_scene_change");
  1493. if (p_script->get_path().is_resource_file() && bool(EditorSettings::get_singleton()->get("external_editor/use_external_editor"))) {
  1494. String path = EditorSettings::get_singleton()->get("external_editor/exec_path");
  1495. String flags = EditorSettings::get_singleton()->get("external_editor/exec_flags");
  1496. List<String> args;
  1497. flags=flags.strip_edges();
  1498. if (flags!=String()) {
  1499. Vector<String> flagss = flags.split(" ",false);
  1500. for(int i=0;i<flagss.size();i++)
  1501. args.push_back(flagss[i]);
  1502. }
  1503. args.push_back(Globals::get_singleton()->globalize_path(p_script->get_path()));
  1504. Error err = OS::get_singleton()->execute(path,args,false);
  1505. if (err==OK)
  1506. return;
  1507. WARN_PRINT("Couldn't open external text editor, using internal");
  1508. }
  1509. for(int i=0;i<tab_container->get_child_count();i++) {
  1510. ScriptTextEditor *ste = tab_container->get_child(i)->cast_to<ScriptTextEditor>();
  1511. if (!ste)
  1512. continue;
  1513. if (ste->get_edited_script()==p_script) {
  1514. if (open_dominant || !EditorNode::get_singleton()->is_changing_scene()) {
  1515. if (tab_container->get_current_tab()!=i) {
  1516. _go_to_tab(i);
  1517. script_list->select( script_list->find_metadata(i) );
  1518. }
  1519. if (is_visible())
  1520. ste->get_text_edit()->grab_focus();
  1521. }
  1522. return;
  1523. }
  1524. }
  1525. // doesn't have it, make a new one
  1526. ScriptTextEditor *ste = memnew( ScriptTextEditor );
  1527. ste->set_edited_script(p_script);
  1528. ste->get_text_edit()->set_tooltip_request_func(this,"_get_debug_tooltip",ste);
  1529. ste->get_text_edit()->set_scroll_pass_end_of_file(EditorSettings::get_singleton()->get("text_editor/scroll_past_end_of_file"));
  1530. ste->get_text_edit()->set_auto_brace_completion(EditorSettings::get_singleton()->get("text_editor/auto_brace_complete"));
  1531. ste->get_text_edit()->set_tab_size(EditorSettings::get_singleton()->get("text_editor/tab_size"));
  1532. ste->get_text_edit()->set_draw_tabs(EditorSettings::get_singleton()->get("text_editor/draw_tabs"));
  1533. ste->get_text_edit()->set_show_line_numbers(EditorSettings::get_singleton()->get("text_editor/show_line_numbers"));
  1534. ste->get_text_edit()->set_syntax_coloring(EditorSettings::get_singleton()->get("text_editor/syntax_highlighting"));
  1535. ste->get_text_edit()->set_highlight_all_occurrences(EditorSettings::get_singleton()->get("text_editor/highlight_all_occurrences"));
  1536. ste->get_text_edit()->cursor_set_blink_enabled(EditorSettings::get_singleton()->get("text_editor/caret_blink"));
  1537. ste->get_text_edit()->cursor_set_blink_speed(EditorSettings::get_singleton()->get("text_editor/caret_blink_speed"));
  1538. ste->get_text_edit()->set_draw_breakpoint_gutter(EditorSettings::get_singleton()->get("text_editor/show_breakpoint_gutter"));
  1539. ste->get_text_edit()->set_callhint_settings(
  1540. EditorSettings::get_singleton()->get("text_editor/put_callhint_tooltip_below_current_line"),
  1541. EditorSettings::get_singleton()->get("text_editor/callhint_tooltip_offset"));
  1542. tab_container->add_child(ste);
  1543. _go_to_tab(tab_container->get_tab_count()-1);
  1544. _update_script_names();
  1545. ste->connect("name_changed",this,"_update_script_names");
  1546. if (!restoring_layout) {
  1547. EditorNode::get_singleton()->save_layout();
  1548. }
  1549. //test for modification, maybe the script was not edited but was loaded
  1550. _test_script_times_on_disk(p_script);
  1551. _update_modified_scripts_for_external_editor(p_script);
  1552. }
  1553. void ScriptEditor::save_all_scripts() {
  1554. for(int i=0;i<tab_container->get_child_count();i++) {
  1555. ScriptTextEditor *ste = tab_container->get_child(i)->cast_to<ScriptTextEditor>();
  1556. if (!ste)
  1557. continue;
  1558. if (trim_trailing_whitespace_on_save) {
  1559. _trim_trailing_whitespace(ste->get_text_edit());
  1560. }
  1561. if (ste->get_text_edit()->get_version()==ste->get_text_edit()->get_saved_version())
  1562. continue;
  1563. Ref<Script> script = ste->get_edited_script();
  1564. if (script.is_valid())
  1565. ste->apply_code();
  1566. if (script->get_path()!="" && script->get_path().find("local://")==-1 &&script->get_path().find("::")==-1) {
  1567. //external script, save it
  1568. editor->save_resource(script);
  1569. //ResourceSaver::save(script->get_path(),script);
  1570. }
  1571. }
  1572. }
  1573. void ScriptEditor::apply_scripts() const {
  1574. for(int i=0;i<tab_container->get_child_count();i++) {
  1575. ScriptTextEditor *ste = tab_container->get_child(i)->cast_to<ScriptTextEditor>();
  1576. if (!ste)
  1577. continue;
  1578. ste->apply_code();
  1579. }
  1580. }
  1581. void ScriptEditor::_editor_play() {
  1582. debugger->start();
  1583. debug_menu->get_popup()->set_item_disabled( debug_menu->get_popup()->get_item_index(DEBUG_NEXT), true );
  1584. debug_menu->get_popup()->set_item_disabled( debug_menu->get_popup()->get_item_index(DEBUG_STEP), true );
  1585. debug_menu->get_popup()->set_item_disabled( debug_menu->get_popup()->get_item_index(DEBUG_BREAK), false );
  1586. debug_menu->get_popup()->set_item_disabled( debug_menu->get_popup()->get_item_index(DEBUG_CONTINUE), true );
  1587. //debugger_gui->start_listening(Globals::get_singleton()->get("debug/debug_port"));
  1588. }
  1589. void ScriptEditor::_editor_pause() {
  1590. }
  1591. void ScriptEditor::_editor_stop() {
  1592. debugger->stop();
  1593. debug_menu->get_popup()->set_item_disabled( debug_menu->get_popup()->get_item_index(DEBUG_NEXT), true );
  1594. debug_menu->get_popup()->set_item_disabled( debug_menu->get_popup()->get_item_index(DEBUG_STEP), true );
  1595. debug_menu->get_popup()->set_item_disabled( debug_menu->get_popup()->get_item_index(DEBUG_BREAK), true );
  1596. debug_menu->get_popup()->set_item_disabled( debug_menu->get_popup()->get_item_index(DEBUG_CONTINUE), true );
  1597. }
  1598. void ScriptEditor::_add_callback(Object *p_obj, const String& p_function, const StringArray& p_args) {
  1599. //print_line("add callback! hohoho"); kinda sad to remove this
  1600. ERR_FAIL_COND(!p_obj);
  1601. Ref<Script> script = p_obj->get_script();
  1602. ERR_FAIL_COND( !script.is_valid() );
  1603. editor->push_item(script.ptr());
  1604. for(int i=0;i<tab_container->get_child_count();i++) {
  1605. ScriptTextEditor *ste = tab_container->get_child(i)->cast_to<ScriptTextEditor>();
  1606. if (!ste)
  1607. continue;
  1608. if (ste->get_edited_script()!=script)
  1609. continue;
  1610. String code = ste->get_text_edit()->get_text();
  1611. int pos = script->get_language()->find_function(p_function,code);
  1612. if (pos==-1) {
  1613. //does not exist
  1614. ste->get_text_edit()->deselect();
  1615. pos=ste->get_text_edit()->get_line_count()+2;
  1616. String func = script->get_language()->make_function("",p_function,p_args);
  1617. //code=code+func;
  1618. ste->get_text_edit()->cursor_set_line(pos+1);
  1619. ste->get_text_edit()->cursor_set_column(1000000); //none shall be that big
  1620. ste->get_text_edit()->insert_text_at_cursor("\n\n"+func);
  1621. }
  1622. _go_to_tab(i);
  1623. ste->get_text_edit()->cursor_set_line(pos);
  1624. ste->get_text_edit()->cursor_set_column(1);
  1625. script_list->select( script_list->find_metadata(i) );
  1626. break;
  1627. }
  1628. }
  1629. void ScriptEditor::_editor_settings_changed() {
  1630. trim_trailing_whitespace_on_save = EditorSettings::get_singleton()->get("text_editor/trim_trailing_whitespace_on_save");
  1631. float autosave_time = EditorSettings::get_singleton()->get("text_editor/autosave_interval_secs");
  1632. if (autosave_time>0) {
  1633. autosave_timer->set_wait_time(autosave_time);
  1634. autosave_timer->start();
  1635. } else {
  1636. autosave_timer->stop();
  1637. }
  1638. if (current_theme == "") {
  1639. current_theme = EditorSettings::get_singleton()->get("text_editor/color_theme");
  1640. } else if (current_theme != EditorSettings::get_singleton()->get("text_editor/color_theme")) {
  1641. current_theme = EditorSettings::get_singleton()->get("text_editor/color_theme");
  1642. EditorSettings::get_singleton()->load_text_editor_theme();
  1643. }
  1644. for(int i=0;i<tab_container->get_child_count();i++) {
  1645. ScriptTextEditor *ste = tab_container->get_child(i)->cast_to<ScriptTextEditor>();
  1646. if (!ste)
  1647. continue;
  1648. ste->get_text_edit()->set_auto_brace_completion(EditorSettings::get_singleton()->get("text_editor/auto_brace_complete"));
  1649. ste->get_text_edit()->set_scroll_pass_end_of_file(EditorSettings::get_singleton()->get("text_editor/scroll_past_end_of_file"));
  1650. ste->get_text_edit()->set_tab_size(EditorSettings::get_singleton()->get("text_editor/tab_size"));
  1651. ste->get_text_edit()->set_draw_tabs(EditorSettings::get_singleton()->get("text_editor/draw_tabs"));
  1652. ste->get_text_edit()->set_show_line_numbers(EditorSettings::get_singleton()->get("text_editor/show_line_numbers"));
  1653. ste->get_text_edit()->set_syntax_coloring(EditorSettings::get_singleton()->get("text_editor/syntax_highlighting"));
  1654. ste->get_text_edit()->set_highlight_all_occurrences(EditorSettings::get_singleton()->get("text_editor/highlight_all_occurrences"));
  1655. ste->get_text_edit()->cursor_set_blink_enabled(EditorSettings::get_singleton()->get("text_editor/caret_blink"));
  1656. ste->get_text_edit()->cursor_set_blink_speed(EditorSettings::get_singleton()->get("text_editor/caret_blink_speed"));
  1657. ste->get_text_edit()->set_draw_breakpoint_gutter(EditorSettings::get_singleton()->get("text_editor/show_breakpoint_gutter"));
  1658. }
  1659. ScriptServer::set_reload_scripts_on_save(EDITOR_DEF("text_editor/auto_reload_and_parse_scripts_on_save",true));
  1660. }
  1661. void ScriptEditor::_autosave_scripts() {
  1662. save_all_scripts();
  1663. }
  1664. void ScriptEditor::_tree_changed() {
  1665. if (waiting_update_names)
  1666. return;
  1667. waiting_update_names=true;
  1668. call_deferred("_update_script_names");
  1669. }
  1670. void ScriptEditor::_script_split_dragged(float) {
  1671. EditorNode::get_singleton()->save_layout();
  1672. }
  1673. void ScriptEditor::set_window_layout(Ref<ConfigFile> p_layout) {
  1674. if (!bool(EDITOR_DEF("text_editor/restore_scripts_on_load",true))) {
  1675. return;
  1676. }
  1677. if (!p_layout->has_section_key("ScriptEditor","open_scripts") && !p_layout->has_section_key("ScriptEditor","open_help"))
  1678. return;
  1679. Array scripts = p_layout->get_value("ScriptEditor","open_scripts");
  1680. Array helps;
  1681. if (p_layout->has_section_key("ScriptEditor","open_help"))
  1682. helps=p_layout->get_value("ScriptEditor","open_help");
  1683. restoring_layout=true;
  1684. for(int i=0;i<scripts.size();i++) {
  1685. String path = scripts[i];
  1686. Ref<Script> scr = ResourceLoader::load(path);
  1687. if (scr.is_valid()) {
  1688. edit(scr);
  1689. }
  1690. }
  1691. for(int i=0;i<helps.size();i++) {
  1692. String path = helps[i];
  1693. _help_class_open(path);
  1694. }
  1695. for(int i=0;i<tab_container->get_child_count();i++) {
  1696. tab_container->get_child(i)->set_meta("__editor_pass",Variant());
  1697. }
  1698. if (p_layout->has_section_key("ScriptEditor","split_offset")) {
  1699. script_split->set_split_offset(p_layout->get_value("ScriptEditor","split_offset"));
  1700. }
  1701. restoring_layout=false;
  1702. }
  1703. void ScriptEditor::get_window_layout(Ref<ConfigFile> p_layout) {
  1704. Array scripts;
  1705. Array helps;
  1706. for(int i=0;i<tab_container->get_child_count();i++) {
  1707. ScriptTextEditor *ste = tab_container->get_child(i)->cast_to<ScriptTextEditor>();
  1708. if (ste) {
  1709. String path = ste->get_edited_script()->get_path();
  1710. if (!path.is_resource_file())
  1711. continue;
  1712. scripts.push_back(path);
  1713. }
  1714. EditorHelp *eh = tab_container->get_child(i)->cast_to<EditorHelp>();
  1715. if (eh) {
  1716. helps.push_back(eh->get_class_name());
  1717. }
  1718. }
  1719. p_layout->set_value("ScriptEditor","open_scripts",scripts);
  1720. p_layout->set_value("ScriptEditor","open_help",helps);
  1721. p_layout->set_value("ScriptEditor","split_offset",script_split->get_split_offset());
  1722. }
  1723. void ScriptEditor::_help_class_open(const String& p_class) {
  1724. for(int i=0;i<tab_container->get_child_count();i++) {
  1725. EditorHelp *eh = tab_container->get_child(i)->cast_to<EditorHelp>();
  1726. if (eh && eh->get_class_name()==p_class) {
  1727. _go_to_tab(i);
  1728. _update_script_names();
  1729. return;
  1730. }
  1731. }
  1732. EditorHelp * eh = memnew( EditorHelp );
  1733. eh->set_name(p_class);
  1734. tab_container->add_child(eh);
  1735. _go_to_tab(tab_container->get_tab_count()-1);
  1736. eh->go_to_class(p_class,0);
  1737. eh->connect("go_to_help",this,"_help_class_goto");
  1738. _update_script_names();
  1739. }
  1740. void ScriptEditor::_help_class_goto(const String& p_desc) {
  1741. String cname=p_desc.get_slice(":",1);
  1742. for(int i=0;i<tab_container->get_child_count();i++) {
  1743. EditorHelp *eh = tab_container->get_child(i)->cast_to<EditorHelp>();
  1744. if (eh && eh->get_class_name()==cname) {
  1745. _go_to_tab(i);
  1746. eh->go_to_help(p_desc);
  1747. _update_script_names();
  1748. return;
  1749. }
  1750. }
  1751. EditorHelp * eh = memnew( EditorHelp );
  1752. eh->set_name(cname);
  1753. tab_container->add_child(eh);
  1754. _go_to_tab(tab_container->get_tab_count()-1);
  1755. eh->go_to_help(p_desc);
  1756. eh->connect("go_to_help",this,"_help_class_goto");
  1757. _update_script_names();
  1758. }
  1759. void ScriptEditor::_update_history_pos(int p_new_pos) {
  1760. Node *n = tab_container->get_current_tab_control();
  1761. if (n->cast_to<ScriptTextEditor>()) {
  1762. history[history_pos].scroll_pos=n->cast_to<ScriptTextEditor>()->get_text_edit()->get_v_scroll();
  1763. history[history_pos].cursor_column=n->cast_to<ScriptTextEditor>()->get_text_edit()->cursor_get_column();
  1764. history[history_pos].cursor_row=n->cast_to<ScriptTextEditor>()->get_text_edit()->cursor_get_line();
  1765. }
  1766. if (n->cast_to<EditorHelp>()) {
  1767. history[history_pos].scroll_pos=n->cast_to<EditorHelp>()->get_scroll();
  1768. }
  1769. history_pos=p_new_pos;
  1770. tab_container->set_current_tab(history[history_pos].control->get_index());
  1771. n = history[history_pos].control;
  1772. if (n->cast_to<ScriptTextEditor>()) {
  1773. n->cast_to<ScriptTextEditor>()->get_text_edit()->set_v_scroll(history[history_pos].scroll_pos);
  1774. n->cast_to<ScriptTextEditor>()->get_text_edit()->cursor_set_column( history[history_pos].cursor_column );
  1775. n->cast_to<ScriptTextEditor>()->get_text_edit()->cursor_set_line( history[history_pos].cursor_row );
  1776. n->cast_to<ScriptTextEditor>()->get_text_edit()->grab_focus();
  1777. }
  1778. if (n->cast_to<EditorHelp>()) {
  1779. n->cast_to<EditorHelp>()->set_scroll(history[history_pos].scroll_pos);
  1780. n->cast_to<EditorHelp>()->set_focused();
  1781. }
  1782. n->set_meta("__editor_pass",++edit_pass);
  1783. _update_script_names();
  1784. _update_history_arrows();
  1785. }
  1786. void ScriptEditor::_history_forward() {
  1787. if (history_pos<history.size()-1) {
  1788. _update_history_pos(history_pos+1);
  1789. }
  1790. }
  1791. void ScriptEditor::_history_back(){
  1792. if (history_pos>0) {
  1793. _update_history_pos(history_pos-1);
  1794. }
  1795. }
  1796. void ScriptEditor::set_scene_root_script( Ref<Script> p_script ) {
  1797. bool open_dominant = EditorSettings::get_singleton()->get("text_editor/open_dominant_script_on_scene_change");
  1798. if (bool(EditorSettings::get_singleton()->get("external_editor/use_external_editor")))
  1799. return;
  1800. if (open_dominant && p_script.is_valid()) {
  1801. edit(p_script);
  1802. }
  1803. }
  1804. bool ScriptEditor::script_go_to_method(Ref<Script> p_script, const String& p_method) {
  1805. Vector<String> functions;
  1806. bool found=false;
  1807. for (int i=0;i<tab_container->get_child_count();i++) {
  1808. ScriptTextEditor *current = tab_container->get_child(i)->cast_to<ScriptTextEditor>();
  1809. if (current && current->get_edited_script()==p_script) {
  1810. functions=current->get_functions();
  1811. found=true;
  1812. break;
  1813. }
  1814. }
  1815. if (!found) {
  1816. String errortxt;
  1817. int line=-1,col;
  1818. String text=p_script->get_source_code();
  1819. List<String> fnc;
  1820. if (p_script->get_language()->validate(text,line,col,errortxt,p_script->get_path(),&fnc)) {
  1821. for (List<String>::Element *E=fnc.front();E;E=E->next())
  1822. functions.push_back(E->get());
  1823. }
  1824. }
  1825. String method_search = p_method + ":";
  1826. for (int i=0;i<functions.size();i++) {
  1827. String function=functions[i];
  1828. if (function.begins_with(method_search)) {
  1829. edit(p_script);
  1830. int line=function.get_slice(":",1).to_int();
  1831. _goto_script_line2(line-1);
  1832. return true;
  1833. }
  1834. }
  1835. return false;
  1836. }
  1837. void ScriptEditor::set_live_auto_reload_running_scripts(bool p_enabled) {
  1838. auto_reload_running_scripts=p_enabled;
  1839. }
  1840. void ScriptEditor::_bind_methods() {
  1841. ObjectTypeDB::bind_method("_file_dialog_action",&ScriptEditor::_file_dialog_action);
  1842. ObjectTypeDB::bind_method("_tab_changed",&ScriptEditor::_tab_changed);
  1843. ObjectTypeDB::bind_method("_menu_option",&ScriptEditor::_menu_option);
  1844. ObjectTypeDB::bind_method("_close_current_tab",&ScriptEditor::_close_current_tab);
  1845. ObjectTypeDB::bind_method("_editor_play",&ScriptEditor::_editor_play);
  1846. ObjectTypeDB::bind_method("_editor_pause",&ScriptEditor::_editor_pause);
  1847. ObjectTypeDB::bind_method("_editor_stop",&ScriptEditor::_editor_stop);
  1848. ObjectTypeDB::bind_method("_add_callback",&ScriptEditor::_add_callback);
  1849. ObjectTypeDB::bind_method("_reload_scripts",&ScriptEditor::_reload_scripts);
  1850. ObjectTypeDB::bind_method("_resave_scripts",&ScriptEditor::_resave_scripts);
  1851. ObjectTypeDB::bind_method("_res_saved_callback",&ScriptEditor::_res_saved_callback);
  1852. ObjectTypeDB::bind_method("_goto_script_line",&ScriptEditor::_goto_script_line);
  1853. ObjectTypeDB::bind_method("_goto_script_line2",&ScriptEditor::_goto_script_line2);
  1854. ObjectTypeDB::bind_method("_breaked",&ScriptEditor::_breaked);
  1855. ObjectTypeDB::bind_method("_show_debugger",&ScriptEditor::_show_debugger);
  1856. ObjectTypeDB::bind_method("_get_debug_tooltip",&ScriptEditor::_get_debug_tooltip);
  1857. ObjectTypeDB::bind_method("_autosave_scripts",&ScriptEditor::_autosave_scripts);
  1858. ObjectTypeDB::bind_method("_editor_settings_changed",&ScriptEditor::_editor_settings_changed);
  1859. ObjectTypeDB::bind_method("_update_script_names",&ScriptEditor::_update_script_names);
  1860. ObjectTypeDB::bind_method("_tree_changed",&ScriptEditor::_tree_changed);
  1861. ObjectTypeDB::bind_method("_script_selected",&ScriptEditor::_script_selected);
  1862. ObjectTypeDB::bind_method("_script_created",&ScriptEditor::_script_created);
  1863. ObjectTypeDB::bind_method("_script_split_dragged",&ScriptEditor::_script_split_dragged);
  1864. ObjectTypeDB::bind_method("_help_class_open",&ScriptEditor::_help_class_open);
  1865. ObjectTypeDB::bind_method("_help_class_goto",&ScriptEditor::_help_class_goto);
  1866. ObjectTypeDB::bind_method("_request_help",&ScriptEditor::_help_class_open);
  1867. ObjectTypeDB::bind_method("_history_forward",&ScriptEditor::_history_forward);
  1868. ObjectTypeDB::bind_method("_history_back",&ScriptEditor::_history_back);
  1869. ObjectTypeDB::bind_method("_live_auto_reload_running_scripts",&ScriptEditor::_live_auto_reload_running_scripts);
  1870. }
  1871. ScriptEditor::ScriptEditor(EditorNode *p_editor) {
  1872. current_theme = "";
  1873. completion_cache = memnew( EditorScriptCodeCompletionCache );
  1874. restoring_layout=false;
  1875. waiting_update_names=false;
  1876. auto_reload_running_scripts=false;
  1877. editor=p_editor;
  1878. menu_hb = memnew( HBoxContainer );
  1879. add_child(menu_hb);
  1880. script_split = memnew( HSplitContainer );
  1881. add_child(script_split);
  1882. script_split->set_v_size_flags(SIZE_EXPAND_FILL);
  1883. script_list = memnew( ItemList );
  1884. script_split->add_child(script_list);
  1885. script_list->set_custom_minimum_size(Size2(0,0));
  1886. script_split->set_split_offset(140);
  1887. tab_container = memnew( TabContainer );
  1888. tab_container->set_tabs_visible(false);
  1889. script_split->add_child(tab_container);
  1890. tab_container->set_h_size_flags(SIZE_EXPAND_FILL);
  1891. file_menu = memnew( MenuButton );
  1892. menu_hb->add_child(file_menu);
  1893. file_menu->set_text(TTR("File"));
  1894. file_menu->get_popup()->add_shortcut(ED_SHORTCUT("script_editor/new", TTR("New")), FILE_NEW);
  1895. file_menu->get_popup()->add_shortcut(ED_SHORTCUT("script_editor/open", TTR("Open")), FILE_OPEN);
  1896. file_menu->get_popup()->add_separator();
  1897. file_menu->get_popup()->add_shortcut(ED_SHORTCUT("script_editor/save", TTR("Save"), KEY_MASK_ALT|KEY_MASK_CMD|KEY_S), FILE_SAVE);
  1898. file_menu->get_popup()->add_shortcut(ED_SHORTCUT("script_editor/save_as", TTR("Save As..")), FILE_SAVE_AS);
  1899. 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);
  1900. file_menu->get_popup()->add_separator();
  1901. file_menu->get_popup()->add_shortcut(ED_SHORTCUT("script_editor/history_previous", TTR("History Prev"), KEY_MASK_CTRL|KEY_MASK_ALT|KEY_LEFT), WINDOW_PREV);
  1902. file_menu->get_popup()->add_shortcut(ED_SHORTCUT("script_editor/history_next", TTR("History Next"), KEY_MASK_CTRL|KEY_MASK_ALT|KEY_RIGHT), WINDOW_NEXT);
  1903. file_menu->get_popup()->add_separator();
  1904. file_menu->get_popup()->add_shortcut(ED_SHORTCUT("script_editor/import_theme", TTR("Import Theme")), FILE_IMPORT_THEME);
  1905. file_menu->get_popup()->add_shortcut(ED_SHORTCUT("script_editor/reload_theme", TTR("Reload Theme")), FILE_RELOAD_THEME);
  1906. file_menu->get_popup()->add_shortcut(ED_SHORTCUT("script_editor/save_theme", TTR("Save Theme")), FILE_SAVE_THEME);
  1907. file_menu->get_popup()->add_shortcut(ED_SHORTCUT("script_editor/save_theme_as", TTR("Save Theme As")), FILE_SAVE_THEME_AS);
  1908. file_menu->get_popup()->add_separator();
  1909. file_menu->get_popup()->add_shortcut(ED_SHORTCUT("script_editor/close_file", TTR("Close"), KEY_MASK_CMD|KEY_W), FILE_CLOSE);
  1910. file_menu->get_popup()->connect("item_pressed", this,"_menu_option");
  1911. edit_menu = memnew( MenuButton );
  1912. menu_hb->add_child(edit_menu);
  1913. edit_menu->set_text(TTR("Edit"));
  1914. edit_menu->get_popup()->add_shortcut(ED_SHORTCUT("script_editor/undo", TTR("Undo"), KEY_MASK_CMD|KEY_Z), EDIT_UNDO);
  1915. edit_menu->get_popup()->add_shortcut(ED_SHORTCUT("script_editor/redo", TTR("Redo"), KEY_MASK_CMD|KEY_Y), EDIT_REDO);
  1916. edit_menu->get_popup()->add_separator();
  1917. edit_menu->get_popup()->add_shortcut(ED_SHORTCUT("script_editor/cut", TTR("Cut"), KEY_MASK_CMD|KEY_X), EDIT_CUT);
  1918. edit_menu->get_popup()->add_shortcut(ED_SHORTCUT("script_editor/copy", TTR("Copy"), KEY_MASK_CMD|KEY_C), EDIT_COPY);
  1919. edit_menu->get_popup()->add_shortcut(ED_SHORTCUT("script_editor/paste", TTR("Paste"), KEY_MASK_CMD|KEY_V), EDIT_PASTE);
  1920. edit_menu->get_popup()->add_separator();
  1921. edit_menu->get_popup()->add_shortcut(ED_SHORTCUT("script_editor/select_all", TTR("Select All"), KEY_MASK_CMD|KEY_A), EDIT_SELECT_ALL);
  1922. edit_menu->get_popup()->add_separator();
  1923. edit_menu->get_popup()->add_shortcut(ED_SHORTCUT("script_editor/move_up", TTR("Move Up"), KEY_MASK_ALT|KEY_UP), EDIT_MOVE_LINE_UP);
  1924. edit_menu->get_popup()->add_shortcut(ED_SHORTCUT("script_editor/move_down", TTR("Move Down"), KEY_MASK_ALT|KEY_DOWN), EDIT_MOVE_LINE_DOWN);
  1925. edit_menu->get_popup()->add_shortcut(ED_SHORTCUT("script_editor/indent_left", TTR("Indent Left"), KEY_MASK_ALT|KEY_LEFT), EDIT_INDENT_LEFT);
  1926. edit_menu->get_popup()->add_shortcut(ED_SHORTCUT("script_editor/indent_right", TTR("Indent Right"), KEY_MASK_ALT|KEY_RIGHT), EDIT_INDENT_RIGHT);
  1927. edit_menu->get_popup()->add_shortcut(ED_SHORTCUT("script_editor/toggle_comment", TTR("Toggle Comment"), KEY_MASK_CMD|KEY_K), EDIT_TOGGLE_COMMENT);
  1928. edit_menu->get_popup()->add_shortcut(ED_SHORTCUT("script_editor/clone_down", TTR("Clone Down"), KEY_MASK_CMD|KEY_B), EDIT_CLONE_DOWN);
  1929. edit_menu->get_popup()->add_separator();
  1930. #ifdef OSX_ENABLED
  1931. edit_menu->get_popup()->add_shortcut(ED_SHORTCUT("script_editor/complete_symbol", TTR("Complete Symbol"), KEY_MASK_CTRL|KEY_SPACE), EDIT_COMPLETE);
  1932. #else
  1933. edit_menu->get_popup()->add_shortcut(ED_SHORTCUT("script_editor/complete_symbol", TTR("Complete Symbol"), KEY_MASK_CMD|KEY_SPACE), EDIT_COMPLETE);
  1934. #endif
  1935. edit_menu->get_popup()->add_shortcut(ED_SHORTCUT("script_editor/trim_trailing_whitespace", TTR("Trim Trailing Whitespace"), KEY_MASK_CTRL|KEY_MASK_ALT|KEY_T), EDIT_TRIM_TRAILING_WHITESAPCE);
  1936. edit_menu->get_popup()->add_shortcut(ED_SHORTCUT("script_editor/auto_indent", TTR("Auto Indent"), KEY_MASK_CMD|KEY_I), EDIT_AUTO_INDENT);
  1937. edit_menu->get_popup()->connect("item_pressed", this,"_menu_option");
  1938. edit_menu->get_popup()->add_separator();
  1939. edit_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);
  1940. search_menu = memnew( MenuButton );
  1941. menu_hb->add_child(search_menu);
  1942. search_menu->set_text(TTR("Search"));
  1943. search_menu->get_popup()->add_shortcut(ED_SHORTCUT("script_editor/find", TTR("Find.."), KEY_MASK_CMD|KEY_F), SEARCH_FIND);
  1944. search_menu->get_popup()->add_shortcut(ED_SHORTCUT("script_editor/find_next", TTR("Find Next"), KEY_F3), SEARCH_FIND_NEXT);
  1945. search_menu->get_popup()->add_shortcut(ED_SHORTCUT("script_editor/find_previous", TTR("Find Previous"), KEY_MASK_SHIFT|KEY_F3), SEARCH_FIND_PREV);
  1946. search_menu->get_popup()->add_shortcut(ED_SHORTCUT("script_editor/replace", TTR("Replace.."), KEY_MASK_CMD|KEY_R), SEARCH_REPLACE);
  1947. search_menu->get_popup()->add_separator();
  1948. search_menu->get_popup()->add_shortcut(ED_SHORTCUT("script_editor/goto_function", TTR("Goto Function.."), KEY_MASK_SHIFT|KEY_MASK_CMD|KEY_F), SEARCH_LOCATE_FUNCTION);
  1949. search_menu->get_popup()->add_shortcut(ED_SHORTCUT("script_editor/goto_line", TTR("Goto Line.."), KEY_MASK_CMD|KEY_L), SEARCH_GOTO_LINE);
  1950. search_menu->get_popup()->connect("item_pressed", this,"_menu_option");
  1951. script_search_menu = memnew( MenuButton );
  1952. menu_hb->add_child(script_search_menu);
  1953. script_search_menu->set_text(TTR("Search"));
  1954. script_search_menu->get_popup()->add_shortcut(ED_SHORTCUT("script_editor/find", TTR("Find.."), KEY_MASK_CMD|KEY_F), SEARCH_FIND);
  1955. script_search_menu->get_popup()->add_shortcut(ED_SHORTCUT("script_editor/find_next", TTR("Find Next"), KEY_F3), SEARCH_FIND_NEXT);
  1956. script_search_menu->get_popup()->connect("item_pressed", this,"_menu_option");
  1957. script_search_menu->hide();
  1958. debug_menu = memnew( MenuButton );
  1959. menu_hb->add_child(debug_menu);
  1960. debug_menu->set_text(TTR("Debug"));
  1961. debug_menu->get_popup()->add_shortcut(ED_SHORTCUT("script_editor/toggle_breakpoint", TTR("Toggle Breakpoint"), KEY_F9), DEBUG_TOGGLE_BREAKPOINT);
  1962. debug_menu->get_popup()->add_shortcut(ED_SHORTCUT("script_editor/remove_all_breakpoints", TTR("Remove All Breakpoints"), KEY_MASK_CTRL|KEY_MASK_SHIFT|KEY_F9), DEBUG_REMOVE_ALL_BREAKPOINTS);
  1963. debug_menu->get_popup()->add_shortcut(ED_SHORTCUT("script_editor/goto_next_breakpoint", TTR("Goto Next Breakpoint"), KEY_MASK_CTRL|KEY_PERIOD), DEBUG_GOTO_NEXT_BREAKPOINT);
  1964. debug_menu->get_popup()->add_shortcut(ED_SHORTCUT("script_editor/goto_previous_breakpoint", TTR("Goto Previous Breakpoint"), KEY_MASK_CTRL|KEY_COMMA), DEBUG_GOTO_PREV_BREAKPOINT);
  1965. debug_menu->get_popup()->add_separator();
  1966. debug_menu->get_popup()->add_shortcut(ED_SHORTCUT("debugger/step_over", TTR("Step Over"), KEY_F10), DEBUG_NEXT);
  1967. debug_menu->get_popup()->add_shortcut(ED_SHORTCUT("debugger/step_into", TTR("Step Into"), KEY_F11), DEBUG_STEP);
  1968. debug_menu->get_popup()->add_separator();
  1969. debug_menu->get_popup()->add_shortcut(ED_SHORTCUT("debugger/break", TTR("Break")), DEBUG_BREAK);
  1970. debug_menu->get_popup()->add_shortcut(ED_SHORTCUT("debugger/continue", TTR("Continue")), DEBUG_CONTINUE);
  1971. debug_menu->get_popup()->add_separator();
  1972. //debug_menu->get_popup()->add_check_item("Show Debugger",DEBUG_SHOW);
  1973. debug_menu->get_popup()->add_check_shortcut(ED_SHORTCUT("debugger/keep_debugger_open", TTR("Keep Debugger Open")), DEBUG_SHOW_KEEP_OPEN);
  1974. debug_menu->get_popup()->connect("item_pressed", this,"_menu_option");
  1975. debug_menu->get_popup()->set_item_disabled( debug_menu->get_popup()->get_item_index(DEBUG_NEXT), true);
  1976. debug_menu->get_popup()->set_item_disabled( debug_menu->get_popup()->get_item_index(DEBUG_STEP), true );
  1977. debug_menu->get_popup()->set_item_disabled( debug_menu->get_popup()->get_item_index(DEBUG_BREAK), true );
  1978. debug_menu->get_popup()->set_item_disabled( debug_menu->get_popup()->get_item_index(DEBUG_CONTINUE), true );
  1979. #if 0
  1980. window_menu = memnew( MenuButton );
  1981. menu_hb->add_child(window_menu);
  1982. window_menu->set_text(TTR("Window"));
  1983. window_menu->get_popup()->add_item(TTR("Close"),WINDOW_CLOSE,KEY_MASK_CMD|KEY_W);
  1984. window_menu->get_popup()->add_separator();
  1985. window_menu->get_popup()->add_item(TTR("Move Left"),WINDOW_MOVE_LEFT,KEY_MASK_CMD|KEY_LEFT);
  1986. window_menu->get_popup()->add_item(TTR("Move Right"),WINDOW_MOVE_RIGHT,KEY_MASK_CMD|KEY_RIGHT);
  1987. window_menu->get_popup()->add_separator();
  1988. window_menu->get_popup()->connect("item_pressed", this,"_menu_option");
  1989. #endif
  1990. help_menu = memnew( MenuButton );
  1991. menu_hb->add_child(help_menu);
  1992. help_menu->set_text(TTR("Help"));
  1993. help_menu->get_popup()->add_shortcut(ED_SHORTCUT("script_editor/Contextual", TTR("Contextual Help"), KEY_MASK_SHIFT|KEY_F1), HELP_CONTEXTUAL);
  1994. help_menu->get_popup()->connect("item_pressed", this,"_menu_option");
  1995. menu_hb->add_spacer();
  1996. script_icon = memnew( TextureFrame );
  1997. menu_hb->add_child(script_icon);
  1998. script_name_label = memnew( Label );
  1999. menu_hb->add_child(script_name_label);
  2000. script_icon->hide();
  2001. script_name_label->hide();
  2002. menu_hb->add_spacer();
  2003. site_search = memnew( ToolButton );
  2004. site_search->set_text(TTR("Tutorials"));
  2005. site_search->connect("pressed",this,"_menu_option",varray(SEARCH_WEBSITE));
  2006. menu_hb->add_child(site_search);
  2007. site_search->set_tooltip(TTR("Open https://godotengine.org at tutorials section."));
  2008. class_search = memnew( ToolButton );
  2009. class_search->set_text(TTR("Classes"));
  2010. class_search->connect("pressed",this,"_menu_option",varray(SEARCH_CLASSES));
  2011. menu_hb->add_child(class_search);
  2012. class_search->set_tooltip(TTR("Search the class hierarchy."));
  2013. help_search = memnew( ToolButton );
  2014. help_search->set_text(TTR("Search Help"));
  2015. help_search->connect("pressed",this,"_menu_option",varray(SEARCH_HELP));
  2016. menu_hb->add_child(help_search);
  2017. help_search->set_tooltip(TTR("Search the reference documentation."));
  2018. menu_hb->add_child( memnew( VSeparator) );
  2019. script_back = memnew( ToolButton );
  2020. script_back->connect("pressed",this,"_history_back");
  2021. menu_hb->add_child(script_back);
  2022. script_back->set_disabled(true);
  2023. script_back->set_tooltip(TTR("Go to previous edited document."));
  2024. script_forward = memnew( ToolButton );
  2025. script_forward->connect("pressed",this,"_history_forward");
  2026. menu_hb->add_child(script_forward);
  2027. script_forward->set_disabled(true);
  2028. script_forward->set_tooltip(TTR("Go to next edited document."));
  2029. tab_container->connect("tab_changed", this,"_tab_changed");
  2030. erase_tab_confirm = memnew( ConfirmationDialog );
  2031. add_child(erase_tab_confirm);
  2032. erase_tab_confirm->connect("confirmed", this,"_close_current_tab");
  2033. script_create_dialog = memnew(ScriptCreateDialog);
  2034. script_create_dialog->set_title(TTR("Create Script"));
  2035. add_child(script_create_dialog);
  2036. script_create_dialog->connect("script_created", this, "_script_created");
  2037. file_dialog_option = -1;
  2038. file_dialog = memnew( EditorFileDialog );
  2039. add_child(file_dialog);
  2040. file_dialog->connect("file_selected", this,"_file_dialog_action");
  2041. goto_line_dialog = memnew(GotoLineDialog);
  2042. add_child(goto_line_dialog);
  2043. debugger = memnew( ScriptEditorDebugger(editor) );
  2044. debugger->connect("goto_script_line",this,"_goto_script_line");
  2045. debugger->connect("show_debugger",this,"_show_debugger");
  2046. disk_changed = memnew( ConfirmationDialog );
  2047. {
  2048. VBoxContainer *vbc = memnew( VBoxContainer );
  2049. disk_changed->add_child(vbc);
  2050. disk_changed->set_child_rect(vbc);
  2051. Label *dl = memnew( Label );
  2052. dl->set_text(TTR("The following files are newer on disk.\nWhat action should be taken?:"));
  2053. vbc->add_child(dl);
  2054. disk_changed_list = memnew( Tree );
  2055. vbc->add_child(disk_changed_list);
  2056. disk_changed_list->set_v_size_flags(SIZE_EXPAND_FILL);
  2057. disk_changed->connect("confirmed",this,"_reload_scripts");
  2058. disk_changed->get_ok()->set_text(TTR("Reload"));
  2059. disk_changed->add_button(TTR("Resave"),!OS::get_singleton()->get_swap_ok_cancel(),"resave");
  2060. disk_changed->connect("custom_action",this,"_resave_scripts");
  2061. }
  2062. add_child(disk_changed);
  2063. script_editor=this;
  2064. quick_open = memnew( ScriptEditorQuickOpen );
  2065. add_child(quick_open);
  2066. quick_open->connect("goto_line",this,"_goto_script_line2");
  2067. Button *db = EditorNode::get_singleton()->add_bottom_panel_item(TTR("Debugger"),debugger);
  2068. debugger->set_tool_button(db);
  2069. debugger->connect("breaked",this,"_breaked");
  2070. autosave_timer = memnew( Timer );
  2071. autosave_timer->set_one_shot(false);
  2072. add_child(autosave_timer);
  2073. grab_focus_block=false;
  2074. help_search_dialog = memnew( EditorHelpSearch );
  2075. add_child(help_search_dialog);
  2076. help_search_dialog->connect("go_to_help",this,"_help_class_goto");
  2077. help_index = memnew( EditorHelpIndex );
  2078. add_child(help_index);
  2079. help_index->connect("open_class",this,"_help_class_open");
  2080. history_pos=-1;
  2081. // debugger_gui->hide();
  2082. edit_pass=0;
  2083. trim_trailing_whitespace_on_save = false;
  2084. }
  2085. ScriptEditor::~ScriptEditor() {
  2086. memdelete(completion_cache);
  2087. }
  2088. void ScriptEditorPlugin::edit(Object *p_object) {
  2089. if (!p_object->cast_to<Script>())
  2090. return;
  2091. script_editor->edit(p_object->cast_to<Script>());
  2092. }
  2093. bool ScriptEditorPlugin::handles(Object *p_object) const {
  2094. return p_object->is_type("Script");
  2095. }
  2096. void ScriptEditorPlugin::make_visible(bool p_visible) {
  2097. if (p_visible) {
  2098. script_editor->show();
  2099. script_editor->set_process(true);
  2100. script_editor->ensure_select_current();
  2101. } else {
  2102. script_editor->hide();
  2103. script_editor->set_process(false);
  2104. }
  2105. }
  2106. void ScriptEditorPlugin::selected_notify() {
  2107. script_editor->ensure_select_current();
  2108. }
  2109. Dictionary ScriptEditorPlugin::get_state() const {
  2110. return script_editor->get_state();
  2111. }
  2112. void ScriptEditorPlugin::set_state(const Dictionary& p_state) {
  2113. script_editor->set_state(p_state);
  2114. }
  2115. void ScriptEditorPlugin::clear() {
  2116. script_editor->clear();
  2117. }
  2118. void ScriptEditorPlugin::save_external_data() {
  2119. script_editor->save_all_scripts();
  2120. }
  2121. void ScriptEditorPlugin::apply_changes() {
  2122. script_editor->apply_scripts();
  2123. }
  2124. void ScriptEditorPlugin::restore_global_state() {
  2125. }
  2126. void ScriptEditorPlugin::save_global_state() {
  2127. }
  2128. void ScriptEditorPlugin::set_window_layout(Ref<ConfigFile> p_layout) {
  2129. script_editor->set_window_layout(p_layout);
  2130. }
  2131. void ScriptEditorPlugin::get_window_layout(Ref<ConfigFile> p_layout){
  2132. script_editor->get_window_layout(p_layout);
  2133. }
  2134. void ScriptEditorPlugin::get_breakpoints(List<String> *p_breakpoints) {
  2135. return script_editor->get_breakpoints(p_breakpoints);
  2136. }
  2137. void ScriptEditorPlugin::edited_scene_changed() {
  2138. script_editor->edited_scene_changed();
  2139. }
  2140. ScriptEditorPlugin::ScriptEditorPlugin(EditorNode *p_node) {
  2141. editor=p_node;
  2142. script_editor = memnew( ScriptEditor(p_node) );
  2143. editor->get_viewport()->add_child(script_editor);
  2144. script_editor->set_v_size_flags(Control::SIZE_EXPAND_FILL);
  2145. script_editor->hide();
  2146. EDITOR_DEF("text_editor/auto_reload_scripts_on_external_change",true);
  2147. ScriptServer::set_reload_scripts_on_save(EDITOR_DEF("text_editor/auto_reload_and_parse_scripts_on_save",true));
  2148. EDITOR_DEF("text_editor/open_dominant_script_on_scene_change",true);
  2149. EDITOR_DEF("external_editor/use_external_editor",false);
  2150. EDITOR_DEF("external_editor/exec_path","");
  2151. EDITOR_DEF("text_editor/script_temperature_enabled",true);
  2152. EDITOR_DEF("text_editor/script_temperature_history_size",15);
  2153. EDITOR_DEF("text_editor/script_temperature_hot_color",Color(1,0,0,0.3));
  2154. EDITOR_DEF("text_editor/script_temperature_cold_color",Color(0,0,1,0.3));
  2155. EDITOR_DEF("text_editor/group_help_pages",true);
  2156. EditorSettings::get_singleton()->add_property_hint(PropertyInfo(Variant::STRING,"external_editor/exec_path",PROPERTY_HINT_GLOBAL_FILE));
  2157. EDITOR_DEF("external_editor/exec_flags","");
  2158. }
  2159. ScriptEditorPlugin::~ScriptEditorPlugin()
  2160. {
  2161. }