code_edit.cpp 102 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051
  1. /*************************************************************************/
  2. /* code_edit.cpp */
  3. /*************************************************************************/
  4. /* This file is part of: */
  5. /* GODOT ENGINE */
  6. /* https://godotengine.org */
  7. /*************************************************************************/
  8. /* Copyright (c) 2007-2021 Juan Linietsky, Ariel Manzur. */
  9. /* Copyright (c) 2014-2021 Godot Engine contributors (cf. AUTHORS.md). */
  10. /* */
  11. /* Permission is hereby granted, free of charge, to any person obtaining */
  12. /* a copy of this software and associated documentation files (the */
  13. /* "Software"), to deal in the Software without restriction, including */
  14. /* without limitation the rights to use, copy, modify, merge, publish, */
  15. /* distribute, sublicense, and/or sell copies of the Software, and to */
  16. /* permit persons to whom the Software is furnished to do so, subject to */
  17. /* the following conditions: */
  18. /* */
  19. /* The above copyright notice and this permission notice shall be */
  20. /* included in all copies or substantial portions of the Software. */
  21. /* */
  22. /* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, */
  23. /* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF */
  24. /* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.*/
  25. /* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY */
  26. /* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, */
  27. /* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */
  28. /* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
  29. /*************************************************************************/
  30. #include "code_edit.h"
  31. #include "core/os/keyboard.h"
  32. #include "core/string/string_builder.h"
  33. #include "core/string/ustring.h"
  34. static bool _is_whitespace(char32_t c) {
  35. return c == '\t' || c == ' ';
  36. }
  37. static bool _is_char(char32_t c) {
  38. return !is_symbol(c);
  39. }
  40. void CodeEdit::_notification(int p_what) {
  41. switch (p_what) {
  42. case NOTIFICATION_THEME_CHANGED:
  43. case NOTIFICATION_ENTER_TREE: {
  44. style_normal = get_theme_stylebox(SNAME("normal"));
  45. font = get_theme_font(SNAME("font"));
  46. font_size = get_theme_font_size(SNAME("font_size"));
  47. line_spacing = get_theme_constant(SNAME("line_spacing"));
  48. set_gutter_width(main_gutter, get_line_height());
  49. set_gutter_width(line_number_gutter, (line_number_digits + 1) * font->get_char_size('0', 0, font_size).width);
  50. set_gutter_width(fold_gutter, get_line_height() / 1.2);
  51. breakpoint_color = get_theme_color(SNAME("breakpoint_color"));
  52. breakpoint_icon = get_theme_icon(SNAME("breakpoint"));
  53. bookmark_color = get_theme_color(SNAME("bookmark_color"));
  54. bookmark_icon = get_theme_icon(SNAME("bookmark"));
  55. executing_line_color = get_theme_color(SNAME("executing_line_color"));
  56. executing_line_icon = get_theme_icon(SNAME("executing_line"));
  57. line_number_color = get_theme_color(SNAME("line_number_color"));
  58. folding_color = get_theme_color(SNAME("code_folding_color"));
  59. can_fold_icon = get_theme_icon(SNAME("can_fold"));
  60. folded_icon = get_theme_icon(SNAME("folded"));
  61. code_completion_max_width = get_theme_constant(SNAME("completion_max_width"));
  62. code_completion_max_lines = get_theme_constant(SNAME("completion_lines"));
  63. code_completion_scroll_width = get_theme_constant(SNAME("completion_scroll_width"));
  64. code_completion_scroll_color = get_theme_color(SNAME("completion_scroll_color"));
  65. code_completion_background_color = get_theme_color(SNAME("completion_background_color"));
  66. code_completion_selected_color = get_theme_color(SNAME("completion_selected_color"));
  67. code_completion_existing_color = get_theme_color(SNAME("completion_existing_color"));
  68. line_length_guideline_color = get_theme_color(SNAME("line_length_guideline_color"));
  69. } break;
  70. case NOTIFICATION_DRAW: {
  71. RID ci = get_canvas_item();
  72. const Size2 size = get_size();
  73. const bool caret_visible = is_caret_visible();
  74. const bool rtl = is_layout_rtl();
  75. const int row_height = get_line_height();
  76. if (line_length_guideline_columns.size() > 0) {
  77. const int xmargin_beg = style_normal->get_margin(SIDE_LEFT) + get_total_gutter_width();
  78. const int xmargin_end = size.width - style_normal->get_margin(SIDE_RIGHT) - (is_drawing_minimap() ? get_minimap_width() : 0);
  79. const int char_size = (int)font->get_char_size('0', 0, font_size).width;
  80. for (int i = 0; i < line_length_guideline_columns.size(); i++) {
  81. const int xoffset = xmargin_beg + char_size * (int)line_length_guideline_columns[i] - get_h_scroll();
  82. if (xoffset > xmargin_beg && xoffset < xmargin_end) {
  83. Color guideline_color = (i == 0) ? line_length_guideline_color : line_length_guideline_color * Color(1, 1, 1, 0.5);
  84. if (rtl) {
  85. RenderingServer::get_singleton()->canvas_item_add_line(ci, Point2(size.width - xoffset, 0), Point2(size.width - xoffset, size.height), guideline_color);
  86. continue;
  87. }
  88. RenderingServer::get_singleton()->canvas_item_add_line(ci, Point2(xoffset, 0), Point2(xoffset, size.height), guideline_color);
  89. }
  90. }
  91. }
  92. bool code_completion_below = false;
  93. if (caret_visible && code_completion_active && code_completion_options.size() > 0) {
  94. Ref<StyleBox> csb = get_theme_stylebox(SNAME("completion"));
  95. const int code_completion_options_count = code_completion_options.size();
  96. const int lines = MIN(code_completion_options_count, code_completion_max_lines);
  97. const int icon_hsep = get_theme_constant(SNAME("hseparation"), SNAME("ItemList"));
  98. const Size2 icon_area_size(row_height, row_height);
  99. code_completion_rect.size.width = code_completion_longest_line + icon_hsep + icon_area_size.width + 2;
  100. code_completion_rect.size.height = lines * row_height;
  101. const Point2 caret_pos = get_caret_draw_pos();
  102. const int total_height = csb->get_minimum_size().y + code_completion_rect.size.height;
  103. if (caret_pos.y + row_height + total_height > get_size().height) {
  104. code_completion_rect.position.y = (caret_pos.y - total_height - row_height) + line_spacing;
  105. } else {
  106. code_completion_rect.position.y = caret_pos.y + (line_spacing / 2.0f);
  107. code_completion_below = true;
  108. }
  109. const int scroll_width = code_completion_options_count > code_completion_max_lines ? code_completion_scroll_width : 0;
  110. const int code_completion_base_width = font->get_string_size(code_completion_base).width;
  111. if (caret_pos.x - code_completion_base_width + code_completion_rect.size.width + scroll_width > get_size().width) {
  112. code_completion_rect.position.x = get_size().width - code_completion_rect.size.width - scroll_width;
  113. } else {
  114. code_completion_rect.position.x = caret_pos.x - code_completion_base_width;
  115. }
  116. draw_style_box(csb, Rect2(code_completion_rect.position - csb->get_offset(), code_completion_rect.size + csb->get_minimum_size() + Size2(scroll_width, 0)));
  117. if (code_completion_background_color.a > 0.01) {
  118. RenderingServer::get_singleton()->canvas_item_add_rect(ci, Rect2(code_completion_rect.position, code_completion_rect.size + Size2(scroll_width, 0)), code_completion_background_color);
  119. }
  120. code_completion_line_ofs = CLAMP(code_completion_current_selected - lines / 2, 0, code_completion_options_count - lines);
  121. RenderingServer::get_singleton()->canvas_item_add_rect(ci, Rect2(Point2(code_completion_rect.position.x, code_completion_rect.position.y + (code_completion_current_selected - code_completion_line_ofs) * row_height), Size2(code_completion_rect.size.width, row_height)), code_completion_selected_color);
  122. draw_rect(Rect2(code_completion_rect.position + Vector2(icon_area_size.x + icon_hsep, 0), Size2(MIN(code_completion_base_width, code_completion_rect.size.width - (icon_area_size.x + icon_hsep)), code_completion_rect.size.height)), code_completion_existing_color);
  123. for (int i = 0; i < lines; i++) {
  124. int l = code_completion_line_ofs + i;
  125. ERR_CONTINUE(l < 0 || l >= code_completion_options_count);
  126. Ref<TextLine> tl;
  127. tl.instantiate();
  128. tl->add_string(code_completion_options[l].display, font, font_size);
  129. int yofs = (row_height - tl->get_size().y) / 2;
  130. Point2 title_pos(code_completion_rect.position.x, code_completion_rect.position.y + i * row_height + yofs);
  131. /* Draw completion icon if it is valid. */
  132. const Ref<Texture2D> &icon = code_completion_options[l].icon;
  133. Rect2 icon_area(code_completion_rect.position.x, code_completion_rect.position.y + i * row_height, icon_area_size.width, icon_area_size.height);
  134. if (icon.is_valid()) {
  135. Size2 icon_size = icon_area.size * 0.7;
  136. icon->draw_rect(ci, Rect2(icon_area.position + (icon_area.size - icon_size) / 2, icon_size));
  137. }
  138. title_pos.x = icon_area.position.x + icon_area.size.width + icon_hsep;
  139. tl->set_width(code_completion_rect.size.width - (icon_area_size.x + icon_hsep));
  140. if (rtl) {
  141. if (code_completion_options[l].default_value.get_type() == Variant::COLOR) {
  142. draw_rect(Rect2(Point2(code_completion_rect.position.x, icon_area.position.y), icon_area_size), (Color)code_completion_options[l].default_value);
  143. }
  144. tl->set_align(HALIGN_RIGHT);
  145. } else {
  146. if (code_completion_options[l].default_value.get_type() == Variant::COLOR) {
  147. draw_rect(Rect2(Point2(code_completion_rect.position.x + code_completion_rect.size.width - icon_area_size.x, icon_area.position.y), icon_area_size), (Color)code_completion_options[l].default_value);
  148. }
  149. tl->set_align(HALIGN_LEFT);
  150. }
  151. tl->draw(ci, title_pos, code_completion_options[l].font_color);
  152. }
  153. /* Draw a small scroll rectangle to show a position in the options. */
  154. if (scroll_width) {
  155. float r = (float)code_completion_max_lines / code_completion_options_count;
  156. float o = (float)code_completion_line_ofs / code_completion_options_count;
  157. draw_rect(Rect2(code_completion_rect.position.x + code_completion_rect.size.width, code_completion_rect.position.y + o * code_completion_rect.size.y, scroll_width, code_completion_rect.size.y * r), code_completion_scroll_color);
  158. }
  159. }
  160. /* Code hint */
  161. if (caret_visible && code_hint != "" && (!code_completion_active || (code_completion_below != code_hint_draw_below))) {
  162. const int font_height = font->get_height(font_size);
  163. Ref<StyleBox> sb = get_theme_stylebox(SNAME("panel"), SNAME("TooltipPanel"));
  164. Color font_color = get_theme_color(SNAME("font_color"), SNAME("TooltipLabel"));
  165. Vector<String> code_hint_lines = code_hint.split("\n");
  166. int line_count = code_hint_lines.size();
  167. int max_width = 0;
  168. for (int i = 0; i < line_count; i++) {
  169. max_width = MAX(max_width, font->get_string_size(code_hint_lines[i], font_size).x);
  170. }
  171. Size2 minsize = sb->get_minimum_size() + Size2(max_width, line_count * font_height + (line_spacing * line_count - 1));
  172. int offset = font->get_string_size(code_hint_lines[0].substr(0, code_hint_lines[0].find(String::chr(0xFFFF))), font_size).x;
  173. if (code_hint_xpos == -0xFFFF) {
  174. code_hint_xpos = get_caret_draw_pos().x - offset;
  175. }
  176. Point2 hint_ofs = Vector2(code_hint_xpos, get_caret_draw_pos().y);
  177. if (code_hint_draw_below) {
  178. hint_ofs.y += line_spacing / 2.0f;
  179. } else {
  180. hint_ofs.y -= (minsize.y + row_height) - line_spacing;
  181. }
  182. draw_style_box(sb, Rect2(hint_ofs, minsize));
  183. int yofs = 0;
  184. for (int i = 0; i < line_count; i++) {
  185. const String &line = code_hint_lines[i];
  186. int begin = 0;
  187. int end = 0;
  188. if (line.find(String::chr(0xFFFF)) != -1) {
  189. begin = font->get_string_size(line.substr(0, line.find(String::chr(0xFFFF))), font_size).x;
  190. end = font->get_string_size(line.substr(0, line.rfind(String::chr(0xFFFF))), font_size).x;
  191. }
  192. Point2 round_ofs = hint_ofs + sb->get_offset() + Vector2(0, font->get_ascent(font_size) + font_height * i + yofs);
  193. round_ofs = round_ofs.round();
  194. draw_string(font, round_ofs, line.replace(String::chr(0xFFFF), ""), HALIGN_LEFT, -1, font_size, font_color);
  195. if (end > 0) {
  196. // Draw an underline for the currently edited function parameter.
  197. const Vector2 b = hint_ofs + sb->get_offset() + Vector2(begin, font_height + font_height * i + yofs);
  198. draw_line(b, b + Vector2(end - begin, 0), font_color, 2);
  199. // Draw a translucent text highlight as well.
  200. const Rect2 highlight_rect = Rect2(
  201. b - Vector2(0, font_height),
  202. Vector2(end - begin, font_height));
  203. draw_rect(highlight_rect, font_color * Color(1, 1, 1, 0.2));
  204. }
  205. yofs += line_spacing;
  206. }
  207. }
  208. } break;
  209. }
  210. }
  211. void CodeEdit::gui_input(const Ref<InputEvent> &p_gui_input) {
  212. Ref<InputEventMouseButton> mb = p_gui_input;
  213. if (mb.is_valid()) {
  214. /* Ignore mouse clicks in IME input mode. */
  215. if (has_ime_text()) {
  216. return;
  217. }
  218. if (code_completion_active && code_completion_rect.has_point(mb->get_position())) {
  219. if (!mb->is_pressed()) {
  220. return;
  221. }
  222. switch (mb->get_button_index()) {
  223. case MOUSE_BUTTON_WHEEL_UP: {
  224. if (code_completion_current_selected > 0) {
  225. code_completion_current_selected--;
  226. update();
  227. }
  228. } break;
  229. case MOUSE_BUTTON_WHEEL_DOWN: {
  230. if (code_completion_current_selected < code_completion_options.size() - 1) {
  231. code_completion_current_selected++;
  232. update();
  233. }
  234. } break;
  235. case MOUSE_BUTTON_LEFT: {
  236. code_completion_current_selected = CLAMP(code_completion_line_ofs + (mb->get_position().y - code_completion_rect.position.y) / get_line_height(), 0, code_completion_options.size() - 1);
  237. if (mb->is_double_click()) {
  238. confirm_code_completion();
  239. }
  240. update();
  241. } break;
  242. default:
  243. break;
  244. }
  245. return;
  246. }
  247. cancel_code_completion();
  248. set_code_hint("");
  249. if (mb->is_pressed()) {
  250. Vector2i mpos = mb->get_position();
  251. if (is_layout_rtl()) {
  252. mpos.x = get_size().x - mpos.x;
  253. }
  254. Point2i pos = get_line_column_at_pos(mpos);
  255. int line = pos.y;
  256. int col = pos.x;
  257. if (mb->get_button_index() == MOUSE_BUTTON_LEFT) {
  258. if (is_line_folded(line)) {
  259. int wrap_index = get_line_wrap_index_at_column(line, col);
  260. if (wrap_index == get_line_wrap_count(line)) {
  261. int eol_icon_width = folded_eol_icon->get_width();
  262. int left_margin = get_total_gutter_width() + eol_icon_width + get_line_width(line, wrap_index) - get_h_scroll();
  263. if (mpos.x > left_margin && mpos.x <= left_margin + eol_icon_width + 3) {
  264. unfold_line(line);
  265. return;
  266. }
  267. }
  268. }
  269. }
  270. } else {
  271. if (mb->get_button_index() == MOUSE_BUTTON_LEFT) {
  272. if (mb->is_command_pressed() && symbol_lookup_word != String()) {
  273. Vector2i mpos = mb->get_position();
  274. if (is_layout_rtl()) {
  275. mpos.x = get_size().x - mpos.x;
  276. }
  277. Point2i pos = get_line_column_at_pos(mpos);
  278. int line = pos.y;
  279. int col = pos.x;
  280. emit_signal(SNAME("symbol_lookup"), symbol_lookup_word, line, col);
  281. return;
  282. }
  283. }
  284. }
  285. }
  286. Ref<InputEventMouseMotion> mm = p_gui_input;
  287. if (mm.is_valid()) {
  288. Vector2i mpos = mm->get_position();
  289. if (is_layout_rtl()) {
  290. mpos.x = get_size().x - mpos.x;
  291. }
  292. if (symbol_lookup_on_click_enabled) {
  293. if (mm->is_command_pressed() && mm->get_button_mask() == 0 && !is_dragging_cursor()) {
  294. symbol_lookup_new_word = get_word_at_pos(mpos);
  295. if (symbol_lookup_new_word != symbol_lookup_word) {
  296. emit_signal(SNAME("symbol_validate"), symbol_lookup_new_word);
  297. }
  298. } else {
  299. set_symbol_lookup_word_as_valid(false);
  300. }
  301. }
  302. }
  303. Ref<InputEventKey> k = p_gui_input;
  304. bool update_code_completion = false;
  305. if (!k.is_valid()) {
  306. TextEdit::gui_input(p_gui_input);
  307. return;
  308. }
  309. /* Ctrl + Hover symbols */
  310. #ifdef OSX_ENABLED
  311. if (k->get_keycode() == KEY_META) {
  312. #else
  313. if (k->get_keycode() == KEY_CTRL) {
  314. #endif
  315. if (symbol_lookup_on_click_enabled) {
  316. if (k->is_pressed() && !is_dragging_cursor()) {
  317. symbol_lookup_new_word = get_word_at_pos(get_local_mouse_pos());
  318. if (symbol_lookup_new_word != symbol_lookup_word) {
  319. emit_signal(SNAME("symbol_validate"), symbol_lookup_new_word);
  320. }
  321. } else {
  322. set_symbol_lookup_word_as_valid(false);
  323. }
  324. }
  325. return;
  326. }
  327. /* If a modifier has been pressed, and nothing else, return. */
  328. if (!k->is_pressed() || k->get_keycode() == KEY_CTRL || k->get_keycode() == KEY_ALT || k->get_keycode() == KEY_SHIFT || k->get_keycode() == KEY_META) {
  329. return;
  330. }
  331. /* Allow unicode handling if: */
  332. /* No Modifiers are pressed (except shift) */
  333. bool allow_unicode_handling = !(k->is_command_pressed() || k->is_ctrl_pressed() || k->is_alt_pressed() || k->is_meta_pressed());
  334. /* AUTO-COMPLETE */
  335. if (code_completion_enabled && k->is_action("ui_text_completion_query", true)) {
  336. request_code_completion(true);
  337. accept_event();
  338. return;
  339. }
  340. if (code_completion_active) {
  341. if (k->is_action("ui_up", true)) {
  342. if (code_completion_current_selected > 0) {
  343. code_completion_current_selected--;
  344. } else {
  345. code_completion_current_selected = code_completion_options.size() - 1;
  346. }
  347. update();
  348. accept_event();
  349. return;
  350. }
  351. if (k->is_action("ui_down", true)) {
  352. if (code_completion_current_selected < code_completion_options.size() - 1) {
  353. code_completion_current_selected++;
  354. } else {
  355. code_completion_current_selected = 0;
  356. }
  357. update();
  358. accept_event();
  359. return;
  360. }
  361. if (k->is_action("ui_page_up", true)) {
  362. code_completion_current_selected = MAX(0, code_completion_current_selected - code_completion_max_lines);
  363. update();
  364. accept_event();
  365. return;
  366. }
  367. if (k->is_action("ui_page_down", true)) {
  368. code_completion_current_selected = MIN(code_completion_options.size() - 1, code_completion_current_selected + code_completion_max_lines);
  369. update();
  370. accept_event();
  371. return;
  372. }
  373. if (k->is_action("ui_home", true)) {
  374. code_completion_current_selected = 0;
  375. update();
  376. accept_event();
  377. return;
  378. }
  379. if (k->is_action("ui_end", true)) {
  380. code_completion_current_selected = MIN(code_completion_options.size() - 1, code_completion_current_selected + code_completion_max_lines);
  381. update();
  382. accept_event();
  383. return;
  384. }
  385. if (k->is_action("ui_text_completion_replace", true) || k->is_action("ui_text_completion_accept", true)) {
  386. confirm_code_completion(k->is_action("ui_text_completion_replace", true));
  387. accept_event();
  388. return;
  389. }
  390. if (k->is_action("ui_cancel", true)) {
  391. cancel_code_completion();
  392. accept_event();
  393. return;
  394. }
  395. if (k->is_action("ui_text_backspace", true)) {
  396. backspace();
  397. _filter_code_completion_candidates_impl();
  398. accept_event();
  399. return;
  400. }
  401. if (k->is_action("ui_left", true) || k->is_action("ui_right", true)) {
  402. update_code_completion = true;
  403. } else {
  404. update_code_completion = (allow_unicode_handling && k->get_unicode() >= 32);
  405. }
  406. if (!update_code_completion) {
  407. cancel_code_completion();
  408. }
  409. }
  410. /* MISC */
  411. if (!code_hint.is_empty() && k->is_action("ui_cancel", true)) {
  412. set_code_hint("");
  413. accept_event();
  414. return;
  415. }
  416. if (allow_unicode_handling && k->get_unicode() == ')') {
  417. set_code_hint("");
  418. }
  419. /* Indentation */
  420. if (k->is_action("ui_text_indent", true)) {
  421. do_indent();
  422. accept_event();
  423. return;
  424. }
  425. if (k->is_action("ui_text_dedent", true)) {
  426. do_unindent();
  427. accept_event();
  428. return;
  429. }
  430. // Override new line actions, for auto indent
  431. if (k->is_action("ui_text_newline_above", true)) {
  432. _new_line(false, true);
  433. accept_event();
  434. return;
  435. }
  436. if (k->is_action("ui_text_newline_blank", true)) {
  437. _new_line(false);
  438. accept_event();
  439. return;
  440. }
  441. if (k->is_action("ui_text_newline", true)) {
  442. _new_line();
  443. accept_event();
  444. return;
  445. }
  446. /* Remove shift otherwise actions will not match. */
  447. k = k->duplicate();
  448. k->set_shift_pressed(false);
  449. if (k->is_action("ui_text_caret_up", true) ||
  450. k->is_action("ui_text_caret_down", true) ||
  451. k->is_action("ui_text_caret_line_start", true) ||
  452. k->is_action("ui_text_caret_line_end", true) ||
  453. k->is_action("ui_text_caret_page_up", true) ||
  454. k->is_action("ui_text_caret_page_down", true)) {
  455. set_code_hint("");
  456. }
  457. TextEdit::gui_input(p_gui_input);
  458. if (update_code_completion) {
  459. _filter_code_completion_candidates_impl();
  460. }
  461. }
  462. /* General overrides */
  463. Control::CursorShape CodeEdit::get_cursor_shape(const Point2 &p_pos) const {
  464. if (symbol_lookup_word != String()) {
  465. return CURSOR_POINTING_HAND;
  466. }
  467. if ((code_completion_active && code_completion_rect.has_point(p_pos)) || (!is_editable() && (!is_selecting_enabled() || get_line_count() == 0))) {
  468. return CURSOR_ARROW;
  469. }
  470. Point2i pos = get_line_column_at_pos(p_pos);
  471. int line = pos.y;
  472. int col = pos.x;
  473. if (is_line_folded(line)) {
  474. int wrap_index = get_line_wrap_index_at_column(line, col);
  475. if (wrap_index == get_line_wrap_count(line)) {
  476. int eol_icon_width = folded_eol_icon->get_width();
  477. int left_margin = get_total_gutter_width() + eol_icon_width + get_line_width(line, wrap_index) - get_h_scroll();
  478. if (p_pos.x > left_margin && p_pos.x <= left_margin + eol_icon_width + 3) {
  479. return CURSOR_POINTING_HAND;
  480. }
  481. }
  482. }
  483. return TextEdit::get_cursor_shape(p_pos);
  484. }
  485. /* Text manipulation */
  486. // Overridable actions
  487. void CodeEdit::_handle_unicode_input_internal(const uint32_t p_unicode) {
  488. bool had_selection = has_selection();
  489. if (had_selection) {
  490. begin_complex_operation();
  491. delete_selection();
  492. }
  493. // Remove the old character if in overtype mode and no selection.
  494. if (is_overtype_mode_enabled() && !had_selection) {
  495. begin_complex_operation();
  496. /* Make sure we don't try and remove empty space. */
  497. if (get_caret_column() < get_line(get_caret_line()).length()) {
  498. remove_text(get_caret_line(), get_caret_column(), get_caret_line(), get_caret_column() + 1);
  499. }
  500. }
  501. const char32_t chr[2] = { (char32_t)p_unicode, 0 };
  502. if (auto_brace_completion_enabled) {
  503. int cl = get_caret_line();
  504. int cc = get_caret_column();
  505. int caret_move_offset = 1;
  506. int post_brace_pair = cc < get_line(cl).length() ? _get_auto_brace_pair_close_at_pos(cl, cc) : -1;
  507. if (has_string_delimiter(chr) && cc > 0 && _is_char(get_line(cl)[cc - 1]) && post_brace_pair == -1) {
  508. insert_text_at_caret(chr);
  509. } else if (cc < get_line(cl).length() && _is_char(get_line(cl)[cc])) {
  510. insert_text_at_caret(chr);
  511. } else if (post_brace_pair != -1 && auto_brace_completion_pairs[post_brace_pair].close_key[0] == chr[0]) {
  512. caret_move_offset = auto_brace_completion_pairs[post_brace_pair].close_key.length();
  513. } else if (is_in_comment(cl, cc) != -1 || (is_in_string(cl, cc) != -1 && has_string_delimiter(chr))) {
  514. insert_text_at_caret(chr);
  515. } else {
  516. insert_text_at_caret(chr);
  517. int pre_brace_pair = _get_auto_brace_pair_open_at_pos(cl, cc + 1);
  518. if (pre_brace_pair != -1) {
  519. insert_text_at_caret(auto_brace_completion_pairs[pre_brace_pair].close_key);
  520. }
  521. }
  522. set_caret_column(cc + caret_move_offset);
  523. } else {
  524. insert_text_at_caret(chr);
  525. }
  526. if ((is_overtype_mode_enabled() && !had_selection) || (had_selection)) {
  527. end_complex_operation();
  528. }
  529. }
  530. void CodeEdit::_backspace_internal() {
  531. if (!is_editable()) {
  532. return;
  533. }
  534. if (has_selection()) {
  535. delete_selection();
  536. return;
  537. }
  538. int cc = get_caret_column();
  539. int cl = get_caret_line();
  540. if (cc == 0 && cl == 0) {
  541. return;
  542. }
  543. if (cl > 0 && _is_line_hidden(cl - 1)) {
  544. unfold_line(get_caret_line() - 1);
  545. }
  546. int prev_line = cc ? cl : cl - 1;
  547. int prev_column = cc ? (cc - 1) : (get_line(cl - 1).length());
  548. merge_gutters(prev_line, cl);
  549. if (auto_brace_completion_enabled && cc > 0) {
  550. int idx = _get_auto_brace_pair_open_at_pos(cl, cc);
  551. if (idx != -1) {
  552. prev_column = cc - auto_brace_completion_pairs[idx].open_key.length();
  553. if (_get_auto_brace_pair_close_at_pos(cl, cc) == idx) {
  554. remove_text(prev_line, prev_column, cl, cc + auto_brace_completion_pairs[idx].close_key.length());
  555. } else {
  556. remove_text(prev_line, prev_column, cl, cc);
  557. }
  558. set_caret_line(prev_line, false, true);
  559. set_caret_column(prev_column);
  560. return;
  561. }
  562. }
  563. // For space indentation we need to do a simple unindent if there are no chars to the left, acting in the
  564. // same way as tabs.
  565. if (indent_using_spaces && cc != 0) {
  566. if (get_first_non_whitespace_column(cl) >= cc) {
  567. prev_column = cc - _calculate_spaces_till_next_left_indent(cc);
  568. prev_line = cl;
  569. }
  570. }
  571. remove_text(prev_line, prev_column, cl, cc);
  572. set_caret_line(prev_line, false, true);
  573. set_caret_column(prev_column);
  574. }
  575. /* Indent management */
  576. void CodeEdit::set_indent_size(const int p_size) {
  577. ERR_FAIL_COND_MSG(p_size <= 0, "Indend size must be greater than 0.");
  578. if (indent_size == p_size) {
  579. return;
  580. }
  581. indent_size = p_size;
  582. if (indent_using_spaces) {
  583. indent_text = String(" ").repeat(p_size);
  584. } else {
  585. indent_text = "\t";
  586. }
  587. set_tab_size(p_size);
  588. }
  589. int CodeEdit::get_indent_size() const {
  590. return indent_size;
  591. }
  592. void CodeEdit::set_indent_using_spaces(const bool p_use_spaces) {
  593. indent_using_spaces = p_use_spaces;
  594. if (indent_using_spaces) {
  595. indent_text = String(" ").repeat(indent_size);
  596. } else {
  597. indent_text = "\t";
  598. }
  599. }
  600. bool CodeEdit::is_indent_using_spaces() const {
  601. return indent_using_spaces;
  602. }
  603. void CodeEdit::set_auto_indent_enabled(bool p_enabled) {
  604. auto_indent = p_enabled;
  605. }
  606. bool CodeEdit::is_auto_indent_enabled() const {
  607. return auto_indent;
  608. }
  609. void CodeEdit::set_auto_indent_prefixes(const TypedArray<String> &p_prefixes) {
  610. auto_indent_prefixes.clear();
  611. for (int i = 0; i < p_prefixes.size(); i++) {
  612. const String prefix = p_prefixes[i];
  613. auto_indent_prefixes.insert(prefix[0]);
  614. }
  615. }
  616. TypedArray<String> CodeEdit::get_auto_indent_prefixes() const {
  617. TypedArray<String> prefixes;
  618. for (const Set<char32_t>::Element *E = auto_indent_prefixes.front(); E; E = E->next()) {
  619. prefixes.push_back(String::chr(E->get()));
  620. }
  621. return prefixes;
  622. }
  623. void CodeEdit::do_indent() {
  624. if (!is_editable()) {
  625. return;
  626. }
  627. if (has_selection()) {
  628. indent_lines();
  629. return;
  630. }
  631. if (!indent_using_spaces) {
  632. insert_text_at_caret("\t");
  633. return;
  634. }
  635. int spaces_to_add = _calculate_spaces_till_next_right_indent(get_caret_column());
  636. if (spaces_to_add > 0) {
  637. insert_text_at_caret(String(" ").repeat(spaces_to_add));
  638. }
  639. }
  640. void CodeEdit::indent_lines() {
  641. if (!is_editable()) {
  642. return;
  643. }
  644. begin_complex_operation();
  645. /* This value informs us by how much we changed selection position by indenting right. */
  646. /* Default is 1 for tab indentation. */
  647. int selection_offset = 1;
  648. int start_line = get_caret_line();
  649. int end_line = start_line;
  650. if (has_selection()) {
  651. start_line = get_selection_from_line();
  652. end_line = get_selection_to_line();
  653. /* Ignore the last line if the selection is not past the first column. */
  654. if (get_selection_to_column() == 0) {
  655. selection_offset = 0;
  656. end_line--;
  657. }
  658. }
  659. for (int i = start_line; i <= end_line; i++) {
  660. const String line_text = get_line(i);
  661. if (line_text.size() == 0 && has_selection()) {
  662. continue;
  663. }
  664. if (!indent_using_spaces) {
  665. set_line(i, '\t' + line_text);
  666. continue;
  667. }
  668. /* We don't really care where selection is - we just need to know indentation level at the beginning of the line. */
  669. /* Since we will add this many spaces, we want to move the whole selection and caret by this much. */
  670. int spaces_to_add = _calculate_spaces_till_next_right_indent(get_first_non_whitespace_column(i));
  671. set_line(i, String(" ").repeat(spaces_to_add) + line_text);
  672. selection_offset = spaces_to_add;
  673. }
  674. /* Fix selection and caret being off after shifting selection right.*/
  675. if (has_selection()) {
  676. select(start_line, get_selection_from_column() + selection_offset, get_selection_to_line(), get_selection_to_column() + selection_offset);
  677. }
  678. set_caret_column(get_caret_column() + selection_offset, false);
  679. end_complex_operation();
  680. }
  681. void CodeEdit::do_unindent() {
  682. if (!is_editable()) {
  683. return;
  684. }
  685. int cc = get_caret_column();
  686. if (has_selection() || cc <= 0) {
  687. unindent_lines();
  688. return;
  689. }
  690. int cl = get_caret_line();
  691. const String &line = get_line(cl);
  692. if (line[cc - 1] == '\t') {
  693. remove_text(cl, cc - 1, cl, cc);
  694. set_caret_column(MAX(0, cc - 1));
  695. return;
  696. }
  697. if (line[cc - 1] != ' ') {
  698. return;
  699. }
  700. int spaces_to_remove = _calculate_spaces_till_next_left_indent(cc);
  701. if (spaces_to_remove > 0) {
  702. for (int i = 1; i <= spaces_to_remove; i++) {
  703. if (line[cc - i] != ' ') {
  704. spaces_to_remove = i - 1;
  705. break;
  706. }
  707. }
  708. remove_text(cl, cc - spaces_to_remove, cl, cc);
  709. set_caret_column(MAX(0, cc - spaces_to_remove));
  710. }
  711. }
  712. void CodeEdit::unindent_lines() {
  713. if (!is_editable()) {
  714. return;
  715. }
  716. begin_complex_operation();
  717. /* Moving caret and selection after unindenting can get tricky because */
  718. /* changing content of line can move caret and selection on its own (if new line ends before previous position of either), */
  719. /* therefore we just remember initial values and at the end of the operation offset them by number of removed characters. */
  720. int removed_characters = 0;
  721. int initial_selection_end_column = 0;
  722. int initial_cursor_column = get_caret_column();
  723. int start_line = get_caret_line();
  724. int end_line = start_line;
  725. if (has_selection()) {
  726. start_line = get_selection_from_line();
  727. end_line = get_selection_to_line();
  728. /* Ignore the last line if the selection is not past the first column. */
  729. initial_selection_end_column = get_selection_to_column();
  730. if (initial_selection_end_column == 0) {
  731. end_line--;
  732. }
  733. }
  734. bool first_line_edited = false;
  735. bool last_line_edited = false;
  736. for (int i = start_line; i <= end_line; i++) {
  737. String line_text = get_line(i);
  738. if (line_text.begins_with("\t")) {
  739. line_text = line_text.substr(1, line_text.length());
  740. set_line(i, line_text);
  741. removed_characters = 1;
  742. first_line_edited = (i == start_line) ? true : first_line_edited;
  743. last_line_edited = (i == end_line) ? true : last_line_edited;
  744. continue;
  745. }
  746. if (line_text.begins_with(" ")) {
  747. /* When unindenting we aim to remove spaces before line that has selection no matter what is selected, */
  748. /* Here we remove only enough spaces to align text to nearest full multiple of indentation_size. */
  749. /* In case where selection begins at the start of indentation_size multiple we remove whole indentation level. */
  750. int spaces_to_remove = _calculate_spaces_till_next_left_indent(get_first_non_whitespace_column(i));
  751. line_text = line_text.substr(spaces_to_remove, line_text.length());
  752. set_line(i, line_text);
  753. removed_characters = spaces_to_remove;
  754. first_line_edited = (i == start_line) ? true : first_line_edited;
  755. last_line_edited = (i == end_line) ? true : last_line_edited;
  756. }
  757. }
  758. if (has_selection()) {
  759. /* Fix selection being off by one on the first line. */
  760. if (first_line_edited) {
  761. select(get_selection_from_line(), get_selection_from_column() - removed_characters, get_selection_to_line(), initial_selection_end_column);
  762. }
  763. /* Fix selection being off by one on the last line. */
  764. if (last_line_edited) {
  765. select(get_selection_from_line(), get_selection_from_column(), get_selection_to_line(), initial_selection_end_column - removed_characters);
  766. }
  767. }
  768. set_caret_column(initial_cursor_column - removed_characters, false);
  769. end_complex_operation();
  770. }
  771. int CodeEdit::_calculate_spaces_till_next_left_indent(int p_column) const {
  772. int spaces_till_indent = p_column % indent_size;
  773. if (spaces_till_indent == 0) {
  774. spaces_till_indent = indent_size;
  775. }
  776. return spaces_till_indent;
  777. }
  778. int CodeEdit::_calculate_spaces_till_next_right_indent(int p_column) const {
  779. return indent_size - p_column % indent_size;
  780. }
  781. void CodeEdit::_new_line(bool p_split_current_line, bool p_above) {
  782. if (!is_editable()) {
  783. return;
  784. }
  785. const int cc = get_caret_column();
  786. const int cl = get_caret_line();
  787. const String line = get_line(cl);
  788. String ins = "\n";
  789. /* Append current indentation. */
  790. int space_count = 0;
  791. int line_col = 0;
  792. for (; line_col < cc; line_col++) {
  793. if (line[line_col] == '\t') {
  794. ins += indent_text;
  795. space_count = 0;
  796. continue;
  797. }
  798. if (line[line_col] == ' ') {
  799. space_count++;
  800. if (space_count == indent_size) {
  801. ins += indent_text;
  802. space_count = 0;
  803. }
  804. continue;
  805. }
  806. break;
  807. }
  808. if (is_line_folded(cl)) {
  809. unfold_line(cl);
  810. }
  811. /* Indent once again if the previous line needs it, ie ':'. */
  812. /* Then add an addition new line for any closing pairs aka '()'. */
  813. /* Skip this in comments or if we are going above. */
  814. bool brace_indent = false;
  815. if (auto_indent && !p_above && cc > 0 && is_in_comment(cl) == -1) {
  816. bool should_indent = false;
  817. char32_t indent_char = ' ';
  818. for (; line_col < cc; line_col++) {
  819. char32_t c = line[line_col];
  820. if (auto_indent_prefixes.has(c)) {
  821. should_indent = true;
  822. indent_char = c;
  823. continue;
  824. }
  825. /* Make sure this is the last char, trailing whitespace or comments are okay. */
  826. if (should_indent && (!_is_whitespace(c) && is_in_comment(cl, cc) == -1)) {
  827. should_indent = false;
  828. }
  829. }
  830. if (should_indent) {
  831. ins += indent_text;
  832. String closing_pair = get_auto_brace_completion_close_key(String::chr(indent_char));
  833. if (!closing_pair.is_empty() && line.find(closing_pair, cc) == cc) {
  834. /* No need to move the brace below if we are not taking the text with us. */
  835. if (p_split_current_line) {
  836. brace_indent = true;
  837. ins += "\n" + ins.substr(indent_text.size(), ins.length() - 2);
  838. } else {
  839. brace_indent = false;
  840. ins = "\n" + ins.substr(indent_text.size(), ins.length() - 2);
  841. }
  842. }
  843. }
  844. }
  845. begin_complex_operation();
  846. bool first_line = false;
  847. if (!p_split_current_line) {
  848. if (p_above) {
  849. if (cl > 0) {
  850. set_caret_line(cl - 1, false);
  851. set_caret_column(get_line(get_caret_line()).length());
  852. } else {
  853. set_caret_column(0);
  854. first_line = true;
  855. }
  856. } else {
  857. set_caret_column(line.length());
  858. }
  859. }
  860. insert_text_at_caret(ins);
  861. if (first_line) {
  862. set_caret_line(0);
  863. } else if (brace_indent) {
  864. set_caret_line(get_caret_line() - 1, false);
  865. set_caret_column(get_line(get_caret_line()).length());
  866. }
  867. end_complex_operation();
  868. }
  869. /* Auto brace completion */
  870. void CodeEdit::set_auto_brace_completion_enabled(bool p_enabled) {
  871. auto_brace_completion_enabled = p_enabled;
  872. }
  873. bool CodeEdit::is_auto_brace_completion_enabled() const {
  874. return auto_brace_completion_enabled;
  875. }
  876. void CodeEdit::set_highlight_matching_braces_enabled(bool p_enabled) {
  877. highlight_matching_braces_enabled = p_enabled;
  878. update();
  879. }
  880. bool CodeEdit::is_highlight_matching_braces_enabled() const {
  881. return highlight_matching_braces_enabled;
  882. }
  883. void CodeEdit::add_auto_brace_completion_pair(const String &p_open_key, const String &p_close_key) {
  884. ERR_FAIL_COND_MSG(p_open_key.is_empty(), "auto brace completion open key cannot be empty");
  885. ERR_FAIL_COND_MSG(p_close_key.is_empty(), "auto brace completion close key cannot be empty");
  886. for (int i = 0; i < p_open_key.length(); i++) {
  887. ERR_FAIL_COND_MSG(!is_symbol(p_open_key[i]), "auto brace completion open key must be a symbol");
  888. }
  889. for (int i = 0; i < p_close_key.length(); i++) {
  890. ERR_FAIL_COND_MSG(!is_symbol(p_close_key[i]), "auto brace completion close key must be a symbol");
  891. }
  892. int at = 0;
  893. for (int i = 0; i < auto_brace_completion_pairs.size(); i++) {
  894. ERR_FAIL_COND_MSG(auto_brace_completion_pairs[i].open_key == p_open_key, "auto brace completion open key '" + p_open_key + "' already exists.");
  895. if (p_open_key.length() < auto_brace_completion_pairs[i].open_key.length()) {
  896. at++;
  897. }
  898. }
  899. BracePair brace_pair;
  900. brace_pair.open_key = p_open_key;
  901. brace_pair.close_key = p_close_key;
  902. auto_brace_completion_pairs.insert(at, brace_pair);
  903. }
  904. void CodeEdit::set_auto_brace_completion_pairs(const Dictionary &p_auto_brace_completion_pairs) {
  905. auto_brace_completion_pairs.clear();
  906. Array keys = p_auto_brace_completion_pairs.keys();
  907. for (int i = 0; i < keys.size(); i++) {
  908. add_auto_brace_completion_pair(keys[i], p_auto_brace_completion_pairs[keys[i]]);
  909. }
  910. }
  911. Dictionary CodeEdit::get_auto_brace_completion_pairs() const {
  912. Dictionary brace_pairs;
  913. for (int i = 0; i < auto_brace_completion_pairs.size(); i++) {
  914. brace_pairs[auto_brace_completion_pairs[i].open_key] = auto_brace_completion_pairs[i].close_key;
  915. }
  916. return brace_pairs;
  917. }
  918. bool CodeEdit::has_auto_brace_completion_open_key(const String &p_open_key) const {
  919. for (int i = 0; i < auto_brace_completion_pairs.size(); i++) {
  920. if (auto_brace_completion_pairs[i].open_key == p_open_key) {
  921. return true;
  922. }
  923. }
  924. return false;
  925. }
  926. bool CodeEdit::has_auto_brace_completion_close_key(const String &p_close_key) const {
  927. for (int i = 0; i < auto_brace_completion_pairs.size(); i++) {
  928. if (auto_brace_completion_pairs[i].close_key == p_close_key) {
  929. return true;
  930. }
  931. }
  932. return false;
  933. }
  934. String CodeEdit::get_auto_brace_completion_close_key(const String &p_open_key) const {
  935. for (int i = 0; i < auto_brace_completion_pairs.size(); i++) {
  936. if (auto_brace_completion_pairs[i].open_key == p_open_key) {
  937. return auto_brace_completion_pairs[i].close_key;
  938. }
  939. }
  940. return String();
  941. }
  942. /* Main Gutter */
  943. void CodeEdit::_update_draw_main_gutter() {
  944. set_gutter_draw(main_gutter, draw_breakpoints || draw_bookmarks || draw_executing_lines);
  945. }
  946. void CodeEdit::set_draw_breakpoints_gutter(bool p_draw) {
  947. draw_breakpoints = p_draw;
  948. set_gutter_clickable(main_gutter, p_draw);
  949. _update_draw_main_gutter();
  950. }
  951. bool CodeEdit::is_drawing_breakpoints_gutter() const {
  952. return draw_breakpoints;
  953. }
  954. void CodeEdit::set_draw_bookmarks_gutter(bool p_draw) {
  955. draw_bookmarks = p_draw;
  956. _update_draw_main_gutter();
  957. }
  958. bool CodeEdit::is_drawing_bookmarks_gutter() const {
  959. return draw_bookmarks;
  960. }
  961. void CodeEdit::set_draw_executing_lines_gutter(bool p_draw) {
  962. draw_executing_lines = p_draw;
  963. _update_draw_main_gutter();
  964. }
  965. bool CodeEdit::is_drawing_executing_lines_gutter() const {
  966. return draw_executing_lines;
  967. }
  968. void CodeEdit::_main_gutter_draw_callback(int p_line, int p_gutter, const Rect2 &p_region) {
  969. if (draw_breakpoints) {
  970. bool hovering = p_region.has_point(get_local_mouse_pos());
  971. bool breakpointed = is_line_breakpointed(p_line);
  972. if (breakpointed || (hovering && !is_dragging_cursor())) {
  973. int padding = p_region.size.x / 6;
  974. Rect2 icon_region = p_region;
  975. icon_region.position += Point2(padding, padding);
  976. icon_region.size -= Point2(padding, padding) * 2;
  977. // Darken icon when hovering & not yet breakpointed.
  978. Color use_color = hovering && !breakpointed ? breakpoint_color.darkened(0.4) : breakpoint_color;
  979. breakpoint_icon->draw_rect(get_canvas_item(), icon_region, false, use_color);
  980. }
  981. }
  982. if (draw_bookmarks && is_line_bookmarked(p_line)) {
  983. int horizontal_padding = p_region.size.x / 2;
  984. int vertical_padding = p_region.size.y / 4;
  985. Rect2 bookmark_region = p_region;
  986. bookmark_region.position += Point2(horizontal_padding, 0);
  987. bookmark_region.size -= Point2(horizontal_padding * 1.1, vertical_padding);
  988. bookmark_icon->draw_rect(get_canvas_item(), bookmark_region, false, bookmark_color);
  989. }
  990. if (draw_executing_lines && is_line_executing(p_line)) {
  991. int horizontal_padding = p_region.size.x / 10;
  992. int vertical_padding = p_region.size.y / 4;
  993. Rect2 executing_line_region = p_region;
  994. executing_line_region.position += Point2(horizontal_padding, vertical_padding);
  995. executing_line_region.size -= Point2(horizontal_padding, vertical_padding) * 2;
  996. executing_line_icon->draw_rect(get_canvas_item(), executing_line_region, false, executing_line_color);
  997. }
  998. }
  999. // Breakpoints
  1000. void CodeEdit::set_line_as_breakpoint(int p_line, bool p_breakpointed) {
  1001. ERR_FAIL_INDEX(p_line, get_line_count());
  1002. int mask = get_line_gutter_metadata(p_line, main_gutter);
  1003. set_line_gutter_metadata(p_line, main_gutter, p_breakpointed ? mask | MAIN_GUTTER_BREAKPOINT : mask & ~MAIN_GUTTER_BREAKPOINT);
  1004. if (p_breakpointed) {
  1005. breakpointed_lines[p_line] = true;
  1006. } else if (breakpointed_lines.has(p_line)) {
  1007. breakpointed_lines.erase(p_line);
  1008. }
  1009. emit_signal(SNAME("breakpoint_toggled"), p_line);
  1010. update();
  1011. }
  1012. bool CodeEdit::is_line_breakpointed(int p_line) const {
  1013. return (int)get_line_gutter_metadata(p_line, main_gutter) & MAIN_GUTTER_BREAKPOINT;
  1014. }
  1015. void CodeEdit::clear_breakpointed_lines() {
  1016. for (int i = 0; i < get_line_count(); i++) {
  1017. if (is_line_breakpointed(i)) {
  1018. set_line_as_breakpoint(i, false);
  1019. }
  1020. }
  1021. }
  1022. Array CodeEdit::get_breakpointed_lines() const {
  1023. Array ret;
  1024. for (int i = 0; i < get_line_count(); i++) {
  1025. if (is_line_breakpointed(i)) {
  1026. ret.append(i);
  1027. }
  1028. }
  1029. return ret;
  1030. }
  1031. // Bookmarks
  1032. void CodeEdit::set_line_as_bookmarked(int p_line, bool p_bookmarked) {
  1033. int mask = get_line_gutter_metadata(p_line, main_gutter);
  1034. set_line_gutter_metadata(p_line, main_gutter, p_bookmarked ? mask | MAIN_GUTTER_BOOKMARK : mask & ~MAIN_GUTTER_BOOKMARK);
  1035. update();
  1036. }
  1037. bool CodeEdit::is_line_bookmarked(int p_line) const {
  1038. return (int)get_line_gutter_metadata(p_line, main_gutter) & MAIN_GUTTER_BOOKMARK;
  1039. }
  1040. void CodeEdit::clear_bookmarked_lines() {
  1041. for (int i = 0; i < get_line_count(); i++) {
  1042. if (is_line_bookmarked(i)) {
  1043. set_line_as_bookmarked(i, false);
  1044. }
  1045. }
  1046. }
  1047. Array CodeEdit::get_bookmarked_lines() const {
  1048. Array ret;
  1049. for (int i = 0; i < get_line_count(); i++) {
  1050. if (is_line_bookmarked(i)) {
  1051. ret.append(i);
  1052. }
  1053. }
  1054. return ret;
  1055. }
  1056. // executing lines
  1057. void CodeEdit::set_line_as_executing(int p_line, bool p_executing) {
  1058. int mask = get_line_gutter_metadata(p_line, main_gutter);
  1059. set_line_gutter_metadata(p_line, main_gutter, p_executing ? mask | MAIN_GUTTER_EXECUTING : mask & ~MAIN_GUTTER_EXECUTING);
  1060. update();
  1061. }
  1062. bool CodeEdit::is_line_executing(int p_line) const {
  1063. return (int)get_line_gutter_metadata(p_line, main_gutter) & MAIN_GUTTER_EXECUTING;
  1064. }
  1065. void CodeEdit::clear_executing_lines() {
  1066. for (int i = 0; i < get_line_count(); i++) {
  1067. if (is_line_executing(i)) {
  1068. set_line_as_executing(i, false);
  1069. }
  1070. }
  1071. }
  1072. Array CodeEdit::get_executing_lines() const {
  1073. Array ret;
  1074. for (int i = 0; i < get_line_count(); i++) {
  1075. if (is_line_executing(i)) {
  1076. ret.append(i);
  1077. }
  1078. }
  1079. return ret;
  1080. }
  1081. /* Line numbers */
  1082. void CodeEdit::set_draw_line_numbers(bool p_draw) {
  1083. set_gutter_draw(line_number_gutter, p_draw);
  1084. }
  1085. bool CodeEdit::is_draw_line_numbers_enabled() const {
  1086. return is_gutter_drawn(line_number_gutter);
  1087. }
  1088. void CodeEdit::set_line_numbers_zero_padded(bool p_zero_padded) {
  1089. p_zero_padded ? line_number_padding = "0" : line_number_padding = " ";
  1090. update();
  1091. }
  1092. bool CodeEdit::is_line_numbers_zero_padded() const {
  1093. return line_number_padding == "0";
  1094. }
  1095. void CodeEdit::_line_number_draw_callback(int p_line, int p_gutter, const Rect2 &p_region) {
  1096. String fc = TS->format_number(String::num(p_line + 1).lpad(line_number_digits, line_number_padding));
  1097. Ref<TextLine> tl;
  1098. tl.instantiate();
  1099. tl->add_string(fc, font, font_size);
  1100. int yofs = p_region.position.y + (get_line_height() - tl->get_size().y) / 2;
  1101. Color number_color = get_line_gutter_item_color(p_line, line_number_gutter);
  1102. if (number_color == Color(1, 1, 1)) {
  1103. number_color = line_number_color;
  1104. }
  1105. tl->draw(get_canvas_item(), Point2(p_region.position.x, yofs), number_color);
  1106. }
  1107. /* Fold Gutter */
  1108. void CodeEdit::set_draw_fold_gutter(bool p_draw) {
  1109. set_gutter_draw(fold_gutter, p_draw);
  1110. }
  1111. bool CodeEdit::is_drawing_fold_gutter() const {
  1112. return is_gutter_drawn(fold_gutter);
  1113. }
  1114. void CodeEdit::_fold_gutter_draw_callback(int p_line, int p_gutter, Rect2 p_region) {
  1115. if (!can_fold_line(p_line) && !is_line_folded(p_line)) {
  1116. set_line_gutter_clickable(p_line, fold_gutter, false);
  1117. return;
  1118. }
  1119. set_line_gutter_clickable(p_line, fold_gutter, true);
  1120. int horizontal_padding = p_region.size.x / 10;
  1121. int vertical_padding = p_region.size.y / 6;
  1122. p_region.position += Point2(horizontal_padding, vertical_padding);
  1123. p_region.size -= Point2(horizontal_padding, vertical_padding) * 2;
  1124. if (can_fold_line(p_line)) {
  1125. can_fold_icon->draw_rect(get_canvas_item(), p_region, false, folding_color);
  1126. return;
  1127. }
  1128. folded_icon->draw_rect(get_canvas_item(), p_region, false, folding_color);
  1129. }
  1130. /* Line Folding */
  1131. void CodeEdit::set_line_folding_enabled(bool p_enabled) {
  1132. line_folding_enabled = p_enabled;
  1133. _set_hiding_enabled(p_enabled);
  1134. }
  1135. bool CodeEdit::is_line_folding_enabled() const {
  1136. return line_folding_enabled;
  1137. }
  1138. bool CodeEdit::can_fold_line(int p_line) const {
  1139. ERR_FAIL_INDEX_V(p_line, get_line_count(), false);
  1140. if (!line_folding_enabled) {
  1141. return false;
  1142. }
  1143. if (p_line + 1 >= get_line_count() || get_line(p_line).strip_edges().size() == 0) {
  1144. return false;
  1145. }
  1146. if (_is_line_hidden(p_line) || is_line_folded(p_line)) {
  1147. return false;
  1148. }
  1149. /* Check for full multiline line or block strings / comments. */
  1150. int in_comment = is_in_comment(p_line);
  1151. int in_string = (in_comment == -1) ? is_in_string(p_line) : -1;
  1152. if (in_string != -1 || in_comment != -1) {
  1153. if (get_delimiter_start_position(p_line, get_line(p_line).size() - 1).y != p_line) {
  1154. return false;
  1155. }
  1156. int delimter_end_line = get_delimiter_end_position(p_line, get_line(p_line).size() - 1).y;
  1157. /* No end line, therefore we have a multiline region over the rest of the file. */
  1158. if (delimter_end_line == -1) {
  1159. return true;
  1160. }
  1161. /* End line is the same therefore we have a block. */
  1162. if (delimter_end_line == p_line) {
  1163. /* Check we are the start of the block. */
  1164. if (p_line - 1 >= 0) {
  1165. if ((in_string != -1 && is_in_string(p_line - 1) != -1) || (in_comment != -1 && is_in_comment(p_line - 1) != -1)) {
  1166. return false;
  1167. }
  1168. }
  1169. /* Check it continues for at least one line. */
  1170. return ((in_string != -1 && is_in_string(p_line + 1) != -1) || (in_comment != -1 && is_in_comment(p_line + 1) != -1));
  1171. }
  1172. return ((in_string != -1 && is_in_string(delimter_end_line) != -1) || (in_comment != -1 && is_in_comment(delimter_end_line) != -1));
  1173. }
  1174. /* Otherwise check indent levels. */
  1175. int start_indent = get_indent_level(p_line);
  1176. for (int i = p_line + 1; i < get_line_count(); i++) {
  1177. if (is_in_string(i) != -1 || is_in_comment(i) != -1 || get_line(i).strip_edges().size() == 0) {
  1178. continue;
  1179. }
  1180. return (get_indent_level(i) > start_indent);
  1181. }
  1182. return false;
  1183. }
  1184. void CodeEdit::fold_line(int p_line) {
  1185. ERR_FAIL_INDEX(p_line, get_line_count());
  1186. if (!is_line_folding_enabled() || !can_fold_line(p_line)) {
  1187. return;
  1188. }
  1189. /* Find the last line to be hidden. */
  1190. const int line_count = get_line_count() - 1;
  1191. int end_line = line_count;
  1192. int in_comment = is_in_comment(p_line);
  1193. int in_string = (in_comment == -1) ? is_in_string(p_line) : -1;
  1194. if (in_string != -1 || in_comment != -1) {
  1195. end_line = get_delimiter_end_position(p_line, get_line(p_line).size() - 1).y;
  1196. /* End line is the same therefore we have a block of single line delimiters. */
  1197. if (end_line == p_line) {
  1198. for (int i = p_line + 1; i <= line_count; i++) {
  1199. if (i == line_count) {
  1200. end_line = line_count;
  1201. break;
  1202. }
  1203. if ((in_string != -1 && is_in_string(i) == -1) || (in_comment != -1 && is_in_comment(i) == -1)) {
  1204. end_line = i - 1;
  1205. break;
  1206. }
  1207. }
  1208. }
  1209. } else {
  1210. int start_indent = get_indent_level(p_line);
  1211. for (int i = p_line + 1; i <= line_count; i++) {
  1212. if (get_line(p_line).strip_edges().size() == 0 || is_in_string(i) != -1 || is_in_comment(i) != -1) {
  1213. end_line = i;
  1214. continue;
  1215. }
  1216. if (i == line_count) {
  1217. /* Do not fold empty last line of script if any */
  1218. end_line = i;
  1219. if (get_line(i).strip_edges().size() == 0) {
  1220. end_line--;
  1221. }
  1222. break;
  1223. }
  1224. if ((get_indent_level(i) <= start_indent && get_line(i).strip_edges().size() != 0)) {
  1225. /* Keep an empty line unfolded if any */
  1226. end_line = i - 1;
  1227. if (get_line(i - 1).strip_edges().size() == 0 && i - 2 > p_line) {
  1228. end_line = i - 2;
  1229. }
  1230. break;
  1231. }
  1232. }
  1233. }
  1234. for (int i = p_line + 1; i <= end_line; i++) {
  1235. _set_line_as_hidden(i, true);
  1236. }
  1237. /* Fix selection. */
  1238. if (has_selection()) {
  1239. if (_is_line_hidden(get_selection_from_line()) && _is_line_hidden(get_selection_to_line())) {
  1240. deselect();
  1241. } else if (_is_line_hidden(get_selection_from_line())) {
  1242. select(p_line, 9999, get_selection_to_line(), get_selection_to_column());
  1243. } else if (_is_line_hidden(get_selection_to_line())) {
  1244. select(get_selection_from_line(), get_selection_from_column(), p_line, 9999);
  1245. }
  1246. }
  1247. /* Reset caret. */
  1248. if (_is_line_hidden(get_caret_line())) {
  1249. set_caret_line(p_line, false, false);
  1250. set_caret_column(get_line(p_line).length(), false);
  1251. }
  1252. update();
  1253. }
  1254. void CodeEdit::unfold_line(int p_line) {
  1255. ERR_FAIL_INDEX(p_line, get_line_count());
  1256. if (!is_line_folded(p_line) && !_is_line_hidden(p_line)) {
  1257. return;
  1258. }
  1259. int fold_start = p_line;
  1260. for (; fold_start > 0; fold_start--) {
  1261. if (is_line_folded(fold_start)) {
  1262. break;
  1263. }
  1264. }
  1265. fold_start = is_line_folded(fold_start) ? fold_start : p_line;
  1266. for (int i = fold_start + 1; i < get_line_count(); i++) {
  1267. if (!_is_line_hidden(i)) {
  1268. break;
  1269. }
  1270. _set_line_as_hidden(i, false);
  1271. }
  1272. update();
  1273. }
  1274. void CodeEdit::fold_all_lines() {
  1275. for (int i = 0; i < get_line_count(); i++) {
  1276. fold_line(i);
  1277. }
  1278. update();
  1279. }
  1280. void CodeEdit::unfold_all_lines() {
  1281. _unhide_all_lines();
  1282. }
  1283. void CodeEdit::toggle_foldable_line(int p_line) {
  1284. ERR_FAIL_INDEX(p_line, get_line_count());
  1285. if (is_line_folded(p_line)) {
  1286. unfold_line(p_line);
  1287. return;
  1288. }
  1289. fold_line(p_line);
  1290. }
  1291. bool CodeEdit::is_line_folded(int p_line) const {
  1292. ERR_FAIL_INDEX_V(p_line, get_line_count(), false);
  1293. return p_line + 1 < get_line_count() && !_is_line_hidden(p_line) && _is_line_hidden(p_line + 1);
  1294. }
  1295. TypedArray<int> CodeEdit::get_folded_lines() const {
  1296. TypedArray<int> folded_lines;
  1297. for (int i = 0; i < get_line_count(); i++) {
  1298. if (is_line_folded(i)) {
  1299. folded_lines.push_back(i);
  1300. }
  1301. }
  1302. return folded_lines;
  1303. }
  1304. /* Delimiters */
  1305. // Strings
  1306. void CodeEdit::add_string_delimiter(const String &p_start_key, const String &p_end_key, bool p_line_only) {
  1307. _add_delimiter(p_start_key, p_end_key, p_line_only, TYPE_STRING);
  1308. }
  1309. void CodeEdit::remove_string_delimiter(const String &p_start_key) {
  1310. _remove_delimiter(p_start_key, TYPE_STRING);
  1311. }
  1312. bool CodeEdit::has_string_delimiter(const String &p_start_key) const {
  1313. return _has_delimiter(p_start_key, TYPE_STRING);
  1314. }
  1315. void CodeEdit::set_string_delimiters(const TypedArray<String> &p_string_delimiters) {
  1316. _set_delimiters(p_string_delimiters, TYPE_STRING);
  1317. }
  1318. void CodeEdit::clear_string_delimiters() {
  1319. _clear_delimiters(TYPE_STRING);
  1320. }
  1321. TypedArray<String> CodeEdit::get_string_delimiters() const {
  1322. return _get_delimiters(TYPE_STRING);
  1323. }
  1324. int CodeEdit::is_in_string(int p_line, int p_column) const {
  1325. return _is_in_delimiter(p_line, p_column, TYPE_STRING);
  1326. }
  1327. // Comments
  1328. void CodeEdit::add_comment_delimiter(const String &p_start_key, const String &p_end_key, bool p_line_only) {
  1329. _add_delimiter(p_start_key, p_end_key, p_line_only, TYPE_COMMENT);
  1330. }
  1331. void CodeEdit::remove_comment_delimiter(const String &p_start_key) {
  1332. _remove_delimiter(p_start_key, TYPE_COMMENT);
  1333. }
  1334. bool CodeEdit::has_comment_delimiter(const String &p_start_key) const {
  1335. return _has_delimiter(p_start_key, TYPE_COMMENT);
  1336. }
  1337. void CodeEdit::set_comment_delimiters(const TypedArray<String> &p_comment_delimiters) {
  1338. _set_delimiters(p_comment_delimiters, TYPE_COMMENT);
  1339. }
  1340. void CodeEdit::clear_comment_delimiters() {
  1341. _clear_delimiters(TYPE_COMMENT);
  1342. }
  1343. TypedArray<String> CodeEdit::get_comment_delimiters() const {
  1344. return _get_delimiters(TYPE_COMMENT);
  1345. }
  1346. int CodeEdit::is_in_comment(int p_line, int p_column) const {
  1347. return _is_in_delimiter(p_line, p_column, TYPE_COMMENT);
  1348. }
  1349. String CodeEdit::get_delimiter_start_key(int p_delimiter_idx) const {
  1350. ERR_FAIL_INDEX_V(p_delimiter_idx, delimiters.size(), "");
  1351. return delimiters[p_delimiter_idx].start_key;
  1352. }
  1353. String CodeEdit::get_delimiter_end_key(int p_delimiter_idx) const {
  1354. ERR_FAIL_INDEX_V(p_delimiter_idx, delimiters.size(), "");
  1355. return delimiters[p_delimiter_idx].end_key;
  1356. }
  1357. Point2 CodeEdit::get_delimiter_start_position(int p_line, int p_column) const {
  1358. if (delimiters.size() == 0) {
  1359. return Point2(-1, -1);
  1360. }
  1361. ERR_FAIL_INDEX_V(p_line, get_line_count(), Point2(-1, -1));
  1362. ERR_FAIL_COND_V(p_column - 1 > get_line(p_line).size(), Point2(-1, -1));
  1363. Point2 start_position;
  1364. start_position.y = -1;
  1365. start_position.x = -1;
  1366. bool in_region = ((p_line <= 0 || delimiter_cache[p_line - 1].size() < 1) ? -1 : delimiter_cache[p_line - 1].back()->value()) != -1;
  1367. /* Check the keys for this line. */
  1368. for (const KeyValue<int, int> &E : delimiter_cache[p_line]) {
  1369. if (E.key > p_column) {
  1370. break;
  1371. }
  1372. in_region = E.value != -1;
  1373. start_position.x = in_region ? E.key : -1;
  1374. }
  1375. /* Region was found on this line and is not a multiline continuation. */
  1376. int line_length = get_line(p_line).length();
  1377. if (start_position.x != -1 && line_length > 0 && start_position.x != line_length + 1) {
  1378. start_position.y = p_line;
  1379. return start_position;
  1380. }
  1381. /* Not in a region */
  1382. if (!in_region) {
  1383. return start_position;
  1384. }
  1385. /* Region starts on a previous line */
  1386. for (int i = p_line - 1; i >= 0; i--) {
  1387. if (delimiter_cache[i].size() < 1) {
  1388. continue;
  1389. }
  1390. start_position.y = i;
  1391. start_position.x = delimiter_cache[i].back()->key();
  1392. /* Make sure it's not a multiline continuation. */
  1393. line_length = get_line(i).length();
  1394. if (line_length > 0 && start_position.x != line_length + 1) {
  1395. break;
  1396. }
  1397. }
  1398. return start_position;
  1399. }
  1400. Point2 CodeEdit::get_delimiter_end_position(int p_line, int p_column) const {
  1401. if (delimiters.size() == 0) {
  1402. return Point2(-1, -1);
  1403. }
  1404. ERR_FAIL_INDEX_V(p_line, get_line_count(), Point2(-1, -1));
  1405. ERR_FAIL_COND_V(p_column - 1 > get_line(p_line).size(), Point2(-1, -1));
  1406. Point2 end_position;
  1407. end_position.y = -1;
  1408. end_position.x = -1;
  1409. int region = (p_line <= 0 || delimiter_cache[p_line - 1].size() < 1) ? -1 : delimiter_cache[p_line - 1].back()->value();
  1410. /* Check the keys for this line. */
  1411. for (const KeyValue<int, int> &E : delimiter_cache[p_line]) {
  1412. end_position.x = (E.value == -1) ? E.key : -1;
  1413. if (E.key > p_column) {
  1414. break;
  1415. }
  1416. region = E.value;
  1417. }
  1418. /* Region was found on this line and is not a multiline continuation. */
  1419. if (region != -1 && end_position.x != -1 && (delimiters[region].line_only || end_position.x != get_line(p_line).length() + 1)) {
  1420. end_position.y = p_line;
  1421. return end_position;
  1422. }
  1423. /* Not in a region */
  1424. if (region == -1) {
  1425. end_position.x = -1;
  1426. return end_position;
  1427. }
  1428. /* Region ends on a later line */
  1429. for (int i = p_line + 1; i < get_line_count(); i++) {
  1430. if (delimiter_cache[i].size() < 1 || delimiter_cache[i].front()->value() != -1) {
  1431. continue;
  1432. }
  1433. end_position.x = delimiter_cache[i].front()->key();
  1434. /* Make sure it's not a multiline continuation. */
  1435. if (get_line(i).length() > 0 && end_position.x != get_line(i).length() + 1) {
  1436. end_position.y = i;
  1437. break;
  1438. }
  1439. end_position.x = -1;
  1440. }
  1441. return end_position;
  1442. }
  1443. /* Code hint */
  1444. void CodeEdit::set_code_hint(const String &p_hint) {
  1445. code_hint = p_hint;
  1446. code_hint_xpos = -0xFFFF;
  1447. update();
  1448. }
  1449. void CodeEdit::set_code_hint_draw_below(bool p_below) {
  1450. code_hint_draw_below = p_below;
  1451. update();
  1452. }
  1453. /* Code Completion */
  1454. void CodeEdit::set_code_completion_enabled(bool p_enable) {
  1455. code_completion_enabled = p_enable;
  1456. }
  1457. bool CodeEdit::is_code_completion_enabled() const {
  1458. return code_completion_enabled;
  1459. }
  1460. void CodeEdit::set_code_completion_prefixes(const TypedArray<String> &p_prefixes) {
  1461. code_completion_prefixes.clear();
  1462. for (int i = 0; i < p_prefixes.size(); i++) {
  1463. const String prefix = p_prefixes[i];
  1464. ERR_CONTINUE_MSG(prefix.is_empty(), "Code completion prefix cannot be empty.");
  1465. code_completion_prefixes.insert(prefix[0]);
  1466. }
  1467. }
  1468. TypedArray<String> CodeEdit::get_code_completion_prefixes() const {
  1469. TypedArray<String> prefixes;
  1470. for (const Set<char32_t>::Element *E = code_completion_prefixes.front(); E; E = E->next()) {
  1471. prefixes.push_back(String::chr(E->get()));
  1472. }
  1473. return prefixes;
  1474. }
  1475. String CodeEdit::get_text_for_code_completion() const {
  1476. StringBuilder completion_text;
  1477. const int text_size = get_line_count();
  1478. for (int i = 0; i < text_size; i++) {
  1479. String line = get_line(i);
  1480. if (i == get_caret_line()) {
  1481. completion_text += line.substr(0, get_caret_column());
  1482. /* Not unicode, represents the caret. */
  1483. completion_text += String::chr(0xFFFF);
  1484. completion_text += line.substr(get_caret_column(), line.size());
  1485. } else {
  1486. completion_text += line;
  1487. }
  1488. if (i != text_size - 1) {
  1489. completion_text += "\n";
  1490. }
  1491. }
  1492. return completion_text.as_string();
  1493. }
  1494. void CodeEdit::request_code_completion(bool p_force) {
  1495. if (GDVIRTUAL_CALL(_request_code_completion, p_force)) {
  1496. return;
  1497. }
  1498. /* Don't re-query if all existing options are quoted types, eg path, signal. */
  1499. bool ignored = code_completion_active && !code_completion_options.is_empty();
  1500. if (ignored) {
  1501. ScriptCodeCompletionOption::Kind kind = ScriptCodeCompletionOption::KIND_PLAIN_TEXT;
  1502. const ScriptCodeCompletionOption *previous_option = nullptr;
  1503. for (int i = 0; i < code_completion_options.size(); i++) {
  1504. const ScriptCodeCompletionOption &current_option = code_completion_options[i];
  1505. if (!previous_option) {
  1506. previous_option = &current_option;
  1507. kind = current_option.kind;
  1508. }
  1509. if (previous_option->kind != current_option.kind) {
  1510. ignored = false;
  1511. break;
  1512. }
  1513. }
  1514. ignored = ignored && (kind == ScriptCodeCompletionOption::KIND_FILE_PATH || kind == ScriptCodeCompletionOption::KIND_NODE_PATH || kind == ScriptCodeCompletionOption::KIND_SIGNAL);
  1515. }
  1516. if (ignored) {
  1517. return;
  1518. }
  1519. if (p_force) {
  1520. emit_signal(SNAME("request_code_completion"));
  1521. return;
  1522. }
  1523. String line = get_line(get_caret_line());
  1524. int ofs = CLAMP(get_caret_column(), 0, line.length());
  1525. if (ofs > 0 && (is_in_string(get_caret_line(), ofs) != -1 || _is_char(line[ofs - 1]) || code_completion_prefixes.has(line[ofs - 1]))) {
  1526. emit_signal(SNAME("request_code_completion"));
  1527. } else if (ofs > 1 && line[ofs - 1] == ' ' && code_completion_prefixes.has(line[ofs - 2])) {
  1528. emit_signal(SNAME("request_code_completion"));
  1529. }
  1530. }
  1531. void CodeEdit::add_code_completion_option(CodeCompletionKind p_type, const String &p_display_text, const String &p_insert_text, const Color &p_text_color, const RES &p_icon, const Variant &p_value) {
  1532. ScriptCodeCompletionOption completion_option;
  1533. completion_option.kind = (ScriptCodeCompletionOption::Kind)p_type;
  1534. completion_option.display = p_display_text;
  1535. completion_option.insert_text = p_insert_text;
  1536. completion_option.font_color = p_text_color;
  1537. completion_option.icon = p_icon;
  1538. completion_option.default_value = p_value;
  1539. code_completion_option_submitted.push_back(completion_option);
  1540. }
  1541. void CodeEdit::update_code_completion_options(bool p_forced) {
  1542. code_completion_forced = p_forced;
  1543. code_completion_option_sources = code_completion_option_submitted;
  1544. code_completion_option_submitted.clear();
  1545. _filter_code_completion_candidates_impl();
  1546. }
  1547. TypedArray<Dictionary> CodeEdit::get_code_completion_options() const {
  1548. if (!code_completion_active) {
  1549. return TypedArray<Dictionary>();
  1550. }
  1551. TypedArray<Dictionary> completion_options;
  1552. completion_options.resize(code_completion_options.size());
  1553. for (int i = 0; i < code_completion_options.size(); i++) {
  1554. Dictionary option;
  1555. option["kind"] = code_completion_options[i].kind;
  1556. option["display_text"] = code_completion_options[i].display;
  1557. option["insert_text"] = code_completion_options[i].insert_text;
  1558. option["font_color"] = code_completion_options[i].font_color;
  1559. option["icon"] = code_completion_options[i].icon;
  1560. option["default_value"] = code_completion_options[i].default_value;
  1561. completion_options[i] = option;
  1562. }
  1563. return completion_options;
  1564. }
  1565. Dictionary CodeEdit::get_code_completion_option(int p_index) const {
  1566. if (!code_completion_active) {
  1567. return Dictionary();
  1568. }
  1569. ERR_FAIL_INDEX_V(p_index, code_completion_options.size(), Dictionary());
  1570. Dictionary option;
  1571. option["kind"] = code_completion_options[p_index].kind;
  1572. option["display_text"] = code_completion_options[p_index].display;
  1573. option["insert_text"] = code_completion_options[p_index].insert_text;
  1574. option["font_color"] = code_completion_options[p_index].font_color;
  1575. option["icon"] = code_completion_options[p_index].icon;
  1576. option["default_value"] = code_completion_options[p_index].default_value;
  1577. return option;
  1578. }
  1579. int CodeEdit::get_code_completion_selected_index() const {
  1580. return (code_completion_active) ? code_completion_current_selected : -1;
  1581. }
  1582. void CodeEdit::set_code_completion_selected_index(int p_index) {
  1583. if (!code_completion_active) {
  1584. return;
  1585. }
  1586. ERR_FAIL_INDEX(p_index, code_completion_options.size());
  1587. code_completion_current_selected = p_index;
  1588. update();
  1589. }
  1590. void CodeEdit::confirm_code_completion(bool p_replace) {
  1591. if (!is_editable() || !code_completion_active) {
  1592. return;
  1593. }
  1594. if (GDVIRTUAL_CALL(_confirm_code_completion, p_replace)) {
  1595. return;
  1596. }
  1597. begin_complex_operation();
  1598. int caret_line = get_caret_line();
  1599. const String &insert_text = code_completion_options[code_completion_current_selected].insert_text;
  1600. const String &display_text = code_completion_options[code_completion_current_selected].display;
  1601. if (p_replace) {
  1602. /* Find end of current section */
  1603. const String line = get_line(caret_line);
  1604. int caret_col = get_caret_column();
  1605. int caret_remove_line = caret_line;
  1606. bool merge_text = true;
  1607. int in_string = is_in_string(caret_line, caret_col);
  1608. if (in_string != -1) {
  1609. Point2 string_end = get_delimiter_end_position(caret_line, caret_col);
  1610. if (string_end.x != -1) {
  1611. merge_text = false;
  1612. caret_remove_line = string_end.y;
  1613. caret_col = string_end.x - 1;
  1614. }
  1615. }
  1616. if (merge_text) {
  1617. for (; caret_col < line.length(); caret_col++) {
  1618. if (!_is_char(line[caret_col])) {
  1619. break;
  1620. }
  1621. }
  1622. }
  1623. /* Replace. */
  1624. remove_text(caret_line, get_caret_column() - code_completion_base.length(), caret_remove_line, caret_col);
  1625. set_caret_column(get_caret_column() - code_completion_base.length(), false);
  1626. insert_text_at_caret(insert_text);
  1627. } else {
  1628. /* Get first non-matching char. */
  1629. const String line = get_line(caret_line);
  1630. int caret_col = get_caret_column();
  1631. int matching_chars = code_completion_base.length();
  1632. for (; matching_chars <= insert_text.length(); matching_chars++) {
  1633. if (caret_col >= line.length() || line[caret_col] != insert_text[matching_chars]) {
  1634. break;
  1635. }
  1636. caret_col++;
  1637. }
  1638. /* Remove base completion text. */
  1639. remove_text(caret_line, get_caret_column() - code_completion_base.length(), caret_line, get_caret_column());
  1640. set_caret_column(get_caret_column() - code_completion_base.length(), false);
  1641. /* Merge with text. */
  1642. insert_text_at_caret(insert_text.substr(0, code_completion_base.length()));
  1643. set_caret_column(caret_col, false);
  1644. insert_text_at_caret(insert_text.substr(matching_chars));
  1645. }
  1646. /* Handle merging of symbols eg strings, brackets. */
  1647. const String line = get_line(caret_line);
  1648. char32_t next_char = line[get_caret_column()];
  1649. char32_t last_completion_char = insert_text[insert_text.length() - 1];
  1650. char32_t last_completion_char_display = display_text[display_text.length() - 1];
  1651. int pre_brace_pair = get_caret_column() > 0 ? _get_auto_brace_pair_open_at_pos(caret_line, get_caret_column()) : -1;
  1652. int post_brace_pair = get_caret_column() < get_line(caret_line).length() ? _get_auto_brace_pair_close_at_pos(caret_line, get_caret_column()) : -1;
  1653. if (post_brace_pair != -1 && (last_completion_char == next_char || last_completion_char_display == next_char)) {
  1654. remove_text(caret_line, get_caret_column(), caret_line, get_caret_column() + 1);
  1655. }
  1656. if (pre_brace_pair != -1 && pre_brace_pair != post_brace_pair && (last_completion_char == next_char || last_completion_char_display == next_char)) {
  1657. remove_text(caret_line, get_caret_column(), caret_line, get_caret_column() + 1);
  1658. } else if (auto_brace_completion_enabled && pre_brace_pair != -1 && post_brace_pair == -1) {
  1659. insert_text_at_caret(auto_brace_completion_pairs[pre_brace_pair].close_key);
  1660. set_caret_column(get_caret_column() - auto_brace_completion_pairs[pre_brace_pair].close_key.length());
  1661. }
  1662. if (pre_brace_pair == -1 && post_brace_pair == -1 && get_caret_column() > 0 && get_caret_column() < get_line(caret_line).length()) {
  1663. pre_brace_pair = _get_auto_brace_pair_open_at_pos(caret_line, get_caret_column() + 1);
  1664. if (pre_brace_pair != -1 && pre_brace_pair == _get_auto_brace_pair_close_at_pos(caret_line, get_caret_column() - 1)) {
  1665. remove_text(caret_line, get_caret_column() - 2, caret_line, get_caret_column());
  1666. if (_get_auto_brace_pair_close_at_pos(caret_line, get_caret_column() - 1) != pre_brace_pair) {
  1667. set_caret_column(get_caret_column() - 1);
  1668. }
  1669. }
  1670. }
  1671. end_complex_operation();
  1672. cancel_code_completion();
  1673. if (code_completion_prefixes.has(last_completion_char)) {
  1674. request_code_completion();
  1675. }
  1676. }
  1677. void CodeEdit::cancel_code_completion() {
  1678. if (!code_completion_active) {
  1679. return;
  1680. }
  1681. code_completion_forced = false;
  1682. code_completion_active = false;
  1683. update();
  1684. }
  1685. /* Line length guidelines */
  1686. void CodeEdit::set_line_length_guidelines(TypedArray<int> p_guideline_columns) {
  1687. line_length_guideline_columns = p_guideline_columns;
  1688. update();
  1689. }
  1690. TypedArray<int> CodeEdit::get_line_length_guidelines() const {
  1691. return line_length_guideline_columns;
  1692. }
  1693. /* Symbol lookup */
  1694. void CodeEdit::set_symbol_lookup_on_click_enabled(bool p_enabled) {
  1695. symbol_lookup_on_click_enabled = p_enabled;
  1696. set_symbol_lookup_word_as_valid(false);
  1697. }
  1698. bool CodeEdit::is_symbol_lookup_on_click_enabled() const {
  1699. return symbol_lookup_on_click_enabled;
  1700. }
  1701. String CodeEdit::get_text_for_symbol_lookup() {
  1702. Point2i mp = get_local_mouse_pos();
  1703. Point2i pos = get_line_column_at_pos(mp);
  1704. int line = pos.y;
  1705. int col = pos.x;
  1706. StringBuilder lookup_text;
  1707. const int text_size = get_line_count();
  1708. for (int i = 0; i < text_size; i++) {
  1709. String text = get_line(i);
  1710. if (i == line) {
  1711. lookup_text += text.substr(0, col);
  1712. /* Not unicode, represents the cursor. */
  1713. lookup_text += String::chr(0xFFFF);
  1714. lookup_text += text.substr(col, text.size());
  1715. } else {
  1716. lookup_text += text;
  1717. }
  1718. if (i != text_size - 1) {
  1719. lookup_text += "\n";
  1720. }
  1721. }
  1722. return lookup_text.as_string();
  1723. }
  1724. void CodeEdit::set_symbol_lookup_word_as_valid(bool p_valid) {
  1725. symbol_lookup_word = p_valid ? symbol_lookup_new_word : "";
  1726. symbol_lookup_new_word = "";
  1727. if (lookup_symbol_word != symbol_lookup_word) {
  1728. _set_symbol_lookup_word(symbol_lookup_word);
  1729. }
  1730. }
  1731. void CodeEdit::_bind_methods() {
  1732. /* Indent management */
  1733. ClassDB::bind_method(D_METHOD("set_indent_size", "size"), &CodeEdit::set_indent_size);
  1734. ClassDB::bind_method(D_METHOD("get_indent_size"), &CodeEdit::get_indent_size);
  1735. ClassDB::bind_method(D_METHOD("set_indent_using_spaces", "use_spaces"), &CodeEdit::set_indent_using_spaces);
  1736. ClassDB::bind_method(D_METHOD("is_indent_using_spaces"), &CodeEdit::is_indent_using_spaces);
  1737. ClassDB::bind_method(D_METHOD("set_auto_indent_enabled", "enable"), &CodeEdit::set_auto_indent_enabled);
  1738. ClassDB::bind_method(D_METHOD("is_auto_indent_enabled"), &CodeEdit::is_auto_indent_enabled);
  1739. ClassDB::bind_method(D_METHOD("set_auto_indent_prefixes", "prefixes"), &CodeEdit::set_auto_indent_prefixes);
  1740. ClassDB::bind_method(D_METHOD("get_auto_indent_prefixes"), &CodeEdit::get_auto_indent_prefixes);
  1741. ClassDB::bind_method(D_METHOD("do_indent"), &CodeEdit::do_indent);
  1742. ClassDB::bind_method(D_METHOD("do_unindent"), &CodeEdit::do_unindent);
  1743. ClassDB::bind_method(D_METHOD("indent_lines"), &CodeEdit::indent_lines);
  1744. ClassDB::bind_method(D_METHOD("unindent_lines"), &CodeEdit::unindent_lines);
  1745. /* Auto brace completion */
  1746. ClassDB::bind_method(D_METHOD("set_auto_brace_completion_enabled", "enable"), &CodeEdit::set_auto_brace_completion_enabled);
  1747. ClassDB::bind_method(D_METHOD("is_auto_brace_completion_enabled"), &CodeEdit::is_auto_brace_completion_enabled);
  1748. ClassDB::bind_method(D_METHOD("set_highlight_matching_braces_enabled", "enable"), &CodeEdit::set_highlight_matching_braces_enabled);
  1749. ClassDB::bind_method(D_METHOD("is_highlight_matching_braces_enabled"), &CodeEdit::is_highlight_matching_braces_enabled);
  1750. ClassDB::bind_method(D_METHOD("add_auto_brace_completion_pair", "start_key", "end_key"), &CodeEdit::add_auto_brace_completion_pair);
  1751. ClassDB::bind_method(D_METHOD("set_auto_brace_completion_pairs", "pairs"), &CodeEdit::set_auto_brace_completion_pairs);
  1752. ClassDB::bind_method(D_METHOD("get_auto_brace_completion_pairs"), &CodeEdit::get_auto_brace_completion_pairs);
  1753. ClassDB::bind_method(D_METHOD("has_auto_brace_completion_open_key", "open_key"), &CodeEdit::has_auto_brace_completion_open_key);
  1754. ClassDB::bind_method(D_METHOD("has_auto_brace_completion_close_key", "close_key"), &CodeEdit::has_auto_brace_completion_close_key);
  1755. ClassDB::bind_method(D_METHOD("get_auto_brace_completion_close_key", "open_key"), &CodeEdit::get_auto_brace_completion_close_key);
  1756. /* Main Gutter */
  1757. ClassDB::bind_method(D_METHOD("_main_gutter_draw_callback"), &CodeEdit::_main_gutter_draw_callback);
  1758. ClassDB::bind_method(D_METHOD("set_draw_breakpoints_gutter", "enable"), &CodeEdit::set_draw_breakpoints_gutter);
  1759. ClassDB::bind_method(D_METHOD("is_drawing_breakpoints_gutter"), &CodeEdit::is_drawing_breakpoints_gutter);
  1760. ClassDB::bind_method(D_METHOD("set_draw_bookmarks_gutter", "enable"), &CodeEdit::set_draw_bookmarks_gutter);
  1761. ClassDB::bind_method(D_METHOD("is_drawing_bookmarks_gutter"), &CodeEdit::is_drawing_bookmarks_gutter);
  1762. ClassDB::bind_method(D_METHOD("set_draw_executing_lines_gutter", "enable"), &CodeEdit::set_draw_executing_lines_gutter);
  1763. ClassDB::bind_method(D_METHOD("is_drawing_executing_lines_gutter"), &CodeEdit::is_drawing_executing_lines_gutter);
  1764. // Breakpoints
  1765. ClassDB::bind_method(D_METHOD("set_line_as_breakpoint", "line", "breakpointed"), &CodeEdit::set_line_as_breakpoint);
  1766. ClassDB::bind_method(D_METHOD("is_line_breakpointed", "line"), &CodeEdit::is_line_breakpointed);
  1767. ClassDB::bind_method(D_METHOD("clear_breakpointed_lines"), &CodeEdit::clear_breakpointed_lines);
  1768. ClassDB::bind_method(D_METHOD("get_breakpointed_lines"), &CodeEdit::get_breakpointed_lines);
  1769. // Bookmarks
  1770. ClassDB::bind_method(D_METHOD("set_line_as_bookmarked", "line", "bookmarked"), &CodeEdit::set_line_as_bookmarked);
  1771. ClassDB::bind_method(D_METHOD("is_line_bookmarked", "line"), &CodeEdit::is_line_bookmarked);
  1772. ClassDB::bind_method(D_METHOD("clear_bookmarked_lines"), &CodeEdit::clear_bookmarked_lines);
  1773. ClassDB::bind_method(D_METHOD("get_bookmarked_lines"), &CodeEdit::get_bookmarked_lines);
  1774. // executing lines
  1775. ClassDB::bind_method(D_METHOD("set_line_as_executing", "line", "executing"), &CodeEdit::set_line_as_executing);
  1776. ClassDB::bind_method(D_METHOD("is_line_executing", "line"), &CodeEdit::is_line_executing);
  1777. ClassDB::bind_method(D_METHOD("clear_executing_lines"), &CodeEdit::clear_executing_lines);
  1778. ClassDB::bind_method(D_METHOD("get_executing_lines"), &CodeEdit::get_executing_lines);
  1779. /* Line numbers */
  1780. ClassDB::bind_method(D_METHOD("_line_number_draw_callback"), &CodeEdit::_line_number_draw_callback);
  1781. ClassDB::bind_method(D_METHOD("set_draw_line_numbers", "enable"), &CodeEdit::set_draw_line_numbers);
  1782. ClassDB::bind_method(D_METHOD("is_draw_line_numbers_enabled"), &CodeEdit::is_draw_line_numbers_enabled);
  1783. ClassDB::bind_method(D_METHOD("set_line_numbers_zero_padded", "enable"), &CodeEdit::set_line_numbers_zero_padded);
  1784. ClassDB::bind_method(D_METHOD("is_line_numbers_zero_padded"), &CodeEdit::is_line_numbers_zero_padded);
  1785. /* Fold Gutter */
  1786. ClassDB::bind_method(D_METHOD("_fold_gutter_draw_callback"), &CodeEdit::_fold_gutter_draw_callback);
  1787. ClassDB::bind_method(D_METHOD("set_draw_fold_gutter", "enable"), &CodeEdit::set_draw_fold_gutter);
  1788. ClassDB::bind_method(D_METHOD("is_drawing_fold_gutter"), &CodeEdit::is_drawing_fold_gutter);
  1789. /* Line folding */
  1790. ClassDB::bind_method(D_METHOD("set_line_folding_enabled", "enabled"), &CodeEdit::set_line_folding_enabled);
  1791. ClassDB::bind_method(D_METHOD("is_line_folding_enabled"), &CodeEdit::is_line_folding_enabled);
  1792. ClassDB::bind_method(D_METHOD("can_fold_line", "line"), &CodeEdit::can_fold_line);
  1793. ClassDB::bind_method(D_METHOD("fold_line", "line"), &CodeEdit::fold_line);
  1794. ClassDB::bind_method(D_METHOD("unfold_line", "line"), &CodeEdit::unfold_line);
  1795. ClassDB::bind_method(D_METHOD("fold_all_lines"), &CodeEdit::fold_all_lines);
  1796. ClassDB::bind_method(D_METHOD("unfold_all_lines"), &CodeEdit::unfold_all_lines);
  1797. ClassDB::bind_method(D_METHOD("toggle_foldable_line", "line"), &CodeEdit::toggle_foldable_line);
  1798. ClassDB::bind_method(D_METHOD("is_line_folded", "line"), &CodeEdit::is_line_folded);
  1799. ClassDB::bind_method(D_METHOD("get_folded_lines"), &CodeEdit::get_folded_lines);
  1800. /* Delimiters */
  1801. // Strings
  1802. ClassDB::bind_method(D_METHOD("add_string_delimiter", "start_key", "end_key", "line_only"), &CodeEdit::add_string_delimiter, DEFVAL(false));
  1803. ClassDB::bind_method(D_METHOD("remove_string_delimiter", "start_key"), &CodeEdit::remove_string_delimiter);
  1804. ClassDB::bind_method(D_METHOD("has_string_delimiter", "start_key"), &CodeEdit::has_string_delimiter);
  1805. ClassDB::bind_method(D_METHOD("set_string_delimiters", "string_delimiters"), &CodeEdit::set_string_delimiters);
  1806. ClassDB::bind_method(D_METHOD("clear_string_delimiters"), &CodeEdit::clear_string_delimiters);
  1807. ClassDB::bind_method(D_METHOD("get_string_delimiters"), &CodeEdit::get_string_delimiters);
  1808. ClassDB::bind_method(D_METHOD("is_in_string", "line", "column"), &CodeEdit::is_in_string, DEFVAL(-1));
  1809. // Comments
  1810. ClassDB::bind_method(D_METHOD("add_comment_delimiter", "start_key", "end_key", "line_only"), &CodeEdit::add_comment_delimiter, DEFVAL(false));
  1811. ClassDB::bind_method(D_METHOD("remove_comment_delimiter", "start_key"), &CodeEdit::remove_comment_delimiter);
  1812. ClassDB::bind_method(D_METHOD("has_comment_delimiter", "start_key"), &CodeEdit::has_comment_delimiter);
  1813. ClassDB::bind_method(D_METHOD("set_comment_delimiters", "comment_delimiters"), &CodeEdit::set_comment_delimiters);
  1814. ClassDB::bind_method(D_METHOD("clear_comment_delimiters"), &CodeEdit::clear_comment_delimiters);
  1815. ClassDB::bind_method(D_METHOD("get_comment_delimiters"), &CodeEdit::get_comment_delimiters);
  1816. ClassDB::bind_method(D_METHOD("is_in_comment", "line", "column"), &CodeEdit::is_in_comment, DEFVAL(-1));
  1817. // Util
  1818. ClassDB::bind_method(D_METHOD("get_delimiter_start_key", "delimiter_index"), &CodeEdit::get_delimiter_start_key);
  1819. ClassDB::bind_method(D_METHOD("get_delimiter_end_key", "delimiter_index"), &CodeEdit::get_delimiter_end_key);
  1820. ClassDB::bind_method(D_METHOD("get_delimiter_start_position", "line", "column"), &CodeEdit::get_delimiter_start_position);
  1821. ClassDB::bind_method(D_METHOD("get_delimiter_end_position", "line", "column"), &CodeEdit::get_delimiter_end_position);
  1822. /* Code hint */
  1823. ClassDB::bind_method(D_METHOD("set_code_hint", "code_hint"), &CodeEdit::set_code_hint);
  1824. ClassDB::bind_method(D_METHOD("set_code_hint_draw_below", "draw_below"), &CodeEdit::set_code_hint_draw_below);
  1825. /* Code Completion */
  1826. BIND_ENUM_CONSTANT(KIND_CLASS);
  1827. BIND_ENUM_CONSTANT(KIND_FUNCTION);
  1828. BIND_ENUM_CONSTANT(KIND_SIGNAL);
  1829. BIND_ENUM_CONSTANT(KIND_VARIABLE);
  1830. BIND_ENUM_CONSTANT(KIND_MEMBER);
  1831. BIND_ENUM_CONSTANT(KIND_ENUM);
  1832. BIND_ENUM_CONSTANT(KIND_CONSTANT);
  1833. BIND_ENUM_CONSTANT(KIND_NODE_PATH);
  1834. BIND_ENUM_CONSTANT(KIND_FILE_PATH);
  1835. BIND_ENUM_CONSTANT(KIND_PLAIN_TEXT);
  1836. ClassDB::bind_method(D_METHOD("get_text_for_code_completion"), &CodeEdit::get_text_for_code_completion);
  1837. ClassDB::bind_method(D_METHOD("request_code_completion", "force"), &CodeEdit::request_code_completion, DEFVAL(false));
  1838. ClassDB::bind_method(D_METHOD("add_code_completion_option", "type", "display_text", "insert_text", "text_color", "icon", "value"), &CodeEdit::add_code_completion_option, DEFVAL(Color(1, 1, 1)), DEFVAL(RES()), DEFVAL(Variant::NIL));
  1839. ClassDB::bind_method(D_METHOD("update_code_completion_options", "force"), &CodeEdit::update_code_completion_options);
  1840. ClassDB::bind_method(D_METHOD("get_code_completion_options"), &CodeEdit::get_code_completion_options);
  1841. ClassDB::bind_method(D_METHOD("get_code_completion_option", "index"), &CodeEdit::get_code_completion_option);
  1842. ClassDB::bind_method(D_METHOD("get_code_completion_selected_index"), &CodeEdit::get_code_completion_selected_index);
  1843. ClassDB::bind_method(D_METHOD("set_code_completion_selected_index", "index"), &CodeEdit::set_code_completion_selected_index);
  1844. ClassDB::bind_method(D_METHOD("confirm_code_completion", "replace"), &CodeEdit::confirm_code_completion, DEFVAL(false));
  1845. ClassDB::bind_method(D_METHOD("cancel_code_completion"), &CodeEdit::cancel_code_completion);
  1846. ClassDB::bind_method(D_METHOD("set_code_completion_enabled", "enable"), &CodeEdit::set_code_completion_enabled);
  1847. ClassDB::bind_method(D_METHOD("is_code_completion_enabled"), &CodeEdit::is_code_completion_enabled);
  1848. ClassDB::bind_method(D_METHOD("set_code_completion_prefixes", "prefixes"), &CodeEdit::set_code_completion_prefixes);
  1849. ClassDB::bind_method(D_METHOD("get_code_comletion_prefixes"), &CodeEdit::get_code_completion_prefixes);
  1850. // Overridable
  1851. GDVIRTUAL_BIND(_confirm_code_completion, "replace")
  1852. GDVIRTUAL_BIND(_request_code_completion, "force")
  1853. GDVIRTUAL_BIND(_filter_code_completion_candidates, "candidates")
  1854. /* Line length guidelines */
  1855. ClassDB::bind_method(D_METHOD("set_line_length_guidelines", "guideline_columns"), &CodeEdit::set_line_length_guidelines);
  1856. ClassDB::bind_method(D_METHOD("get_line_length_guidelines"), &CodeEdit::get_line_length_guidelines);
  1857. /* Symbol lookup */
  1858. ClassDB::bind_method(D_METHOD("set_symbol_lookup_on_click_enabled", "enable"), &CodeEdit::set_symbol_lookup_on_click_enabled);
  1859. ClassDB::bind_method(D_METHOD("is_symbol_lookup_on_click_enabled"), &CodeEdit::is_symbol_lookup_on_click_enabled);
  1860. ClassDB::bind_method(D_METHOD("get_text_for_symbol_lookup"), &CodeEdit::get_text_for_symbol_lookup);
  1861. ClassDB::bind_method(D_METHOD("set_symbol_lookup_word_as_valid", "valid"), &CodeEdit::set_symbol_lookup_word_as_valid);
  1862. /* Inspector */
  1863. ADD_PROPERTY(PropertyInfo(Variant::BOOL, "symbol_lookup_on_click"), "set_symbol_lookup_on_click_enabled", "is_symbol_lookup_on_click_enabled");
  1864. ADD_PROPERTY(PropertyInfo(Variant::BOOL, "line_folding"), "set_line_folding_enabled", "is_line_folding_enabled");
  1865. ADD_PROPERTY(PropertyInfo(Variant::PACKED_INT32_ARRAY, "line_length_guidelines"), "set_line_length_guidelines", "get_line_length_guidelines");
  1866. ADD_GROUP("Gutters", "gutters_");
  1867. ADD_PROPERTY(PropertyInfo(Variant::BOOL, "gutters_draw_breakpoints_gutter"), "set_draw_breakpoints_gutter", "is_drawing_breakpoints_gutter");
  1868. ADD_PROPERTY(PropertyInfo(Variant::BOOL, "gutters_draw_bookmarks"), "set_draw_bookmarks_gutter", "is_drawing_bookmarks_gutter");
  1869. ADD_PROPERTY(PropertyInfo(Variant::BOOL, "gutters_draw_executing_lines"), "set_draw_executing_lines_gutter", "is_drawing_executing_lines_gutter");
  1870. ADD_PROPERTY(PropertyInfo(Variant::BOOL, "gutters_draw_line_numbers"), "set_draw_line_numbers", "is_draw_line_numbers_enabled");
  1871. ADD_PROPERTY(PropertyInfo(Variant::BOOL, "gutters_zero_pad_line_numbers"), "set_line_numbers_zero_padded", "is_line_numbers_zero_padded");
  1872. ADD_PROPERTY(PropertyInfo(Variant::BOOL, "gutters_draw_fold_gutter"), "set_draw_fold_gutter", "is_drawing_fold_gutter");
  1873. ADD_GROUP("Delimiters", "delimiter_");
  1874. ADD_PROPERTY(PropertyInfo(Variant::PACKED_STRING_ARRAY, "delimiter_strings"), "set_string_delimiters", "get_string_delimiters");
  1875. ADD_PROPERTY(PropertyInfo(Variant::PACKED_STRING_ARRAY, "delimiter_comments"), "set_comment_delimiters", "get_comment_delimiters");
  1876. ADD_GROUP("Code Completion", "code_completion_");
  1877. ADD_PROPERTY(PropertyInfo(Variant::BOOL, "code_completion_enabled"), "set_code_completion_enabled", "is_code_completion_enabled");
  1878. ADD_PROPERTY(PropertyInfo(Variant::PACKED_STRING_ARRAY, "code_completion_prefixes"), "set_code_completion_prefixes", "get_code_comletion_prefixes");
  1879. ADD_GROUP("Indentation", "indent_");
  1880. ADD_PROPERTY(PropertyInfo(Variant::INT, "indent_size"), "set_indent_size", "get_indent_size");
  1881. ADD_PROPERTY(PropertyInfo(Variant::BOOL, "indent_use_spaces"), "set_indent_using_spaces", "is_indent_using_spaces");
  1882. ADD_PROPERTY(PropertyInfo(Variant::BOOL, "indent_automatic"), "set_auto_indent_enabled", "is_auto_indent_enabled");
  1883. ADD_PROPERTY(PropertyInfo(Variant::PACKED_STRING_ARRAY, "indent_automatic_prefixes"), "set_auto_indent_prefixes", "get_auto_indent_prefixes");
  1884. ADD_GROUP("Auto brace completion", "auto_brace_completion_");
  1885. ADD_PROPERTY(PropertyInfo(Variant::BOOL, "auto_brace_completion_enabled"), "set_auto_brace_completion_enabled", "is_auto_brace_completion_enabled");
  1886. ADD_PROPERTY(PropertyInfo(Variant::BOOL, "auto_brace_completion_highlight_matching"), "set_highlight_matching_braces_enabled", "is_highlight_matching_braces_enabled");
  1887. ADD_PROPERTY(PropertyInfo(Variant::DICTIONARY, "auto_brace_completion_pairs"), "set_auto_brace_completion_pairs", "get_auto_brace_completion_pairs");
  1888. /* Signals */
  1889. /* Gutters */
  1890. ADD_SIGNAL(MethodInfo("breakpoint_toggled", PropertyInfo(Variant::INT, "line")));
  1891. /* Code Completion */
  1892. ADD_SIGNAL(MethodInfo("request_code_completion"));
  1893. /* Symbol lookup */
  1894. ADD_SIGNAL(MethodInfo("symbol_lookup", PropertyInfo(Variant::STRING, "symbol"), PropertyInfo(Variant::INT, "line"), PropertyInfo(Variant::INT, "column")));
  1895. ADD_SIGNAL(MethodInfo("symbol_validate", PropertyInfo(Variant::STRING, "symbol")));
  1896. }
  1897. /* Auto brace completion */
  1898. int CodeEdit::_get_auto_brace_pair_open_at_pos(int p_line, int p_col) {
  1899. const String &line = get_line(p_line);
  1900. /* Should be fast enough, expecting low amount of pairs... */
  1901. for (int i = 0; i < auto_brace_completion_pairs.size(); i++) {
  1902. const String &open_key = auto_brace_completion_pairs[i].open_key;
  1903. if (p_col - open_key.length() < 0) {
  1904. continue;
  1905. }
  1906. bool is_match = true;
  1907. for (int j = 0; j < open_key.length(); j++) {
  1908. if (line[(p_col - 1) - j] != open_key[(open_key.length() - 1) - j]) {
  1909. is_match = false;
  1910. break;
  1911. }
  1912. }
  1913. if (is_match) {
  1914. return i;
  1915. }
  1916. }
  1917. return -1;
  1918. }
  1919. int CodeEdit::_get_auto_brace_pair_close_at_pos(int p_line, int p_col) {
  1920. const String &line = get_line(p_line);
  1921. /* Should be fast enough, expecting low amount of pairs... */
  1922. for (int i = 0; i < auto_brace_completion_pairs.size(); i++) {
  1923. if (p_col + auto_brace_completion_pairs[i].close_key.length() > line.length()) {
  1924. continue;
  1925. }
  1926. bool is_match = true;
  1927. for (int j = 0; j < auto_brace_completion_pairs[i].close_key.length(); j++) {
  1928. if (line[p_col + j] != auto_brace_completion_pairs[i].close_key[j]) {
  1929. is_match = false;
  1930. break;
  1931. }
  1932. }
  1933. if (is_match) {
  1934. return i;
  1935. }
  1936. }
  1937. return -1;
  1938. }
  1939. /* Gutters */
  1940. void CodeEdit::_gutter_clicked(int p_line, int p_gutter) {
  1941. if (p_gutter == main_gutter) {
  1942. if (draw_breakpoints) {
  1943. set_line_as_breakpoint(p_line, !is_line_breakpointed(p_line));
  1944. }
  1945. return;
  1946. }
  1947. if (p_gutter == line_number_gutter) {
  1948. set_selection_mode(TextEdit::SelectionMode::SELECTION_MODE_LINE, p_line, 0);
  1949. select(p_line, 0, p_line + 1, 0);
  1950. set_caret_line(p_line + 1);
  1951. set_caret_column(0);
  1952. return;
  1953. }
  1954. if (p_gutter == fold_gutter) {
  1955. if (is_line_folded(p_line)) {
  1956. unfold_line(p_line);
  1957. } else if (can_fold_line(p_line)) {
  1958. fold_line(p_line);
  1959. }
  1960. return;
  1961. }
  1962. }
  1963. void CodeEdit::_update_gutter_indexes() {
  1964. for (int i = 0; i < get_gutter_count(); i++) {
  1965. if (get_gutter_name(i) == "main_gutter") {
  1966. main_gutter = i;
  1967. continue;
  1968. }
  1969. if (get_gutter_name(i) == "line_numbers") {
  1970. line_number_gutter = i;
  1971. continue;
  1972. }
  1973. if (get_gutter_name(i) == "fold_gutter") {
  1974. fold_gutter = i;
  1975. continue;
  1976. }
  1977. }
  1978. }
  1979. /* Delimiters */
  1980. void CodeEdit::_update_delimiter_cache(int p_from_line, int p_to_line) {
  1981. if (delimiters.size() == 0) {
  1982. return;
  1983. }
  1984. int line_count = get_line_count();
  1985. if (p_to_line == -1) {
  1986. p_to_line = line_count;
  1987. }
  1988. int start_line = MIN(p_from_line, p_to_line);
  1989. int end_line = MAX(p_from_line, p_to_line);
  1990. /* Make sure delimiter_cache has all the lines. */
  1991. if (start_line != end_line) {
  1992. if (p_to_line < p_from_line) {
  1993. for (int i = end_line; i > start_line; i--) {
  1994. delimiter_cache.remove(i);
  1995. }
  1996. } else {
  1997. for (int i = start_line; i < end_line; i++) {
  1998. delimiter_cache.insert(i, Map<int, int>());
  1999. }
  2000. }
  2001. }
  2002. int in_region = -1;
  2003. for (int i = start_line; i < MIN(end_line + 1, line_count); i++) {
  2004. int current_end_region = (i <= 0 || delimiter_cache[i].size() < 1) ? -1 : delimiter_cache[i].back()->value();
  2005. in_region = (i <= 0 || delimiter_cache[i - 1].size() < 1) ? -1 : delimiter_cache[i - 1].back()->value();
  2006. const String &str = get_line(i);
  2007. const int line_length = str.length();
  2008. delimiter_cache.write[i].clear();
  2009. if (str.length() == 0) {
  2010. if (in_region != -1) {
  2011. delimiter_cache.write[i][0] = in_region;
  2012. }
  2013. if (i == end_line && current_end_region != in_region) {
  2014. end_line++;
  2015. end_line = MIN(end_line, line_count);
  2016. }
  2017. continue;
  2018. }
  2019. int end_region = -1;
  2020. for (int j = 0; j < line_length; j++) {
  2021. int from = j;
  2022. for (; from < line_length; from++) {
  2023. if (str[from] == '\\') {
  2024. from++;
  2025. continue;
  2026. }
  2027. break;
  2028. }
  2029. /* check if we are in entering a region */
  2030. bool same_line = false;
  2031. if (in_region == -1) {
  2032. for (int d = 0; d < delimiters.size(); d++) {
  2033. /* check there is enough room */
  2034. int chars_left = line_length - from;
  2035. int start_key_length = delimiters[d].start_key.length();
  2036. int end_key_length = delimiters[d].end_key.length();
  2037. if (chars_left < start_key_length) {
  2038. continue;
  2039. }
  2040. /* search the line */
  2041. bool match = true;
  2042. const char32_t *start_key = delimiters[d].start_key.get_data();
  2043. for (int k = 0; k < start_key_length; k++) {
  2044. if (start_key[k] != str[from + k]) {
  2045. match = false;
  2046. break;
  2047. }
  2048. }
  2049. if (!match) {
  2050. continue;
  2051. }
  2052. same_line = true;
  2053. in_region = d;
  2054. delimiter_cache.write[i][from + 1] = d;
  2055. from += start_key_length;
  2056. /* check if it's the whole line */
  2057. if (end_key_length == 0 || delimiters[d].line_only || from + end_key_length > line_length) {
  2058. j = line_length;
  2059. if (delimiters[d].line_only) {
  2060. delimiter_cache.write[i][line_length + 1] = -1;
  2061. } else {
  2062. end_region = in_region;
  2063. }
  2064. }
  2065. break;
  2066. }
  2067. if (j == line_length || in_region == -1) {
  2068. continue;
  2069. }
  2070. }
  2071. /* if we are in one find the end key */
  2072. /* search the line */
  2073. int region_end_index = -1;
  2074. int end_key_length = delimiters[in_region].end_key.length();
  2075. const char32_t *end_key = delimiters[in_region].end_key.get_data();
  2076. for (; from < line_length; from++) {
  2077. if (line_length - from < end_key_length) {
  2078. break;
  2079. }
  2080. if (!is_symbol(str[from])) {
  2081. continue;
  2082. }
  2083. if (str[from] == '\\') {
  2084. from++;
  2085. continue;
  2086. }
  2087. region_end_index = from;
  2088. for (int k = 0; k < end_key_length; k++) {
  2089. if (end_key[k] != str[from + k]) {
  2090. region_end_index = -1;
  2091. break;
  2092. }
  2093. }
  2094. if (region_end_index != -1) {
  2095. break;
  2096. }
  2097. }
  2098. j = from + (end_key_length - 1);
  2099. end_region = (region_end_index == -1) ? in_region : -1;
  2100. if (!same_line || region_end_index != -1) {
  2101. delimiter_cache.write[i][j + 1] = end_region;
  2102. }
  2103. in_region = -1;
  2104. }
  2105. if (i == end_line && current_end_region != end_region) {
  2106. end_line++;
  2107. end_line = MIN(end_line, line_count);
  2108. }
  2109. }
  2110. }
  2111. int CodeEdit::_is_in_delimiter(int p_line, int p_column, DelimiterType p_type) const {
  2112. if (delimiters.size() == 0) {
  2113. return -1;
  2114. }
  2115. ERR_FAIL_INDEX_V(p_line, get_line_count(), 0);
  2116. int region = (p_line <= 0 || delimiter_cache[p_line - 1].size() < 1) ? -1 : delimiter_cache[p_line - 1].back()->value();
  2117. bool in_region = region != -1 && delimiters[region].type == p_type;
  2118. for (Map<int, int>::Element *E = delimiter_cache[p_line].front(); E; E = E->next()) {
  2119. /* If column is specified, loop until the key is larger then the column. */
  2120. if (p_column != -1) {
  2121. if (E->key() > p_column) {
  2122. break;
  2123. }
  2124. in_region = E->value() != -1 && delimiters[E->value()].type == p_type;
  2125. region = in_region ? E->value() : -1;
  2126. continue;
  2127. }
  2128. /* If no column, calculate if the entire line is a region */
  2129. /* excluding whitespace. */
  2130. const String line = get_line(p_line);
  2131. if (!in_region) {
  2132. if (E->value() == -1 || delimiters[E->value()].type != p_type) {
  2133. break;
  2134. }
  2135. region = E->value();
  2136. in_region = true;
  2137. for (int i = E->key() - 2; i >= 0; i--) {
  2138. if (!_is_whitespace(line[i])) {
  2139. return -1;
  2140. }
  2141. }
  2142. }
  2143. if (delimiters[region].line_only) {
  2144. return region;
  2145. }
  2146. int end_col = E->key();
  2147. if (E->value() != -1) {
  2148. if (!E->next()) {
  2149. return region;
  2150. }
  2151. end_col = E->next()->key();
  2152. }
  2153. for (int i = end_col; i < line.length(); i++) {
  2154. if (!_is_whitespace(line[i])) {
  2155. return -1;
  2156. }
  2157. }
  2158. return region;
  2159. }
  2160. return in_region ? region : -1;
  2161. }
  2162. void CodeEdit::_add_delimiter(const String &p_start_key, const String &p_end_key, bool p_line_only, DelimiterType p_type) {
  2163. // If we are the editor allow "null" as a valid start key, otherwise users cannot add delimiters via the inspector.
  2164. if (!(Engine::get_singleton()->is_editor_hint() && p_start_key == "null")) {
  2165. ERR_FAIL_COND_MSG(p_start_key.is_empty(), "delimiter start key cannot be empty");
  2166. for (int i = 0; i < p_start_key.length(); i++) {
  2167. ERR_FAIL_COND_MSG(!is_symbol(p_start_key[i]), "delimiter must start with a symbol");
  2168. }
  2169. }
  2170. if (p_end_key.length() > 0) {
  2171. for (int i = 0; i < p_end_key.length(); i++) {
  2172. ERR_FAIL_COND_MSG(!is_symbol(p_end_key[i]), "delimiter must end with a symbol");
  2173. }
  2174. }
  2175. int at = 0;
  2176. for (int i = 0; i < delimiters.size(); i++) {
  2177. ERR_FAIL_COND_MSG(delimiters[i].start_key == p_start_key, "delimiter with start key '" + p_start_key + "' already exists.");
  2178. if (p_start_key.length() < delimiters[i].start_key.length()) {
  2179. at++;
  2180. }
  2181. }
  2182. Delimiter delimiter;
  2183. delimiter.type = p_type;
  2184. delimiter.start_key = p_start_key;
  2185. delimiter.end_key = p_end_key;
  2186. delimiter.line_only = p_line_only || p_end_key == "";
  2187. delimiters.insert(at, delimiter);
  2188. if (!setting_delimiters) {
  2189. delimiter_cache.clear();
  2190. _update_delimiter_cache();
  2191. }
  2192. }
  2193. void CodeEdit::_remove_delimiter(const String &p_start_key, DelimiterType p_type) {
  2194. for (int i = 0; i < delimiters.size(); i++) {
  2195. if (delimiters[i].start_key != p_start_key) {
  2196. continue;
  2197. }
  2198. if (delimiters[i].type != p_type) {
  2199. break;
  2200. }
  2201. delimiters.remove(i);
  2202. if (!setting_delimiters) {
  2203. delimiter_cache.clear();
  2204. _update_delimiter_cache();
  2205. }
  2206. break;
  2207. }
  2208. }
  2209. bool CodeEdit::_has_delimiter(const String &p_start_key, DelimiterType p_type) const {
  2210. for (int i = 0; i < delimiters.size(); i++) {
  2211. if (delimiters[i].start_key == p_start_key) {
  2212. return delimiters[i].type == p_type;
  2213. }
  2214. }
  2215. return false;
  2216. }
  2217. void CodeEdit::_set_delimiters(const TypedArray<String> &p_delimiters, DelimiterType p_type) {
  2218. setting_delimiters = true;
  2219. _clear_delimiters(p_type);
  2220. for (int i = 0; i < p_delimiters.size(); i++) {
  2221. String key = p_delimiters[i];
  2222. if (key.is_empty()) {
  2223. continue;
  2224. }
  2225. const String start_key = key.get_slice(" ", 0);
  2226. const String end_key = key.get_slice_count(" ") > 1 ? key.get_slice(" ", 1) : String();
  2227. _add_delimiter(start_key, end_key, end_key == "", p_type);
  2228. }
  2229. setting_delimiters = false;
  2230. _update_delimiter_cache();
  2231. }
  2232. void CodeEdit::_clear_delimiters(DelimiterType p_type) {
  2233. for (int i = delimiters.size() - 1; i >= 0; i--) {
  2234. if (delimiters[i].type == p_type) {
  2235. delimiters.remove(i);
  2236. }
  2237. }
  2238. delimiter_cache.clear();
  2239. if (!setting_delimiters) {
  2240. _update_delimiter_cache();
  2241. }
  2242. }
  2243. TypedArray<String> CodeEdit::_get_delimiters(DelimiterType p_type) const {
  2244. TypedArray<String> r_delimiters;
  2245. for (int i = 0; i < delimiters.size(); i++) {
  2246. if (delimiters[i].type != p_type) {
  2247. continue;
  2248. }
  2249. r_delimiters.push_back(delimiters[i].start_key + (delimiters[i].end_key.is_empty() ? "" : " " + delimiters[i].end_key));
  2250. }
  2251. return r_delimiters;
  2252. }
  2253. /* Code Completion */
  2254. void CodeEdit::_filter_code_completion_candidates_impl() {
  2255. int line_height = get_line_height();
  2256. if (GDVIRTUAL_IS_OVERRIDDEN(_filter_code_completion_candidates)) {
  2257. code_completion_options.clear();
  2258. code_completion_base = "";
  2259. /* Build options argument. */
  2260. TypedArray<Dictionary> completion_options_sources;
  2261. completion_options_sources.resize(code_completion_option_sources.size());
  2262. int i = 0;
  2263. for (const ScriptCodeCompletionOption &E : code_completion_option_sources) {
  2264. Dictionary option;
  2265. option["kind"] = E.kind;
  2266. option["display_text"] = E.display;
  2267. option["insert_text"] = E.insert_text;
  2268. option["font_color"] = E.font_color;
  2269. option["icon"] = E.icon;
  2270. option["default_value"] = E.default_value;
  2271. completion_options_sources[i] = option;
  2272. i++;
  2273. }
  2274. Array completion_options;
  2275. GDVIRTUAL_CALL(_filter_code_completion_candidates, completion_options_sources, completion_options);
  2276. /* No options to complete, cancel. */
  2277. if (completion_options.size() == 0) {
  2278. cancel_code_completion();
  2279. return;
  2280. }
  2281. /* Convert back into options. */
  2282. int max_width = 0;
  2283. for (i = 0; i < completion_options.size(); i++) {
  2284. ScriptCodeCompletionOption option;
  2285. option.kind = (ScriptCodeCompletionOption::Kind)(int)completion_options[i].get("kind");
  2286. option.display = completion_options[i].get("display_text");
  2287. option.insert_text = completion_options[i].get("insert_text");
  2288. option.font_color = completion_options[i].get("font_color");
  2289. option.icon = completion_options[i].get("icon");
  2290. option.default_value = completion_options[i].get("default_value");
  2291. int offset = 0;
  2292. if (option.default_value.get_type() == Variant::COLOR) {
  2293. offset = line_height;
  2294. }
  2295. max_width = MAX(max_width, font->get_string_size(option.display, font_size).width + offset);
  2296. code_completion_options.push_back(option);
  2297. }
  2298. code_completion_longest_line = MIN(max_width, code_completion_max_width * font_size);
  2299. code_completion_current_selected = 0;
  2300. code_completion_active = true;
  2301. update();
  2302. return;
  2303. }
  2304. const int caret_line = get_caret_line();
  2305. const int caret_column = get_caret_column();
  2306. const String line = get_line(caret_line);
  2307. if (caret_column > 0 && line[caret_column - 1] == '(' && !code_completion_forced) {
  2308. cancel_code_completion();
  2309. return;
  2310. }
  2311. /* Get string status, are we in one or at the close. */
  2312. int in_string = is_in_string(caret_line, caret_column);
  2313. int first_quote_col = -1;
  2314. if (in_string != -1) {
  2315. Point2 string_start_pos = get_delimiter_start_position(caret_line, caret_column);
  2316. first_quote_col = (string_start_pos.y == caret_line) ? string_start_pos.x : -1;
  2317. } else if (caret_column > 0) {
  2318. if (is_in_string(caret_line, caret_column - 1) != -1) {
  2319. first_quote_col = caret_column - 1;
  2320. }
  2321. }
  2322. int cofs = caret_column;
  2323. String string_to_complete;
  2324. bool prev_is_word = false;
  2325. /* Cancel if we are at the close of a string. */
  2326. if (caret_column > 0 && in_string == -1 && first_quote_col == cofs - 1) {
  2327. cancel_code_completion();
  2328. return;
  2329. /* In a string, therefore we are trying to complete the string text. */
  2330. } else if (in_string != -1 && first_quote_col != -1) {
  2331. int key_length = delimiters[in_string].start_key.length();
  2332. string_to_complete = line.substr(first_quote_col - key_length, (cofs - first_quote_col) + key_length);
  2333. /* If we have a space, previous word might be a keyword. eg "func |". */
  2334. } else if (cofs > 0 && line[cofs - 1] == ' ') {
  2335. int ofs = cofs - 1;
  2336. while (ofs > 0 && line[ofs] == ' ') {
  2337. ofs--;
  2338. }
  2339. prev_is_word = _is_char(line[ofs]);
  2340. /* Otherwise get current word and set cofs to the start. */
  2341. } else {
  2342. int start_cofs = cofs;
  2343. while (cofs > 0 && line[cofs - 1] > 32 && (line[cofs - 1] == '/' || _is_char(line[cofs - 1]))) {
  2344. cofs--;
  2345. }
  2346. string_to_complete = line.substr(cofs, start_cofs - cofs);
  2347. }
  2348. /* If all else fails, check for a prefix. */
  2349. /* Single space between caret and prefix is okay. */
  2350. bool prev_is_prefix = false;
  2351. if (cofs > 0 && code_completion_prefixes.has(line[cofs - 1])) {
  2352. prev_is_prefix = true;
  2353. } else if (cofs > 1 && line[cofs - 1] == ' ' && code_completion_prefixes.has(line[cofs - 2])) {
  2354. prev_is_prefix = true;
  2355. }
  2356. if (!prev_is_word && string_to_complete.is_empty() && (cofs == 0 || !prev_is_prefix)) {
  2357. cancel_code_completion();
  2358. return;
  2359. }
  2360. /* Filter Options. */
  2361. /* For now handle only tradional quoted strings. */
  2362. bool single_quote = in_string != -1 && first_quote_col > 0 && delimiters[in_string].start_key == "'";
  2363. code_completion_options.clear();
  2364. code_completion_base = string_to_complete;
  2365. Vector<ScriptCodeCompletionOption> completion_options_casei;
  2366. Vector<ScriptCodeCompletionOption> completion_options_subseq;
  2367. Vector<ScriptCodeCompletionOption> completion_options_subseq_casei;
  2368. int max_width = 0;
  2369. String string_to_complete_lower = string_to_complete.to_lower();
  2370. for (ScriptCodeCompletionOption &option : code_completion_option_sources) {
  2371. if (single_quote && option.display.is_quoted()) {
  2372. option.display = option.display.unquote().quote("'");
  2373. }
  2374. int offset = 0;
  2375. if (option.default_value.get_type() == Variant::COLOR) {
  2376. offset = line_height;
  2377. }
  2378. if (in_string != -1) {
  2379. String quote = single_quote ? "'" : "\"";
  2380. option.display = option.display.unquote().quote(quote);
  2381. option.insert_text = option.insert_text.unquote().quote(quote);
  2382. }
  2383. if (option.display.length() == 0) {
  2384. continue;
  2385. }
  2386. if (string_to_complete.length() == 0) {
  2387. code_completion_options.push_back(option);
  2388. max_width = MAX(max_width, font->get_string_size(option.display, font_size).width + offset);
  2389. continue;
  2390. }
  2391. /* This code works the same as:
  2392. if (option.display.begins_with(s)) {
  2393. completion_options.push_back(option);
  2394. } else if (option.display.to_lower().begins_with(s.to_lower())) {
  2395. completion_options_casei.push_back(option);
  2396. } else if (s.is_subsequence_of(option.display)) {
  2397. completion_options_subseq.push_back(option);
  2398. } else if (s.is_subsequence_ofi(option.display)) {
  2399. completion_options_subseq_casei.push_back(option);
  2400. }
  2401. But is more performant due to being inlined and looping over the characters only once
  2402. */
  2403. String display_lower = option.display.to_lower();
  2404. const char32_t *ssq = &string_to_complete[0];
  2405. const char32_t *ssq_lower = &string_to_complete_lower[0];
  2406. const char32_t *tgt = &option.display[0];
  2407. const char32_t *tgt_lower = &display_lower[0];
  2408. const char32_t *ssq_last_tgt = nullptr;
  2409. const char32_t *ssq_lower_last_tgt = nullptr;
  2410. for (; *tgt; tgt++, tgt_lower++) {
  2411. if (*ssq == *tgt) {
  2412. ssq++;
  2413. ssq_last_tgt = tgt;
  2414. }
  2415. if (*ssq_lower == *tgt_lower) {
  2416. ssq_lower++;
  2417. ssq_lower_last_tgt = tgt;
  2418. }
  2419. }
  2420. /* Matched the whole subsequence in s. */
  2421. if (!*ssq) {
  2422. /* Finished matching in the first s.length() characters. */
  2423. if (ssq_last_tgt == &option.display[string_to_complete.length() - 1]) {
  2424. code_completion_options.push_back(option);
  2425. } else {
  2426. completion_options_subseq.push_back(option);
  2427. }
  2428. max_width = MAX(max_width, font->get_string_size(option.display, font_size).width + offset);
  2429. /* Matched the whole subsequence in s_lower. */
  2430. } else if (!*ssq_lower) {
  2431. /* Finished matching in the first s.length() characters. */
  2432. if (ssq_lower_last_tgt == &option.display[string_to_complete.length() - 1]) {
  2433. completion_options_casei.push_back(option);
  2434. } else {
  2435. completion_options_subseq_casei.push_back(option);
  2436. }
  2437. max_width = MAX(max_width, font->get_string_size(option.display, font_size).width + offset);
  2438. }
  2439. }
  2440. code_completion_options.append_array(completion_options_casei);
  2441. code_completion_options.append_array(completion_options_subseq);
  2442. code_completion_options.append_array(completion_options_subseq_casei);
  2443. /* No options to complete, cancel. */
  2444. if (code_completion_options.size() == 0) {
  2445. cancel_code_completion();
  2446. return;
  2447. }
  2448. /* A perfect match, stop completion. */
  2449. if (code_completion_options.size() == 1 && string_to_complete == code_completion_options[0].display) {
  2450. cancel_code_completion();
  2451. return;
  2452. }
  2453. code_completion_longest_line = MIN(max_width, code_completion_max_width * font_size);
  2454. code_completion_current_selected = 0;
  2455. code_completion_active = true;
  2456. update();
  2457. }
  2458. void CodeEdit::_lines_edited_from(int p_from_line, int p_to_line) {
  2459. _update_delimiter_cache(p_from_line, p_to_line);
  2460. if (p_from_line == p_to_line) {
  2461. return;
  2462. }
  2463. lines_edited_changed += p_to_line - p_from_line;
  2464. lines_edited_from = (lines_edited_from == -1) ? MIN(p_from_line, p_to_line) : MIN(lines_edited_from, MIN(p_from_line, p_to_line));
  2465. lines_edited_to = (lines_edited_to == -1) ? MAX(p_from_line, p_to_line) : MAX(lines_edited_from, MAX(p_from_line, p_to_line));
  2466. }
  2467. void CodeEdit::_text_set() {
  2468. lines_edited_from = 0;
  2469. lines_edited_to = 9999;
  2470. _text_changed();
  2471. }
  2472. void CodeEdit::_text_changed() {
  2473. if (lines_edited_from == -1) {
  2474. return;
  2475. }
  2476. int lc = get_line_count();
  2477. line_number_digits = 1;
  2478. while (lc /= 10) {
  2479. line_number_digits++;
  2480. }
  2481. if (font.is_valid()) {
  2482. set_gutter_width(line_number_gutter, (line_number_digits + 1) * font->get_char_size('0', 0, font_size).width);
  2483. }
  2484. lc = get_line_count();
  2485. List<int> breakpoints;
  2486. breakpointed_lines.get_key_list(&breakpoints);
  2487. for (const int &line : breakpoints) {
  2488. if (line < lines_edited_from || (line < lc && is_line_breakpointed(line))) {
  2489. continue;
  2490. }
  2491. breakpointed_lines.erase(line);
  2492. emit_signal(SNAME("breakpoint_toggled"), line);
  2493. int next_line = line + lines_edited_changed;
  2494. if (next_line > -1 && next_line < lc && is_line_breakpointed(next_line)) {
  2495. emit_signal(SNAME("breakpoint_toggled"), next_line);
  2496. breakpointed_lines[next_line] = true;
  2497. continue;
  2498. }
  2499. }
  2500. lines_edited_from = -1;
  2501. lines_edited_to = -1;
  2502. lines_edited_changed = 0;
  2503. }
  2504. CodeEdit::CodeEdit() {
  2505. /* Indent management */
  2506. auto_indent_prefixes.insert(':');
  2507. auto_indent_prefixes.insert('{');
  2508. auto_indent_prefixes.insert('[');
  2509. auto_indent_prefixes.insert('(');
  2510. /* Auto brace completion */
  2511. add_auto_brace_completion_pair("(", ")");
  2512. add_auto_brace_completion_pair("{", "}");
  2513. add_auto_brace_completion_pair("[", "]");
  2514. add_auto_brace_completion_pair("\"", "\"");
  2515. add_auto_brace_completion_pair("\'", "\'");
  2516. /* Delimiter traking */
  2517. add_string_delimiter("\"", "\"", false);
  2518. add_string_delimiter("\'", "\'", false);
  2519. /* Text Direction */
  2520. set_layout_direction(LAYOUT_DIRECTION_LTR);
  2521. set_text_direction(TEXT_DIRECTION_LTR);
  2522. /* Gutters */
  2523. int gutter_idx = 0;
  2524. /* Main Gutter */
  2525. add_gutter();
  2526. set_gutter_name(gutter_idx, "main_gutter");
  2527. set_gutter_draw(gutter_idx, false);
  2528. set_gutter_overwritable(gutter_idx, true);
  2529. set_gutter_type(gutter_idx, GUTTER_TYPE_CUSTOM);
  2530. set_gutter_custom_draw(gutter_idx, this, "_main_gutter_draw_callback");
  2531. gutter_idx++;
  2532. /* Line numbers */
  2533. add_gutter();
  2534. set_gutter_name(gutter_idx, "line_numbers");
  2535. set_gutter_draw(gutter_idx, false);
  2536. set_gutter_type(gutter_idx, GUTTER_TYPE_CUSTOM);
  2537. set_gutter_custom_draw(gutter_idx, this, "_line_number_draw_callback");
  2538. gutter_idx++;
  2539. /* Fold Gutter */
  2540. add_gutter();
  2541. set_gutter_name(gutter_idx, "fold_gutter");
  2542. set_gutter_draw(gutter_idx, false);
  2543. set_gutter_type(gutter_idx, GUTTER_TYPE_CUSTOM);
  2544. set_gutter_custom_draw(gutter_idx, this, "_fold_gutter_draw_callback");
  2545. gutter_idx++;
  2546. connect("lines_edited_from", callable_mp(this, &CodeEdit::_lines_edited_from));
  2547. connect("text_set", callable_mp(this, &CodeEdit::_text_set));
  2548. connect("text_changed", callable_mp(this, &CodeEdit::_text_changed));
  2549. connect("gutter_clicked", callable_mp(this, &CodeEdit::_gutter_clicked));
  2550. connect("gutter_added", callable_mp(this, &CodeEdit::_update_gutter_indexes));
  2551. connect("gutter_removed", callable_mp(this, &CodeEdit::_update_gutter_indexes));
  2552. _update_gutter_indexes();
  2553. }
  2554. CodeEdit::~CodeEdit() {
  2555. }