text_server.cpp 91 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196
  1. /**************************************************************************/
  2. /* text_server.cpp */
  3. /**************************************************************************/
  4. /* This file is part of: */
  5. /* GODOT ENGINE */
  6. /* https://godotengine.org */
  7. /**************************************************************************/
  8. /* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
  9. /* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
  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 "servers/text_server.h"
  31. #include "text_server.compat.inc"
  32. #include "core/variant/typed_array.h"
  33. #include "servers/rendering_server.h"
  34. TextServerManager *TextServerManager::singleton = nullptr;
  35. void TextServerManager::_bind_methods() {
  36. ClassDB::bind_method(D_METHOD("add_interface", "interface"), &TextServerManager::add_interface);
  37. ClassDB::bind_method(D_METHOD("get_interface_count"), &TextServerManager::get_interface_count);
  38. ClassDB::bind_method(D_METHOD("remove_interface", "interface"), &TextServerManager::remove_interface);
  39. ClassDB::bind_method(D_METHOD("get_interface", "idx"), &TextServerManager::get_interface);
  40. ClassDB::bind_method(D_METHOD("get_interfaces"), &TextServerManager::get_interfaces);
  41. ClassDB::bind_method(D_METHOD("find_interface", "name"), &TextServerManager::find_interface);
  42. ClassDB::bind_method(D_METHOD("set_primary_interface", "index"), &TextServerManager::set_primary_interface);
  43. ClassDB::bind_method(D_METHOD("get_primary_interface"), &TextServerManager::get_primary_interface);
  44. ADD_SIGNAL(MethodInfo("interface_added", PropertyInfo(Variant::STRING_NAME, "interface_name")));
  45. ADD_SIGNAL(MethodInfo("interface_removed", PropertyInfo(Variant::STRING_NAME, "interface_name")));
  46. }
  47. void TextServerManager::add_interface(const Ref<TextServer> &p_interface) {
  48. ERR_FAIL_COND(p_interface.is_null());
  49. for (int i = 0; i < interfaces.size(); i++) {
  50. if (interfaces[i] == p_interface) {
  51. ERR_PRINT("TextServer: Interface was already added.");
  52. return;
  53. };
  54. };
  55. interfaces.push_back(p_interface);
  56. print_verbose("TextServer: Added interface \"" + p_interface->get_name() + "\"");
  57. emit_signal(SNAME("interface_added"), p_interface->get_name());
  58. }
  59. void TextServerManager::remove_interface(const Ref<TextServer> &p_interface) {
  60. ERR_FAIL_COND(p_interface.is_null());
  61. ERR_FAIL_COND_MSG(p_interface == primary_interface, "TextServer: Can't remove primary interface.");
  62. int idx = -1;
  63. for (int i = 0; i < interfaces.size(); i++) {
  64. if (interfaces[i] == p_interface) {
  65. idx = i;
  66. break;
  67. };
  68. };
  69. ERR_FAIL_COND_MSG(idx == -1, "Interface not found.");
  70. print_verbose("TextServer: Removed interface \"" + p_interface->get_name() + "\"");
  71. emit_signal(SNAME("interface_removed"), p_interface->get_name());
  72. interfaces.remove_at(idx);
  73. }
  74. int TextServerManager::get_interface_count() const {
  75. return interfaces.size();
  76. }
  77. Ref<TextServer> TextServerManager::get_interface(int p_index) const {
  78. ERR_FAIL_INDEX_V(p_index, interfaces.size(), nullptr);
  79. return interfaces[p_index];
  80. }
  81. Ref<TextServer> TextServerManager::find_interface(const String &p_name) const {
  82. int idx = -1;
  83. for (int i = 0; i < interfaces.size(); i++) {
  84. if (interfaces[i]->get_name() == p_name) {
  85. idx = i;
  86. break;
  87. };
  88. };
  89. ERR_FAIL_COND_V_MSG(idx == -1, nullptr, "Interface not found.");
  90. return interfaces[idx];
  91. }
  92. TypedArray<Dictionary> TextServerManager::get_interfaces() const {
  93. TypedArray<Dictionary> ret;
  94. for (int i = 0; i < interfaces.size(); i++) {
  95. Dictionary iface_info;
  96. iface_info["id"] = i;
  97. iface_info["name"] = interfaces[i]->get_name();
  98. ret.push_back(iface_info);
  99. };
  100. return ret;
  101. }
  102. void TextServerManager::set_primary_interface(const Ref<TextServer> &p_primary_interface) {
  103. if (p_primary_interface.is_null()) {
  104. print_verbose("TextServer: Clearing primary interface");
  105. primary_interface.unref();
  106. } else {
  107. primary_interface = p_primary_interface;
  108. print_verbose("TextServer: Primary interface set to: \"" + primary_interface->get_name() + "\".");
  109. if (OS::get_singleton()->get_main_loop()) {
  110. OS::get_singleton()->get_main_loop()->notification(MainLoop::NOTIFICATION_TEXT_SERVER_CHANGED);
  111. }
  112. }
  113. }
  114. TextServerManager::TextServerManager() {
  115. singleton = this;
  116. }
  117. TextServerManager::~TextServerManager() {
  118. if (primary_interface.is_valid()) {
  119. primary_interface.unref();
  120. }
  121. while (interfaces.size() > 0) {
  122. interfaces.remove_at(0);
  123. }
  124. singleton = nullptr;
  125. }
  126. /*************************************************************************/
  127. bool Glyph::operator==(const Glyph &p_a) const {
  128. return (p_a.index == index) && (p_a.font_rid == font_rid) && (p_a.font_size == font_size) && (p_a.start == start);
  129. }
  130. bool Glyph::operator!=(const Glyph &p_a) const {
  131. return (p_a.index != index) || (p_a.font_rid != font_rid) || (p_a.font_size != font_size) || (p_a.start != start);
  132. }
  133. bool Glyph::operator<(const Glyph &p_a) const {
  134. if (p_a.start == start) {
  135. if (p_a.count == count) {
  136. if ((p_a.flags & TextServer::GRAPHEME_IS_VIRTUAL) == TextServer::GRAPHEME_IS_VIRTUAL) {
  137. return true;
  138. } else {
  139. return false;
  140. }
  141. }
  142. return p_a.count > count;
  143. }
  144. return p_a.start < start;
  145. }
  146. bool Glyph::operator>(const Glyph &p_a) const {
  147. if (p_a.start == start) {
  148. if (p_a.count == count) {
  149. if ((p_a.flags & TextServer::GRAPHEME_IS_VIRTUAL) == TextServer::GRAPHEME_IS_VIRTUAL) {
  150. return false;
  151. } else {
  152. return true;
  153. }
  154. }
  155. return p_a.count < count;
  156. }
  157. return p_a.start > start;
  158. }
  159. void TextServer::_bind_methods() {
  160. ClassDB::bind_method(D_METHOD("has_feature", "feature"), &TextServer::has_feature);
  161. ClassDB::bind_method(D_METHOD("get_name"), &TextServer::get_name);
  162. ClassDB::bind_method(D_METHOD("get_features"), &TextServer::get_features);
  163. ClassDB::bind_method(D_METHOD("load_support_data", "filename"), &TextServer::load_support_data);
  164. ClassDB::bind_method(D_METHOD("get_support_data_filename"), &TextServer::get_support_data_filename);
  165. ClassDB::bind_method(D_METHOD("get_support_data_info"), &TextServer::get_support_data_info);
  166. ClassDB::bind_method(D_METHOD("save_support_data", "filename"), &TextServer::save_support_data);
  167. ClassDB::bind_method(D_METHOD("is_locale_right_to_left", "locale"), &TextServer::is_locale_right_to_left);
  168. ClassDB::bind_method(D_METHOD("name_to_tag", "name"), &TextServer::name_to_tag);
  169. ClassDB::bind_method(D_METHOD("tag_to_name", "tag"), &TextServer::tag_to_name);
  170. ClassDB::bind_method(D_METHOD("has", "rid"), &TextServer::has);
  171. ClassDB::bind_method(D_METHOD("free_rid", "rid"), &TextServer::free_rid);
  172. /* Font Interface */
  173. ClassDB::bind_method(D_METHOD("create_font"), &TextServer::create_font);
  174. ClassDB::bind_method(D_METHOD("create_font_linked_variation", "font_rid"), &TextServer::create_font_linked_variation);
  175. ClassDB::bind_method(D_METHOD("font_set_data", "font_rid", "data"), &TextServer::font_set_data);
  176. ClassDB::bind_method(D_METHOD("font_set_face_index", "font_rid", "face_index"), &TextServer::font_set_face_index);
  177. ClassDB::bind_method(D_METHOD("font_get_face_index", "font_rid"), &TextServer::font_get_face_index);
  178. ClassDB::bind_method(D_METHOD("font_get_face_count", "font_rid"), &TextServer::font_get_face_count);
  179. ClassDB::bind_method(D_METHOD("font_set_style", "font_rid", "style"), &TextServer::font_set_style);
  180. ClassDB::bind_method(D_METHOD("font_get_style", "font_rid"), &TextServer::font_get_style);
  181. ClassDB::bind_method(D_METHOD("font_set_name", "font_rid", "name"), &TextServer::font_set_name);
  182. ClassDB::bind_method(D_METHOD("font_get_name", "font_rid"), &TextServer::font_get_name);
  183. ClassDB::bind_method(D_METHOD("font_get_ot_name_strings", "font_rid"), &TextServer::font_get_ot_name_strings);
  184. ClassDB::bind_method(D_METHOD("font_set_style_name", "font_rid", "name"), &TextServer::font_set_style_name);
  185. ClassDB::bind_method(D_METHOD("font_get_style_name", "font_rid"), &TextServer::font_get_style_name);
  186. ClassDB::bind_method(D_METHOD("font_set_weight", "font_rid", "weight"), &TextServer::font_set_weight);
  187. ClassDB::bind_method(D_METHOD("font_get_weight", "font_rid"), &TextServer::font_get_weight);
  188. ClassDB::bind_method(D_METHOD("font_set_stretch", "font_rid", "weight"), &TextServer::font_set_stretch);
  189. ClassDB::bind_method(D_METHOD("font_get_stretch", "font_rid"), &TextServer::font_get_stretch);
  190. ClassDB::bind_method(D_METHOD("font_set_antialiasing", "font_rid", "antialiasing"), &TextServer::font_set_antialiasing);
  191. ClassDB::bind_method(D_METHOD("font_get_antialiasing", "font_rid"), &TextServer::font_get_antialiasing);
  192. ClassDB::bind_method(D_METHOD("font_set_disable_embedded_bitmaps", "font_rid", "disable_embedded_bitmaps"), &TextServer::font_set_disable_embedded_bitmaps);
  193. ClassDB::bind_method(D_METHOD("font_get_disable_embedded_bitmaps", "font_rid"), &TextServer::font_get_disable_embedded_bitmaps);
  194. ClassDB::bind_method(D_METHOD("font_set_generate_mipmaps", "font_rid", "generate_mipmaps"), &TextServer::font_set_generate_mipmaps);
  195. ClassDB::bind_method(D_METHOD("font_get_generate_mipmaps", "font_rid"), &TextServer::font_get_generate_mipmaps);
  196. ClassDB::bind_method(D_METHOD("font_set_multichannel_signed_distance_field", "font_rid", "msdf"), &TextServer::font_set_multichannel_signed_distance_field);
  197. ClassDB::bind_method(D_METHOD("font_is_multichannel_signed_distance_field", "font_rid"), &TextServer::font_is_multichannel_signed_distance_field);
  198. ClassDB::bind_method(D_METHOD("font_set_msdf_pixel_range", "font_rid", "msdf_pixel_range"), &TextServer::font_set_msdf_pixel_range);
  199. ClassDB::bind_method(D_METHOD("font_get_msdf_pixel_range", "font_rid"), &TextServer::font_get_msdf_pixel_range);
  200. ClassDB::bind_method(D_METHOD("font_set_msdf_size", "font_rid", "msdf_size"), &TextServer::font_set_msdf_size);
  201. ClassDB::bind_method(D_METHOD("font_get_msdf_size", "font_rid"), &TextServer::font_get_msdf_size);
  202. ClassDB::bind_method(D_METHOD("font_set_fixed_size", "font_rid", "fixed_size"), &TextServer::font_set_fixed_size);
  203. ClassDB::bind_method(D_METHOD("font_get_fixed_size", "font_rid"), &TextServer::font_get_fixed_size);
  204. ClassDB::bind_method(D_METHOD("font_set_fixed_size_scale_mode", "font_rid", "fixed_size_scale_mode"), &TextServer::font_set_fixed_size_scale_mode);
  205. ClassDB::bind_method(D_METHOD("font_get_fixed_size_scale_mode", "font_rid"), &TextServer::font_get_fixed_size_scale_mode);
  206. ClassDB::bind_method(D_METHOD("font_set_allow_system_fallback", "font_rid", "allow_system_fallback"), &TextServer::font_set_allow_system_fallback);
  207. ClassDB::bind_method(D_METHOD("font_is_allow_system_fallback", "font_rid"), &TextServer::font_is_allow_system_fallback);
  208. ClassDB::bind_method(D_METHOD("font_set_force_autohinter", "font_rid", "force_autohinter"), &TextServer::font_set_force_autohinter);
  209. ClassDB::bind_method(D_METHOD("font_is_force_autohinter", "font_rid"), &TextServer::font_is_force_autohinter);
  210. ClassDB::bind_method(D_METHOD("font_set_hinting", "font_rid", "hinting"), &TextServer::font_set_hinting);
  211. ClassDB::bind_method(D_METHOD("font_get_hinting", "font_rid"), &TextServer::font_get_hinting);
  212. ClassDB::bind_method(D_METHOD("font_set_subpixel_positioning", "font_rid", "subpixel_positioning"), &TextServer::font_set_subpixel_positioning);
  213. ClassDB::bind_method(D_METHOD("font_get_subpixel_positioning", "font_rid"), &TextServer::font_get_subpixel_positioning);
  214. ClassDB::bind_method(D_METHOD("font_set_embolden", "font_rid", "strength"), &TextServer::font_set_embolden);
  215. ClassDB::bind_method(D_METHOD("font_get_embolden", "font_rid"), &TextServer::font_get_embolden);
  216. ClassDB::bind_method(D_METHOD("font_set_spacing", "font_rid", "spacing", "value"), &TextServer::font_set_spacing);
  217. ClassDB::bind_method(D_METHOD("font_get_spacing", "font_rid", "spacing"), &TextServer::font_get_spacing);
  218. ClassDB::bind_method(D_METHOD("font_set_baseline_offset", "font_rid", "baseline_offset"), &TextServer::font_set_baseline_offset);
  219. ClassDB::bind_method(D_METHOD("font_get_baseline_offset", "font_rid"), &TextServer::font_get_baseline_offset);
  220. ClassDB::bind_method(D_METHOD("font_set_transform", "font_rid", "transform"), &TextServer::font_set_transform);
  221. ClassDB::bind_method(D_METHOD("font_get_transform", "font_rid"), &TextServer::font_get_transform);
  222. ClassDB::bind_method(D_METHOD("font_set_variation_coordinates", "font_rid", "variation_coordinates"), &TextServer::font_set_variation_coordinates);
  223. ClassDB::bind_method(D_METHOD("font_get_variation_coordinates", "font_rid"), &TextServer::font_get_variation_coordinates);
  224. ClassDB::bind_method(D_METHOD("font_set_oversampling", "font_rid", "oversampling"), &TextServer::font_set_oversampling);
  225. ClassDB::bind_method(D_METHOD("font_get_oversampling", "font_rid"), &TextServer::font_get_oversampling);
  226. ClassDB::bind_method(D_METHOD("font_get_size_cache_list", "font_rid"), &TextServer::font_get_size_cache_list);
  227. ClassDB::bind_method(D_METHOD("font_clear_size_cache", "font_rid"), &TextServer::font_clear_size_cache);
  228. ClassDB::bind_method(D_METHOD("font_remove_size_cache", "font_rid", "size"), &TextServer::font_remove_size_cache);
  229. ClassDB::bind_method(D_METHOD("font_set_ascent", "font_rid", "size", "ascent"), &TextServer::font_set_ascent);
  230. ClassDB::bind_method(D_METHOD("font_get_ascent", "font_rid", "size"), &TextServer::font_get_ascent);
  231. ClassDB::bind_method(D_METHOD("font_set_descent", "font_rid", "size", "descent"), &TextServer::font_set_descent);
  232. ClassDB::bind_method(D_METHOD("font_get_descent", "font_rid", "size"), &TextServer::font_get_descent);
  233. ClassDB::bind_method(D_METHOD("font_set_underline_position", "font_rid", "size", "underline_position"), &TextServer::font_set_underline_position);
  234. ClassDB::bind_method(D_METHOD("font_get_underline_position", "font_rid", "size"), &TextServer::font_get_underline_position);
  235. ClassDB::bind_method(D_METHOD("font_set_underline_thickness", "font_rid", "size", "underline_thickness"), &TextServer::font_set_underline_thickness);
  236. ClassDB::bind_method(D_METHOD("font_get_underline_thickness", "font_rid", "size"), &TextServer::font_get_underline_thickness);
  237. ClassDB::bind_method(D_METHOD("font_set_scale", "font_rid", "size", "scale"), &TextServer::font_set_scale);
  238. ClassDB::bind_method(D_METHOD("font_get_scale", "font_rid", "size"), &TextServer::font_get_scale);
  239. ClassDB::bind_method(D_METHOD("font_get_texture_count", "font_rid", "size"), &TextServer::font_get_texture_count);
  240. ClassDB::bind_method(D_METHOD("font_clear_textures", "font_rid", "size"), &TextServer::font_clear_textures);
  241. ClassDB::bind_method(D_METHOD("font_remove_texture", "font_rid", "size", "texture_index"), &TextServer::font_remove_texture);
  242. ClassDB::bind_method(D_METHOD("font_set_texture_image", "font_rid", "size", "texture_index", "image"), &TextServer::font_set_texture_image);
  243. ClassDB::bind_method(D_METHOD("font_get_texture_image", "font_rid", "size", "texture_index"), &TextServer::font_get_texture_image);
  244. ClassDB::bind_method(D_METHOD("font_set_texture_offsets", "font_rid", "size", "texture_index", "offset"), &TextServer::font_set_texture_offsets);
  245. ClassDB::bind_method(D_METHOD("font_get_texture_offsets", "font_rid", "size", "texture_index"), &TextServer::font_get_texture_offsets);
  246. ClassDB::bind_method(D_METHOD("font_get_glyph_list", "font_rid", "size"), &TextServer::font_get_glyph_list);
  247. ClassDB::bind_method(D_METHOD("font_clear_glyphs", "font_rid", "size"), &TextServer::font_clear_glyphs);
  248. ClassDB::bind_method(D_METHOD("font_remove_glyph", "font_rid", "size", "glyph"), &TextServer::font_remove_glyph);
  249. ClassDB::bind_method(D_METHOD("font_get_glyph_advance", "font_rid", "size", "glyph"), &TextServer::font_get_glyph_advance);
  250. ClassDB::bind_method(D_METHOD("font_set_glyph_advance", "font_rid", "size", "glyph", "advance"), &TextServer::font_set_glyph_advance);
  251. ClassDB::bind_method(D_METHOD("font_get_glyph_offset", "font_rid", "size", "glyph"), &TextServer::font_get_glyph_offset);
  252. ClassDB::bind_method(D_METHOD("font_set_glyph_offset", "font_rid", "size", "glyph", "offset"), &TextServer::font_set_glyph_offset);
  253. ClassDB::bind_method(D_METHOD("font_get_glyph_size", "font_rid", "size", "glyph"), &TextServer::font_get_glyph_size);
  254. ClassDB::bind_method(D_METHOD("font_set_glyph_size", "font_rid", "size", "glyph", "gl_size"), &TextServer::font_set_glyph_size);
  255. ClassDB::bind_method(D_METHOD("font_get_glyph_uv_rect", "font_rid", "size", "glyph"), &TextServer::font_get_glyph_uv_rect);
  256. ClassDB::bind_method(D_METHOD("font_set_glyph_uv_rect", "font_rid", "size", "glyph", "uv_rect"), &TextServer::font_set_glyph_uv_rect);
  257. ClassDB::bind_method(D_METHOD("font_get_glyph_texture_idx", "font_rid", "size", "glyph"), &TextServer::font_get_glyph_texture_idx);
  258. ClassDB::bind_method(D_METHOD("font_set_glyph_texture_idx", "font_rid", "size", "glyph", "texture_idx"), &TextServer::font_set_glyph_texture_idx);
  259. ClassDB::bind_method(D_METHOD("font_get_glyph_texture_rid", "font_rid", "size", "glyph"), &TextServer::font_get_glyph_texture_rid);
  260. ClassDB::bind_method(D_METHOD("font_get_glyph_texture_size", "font_rid", "size", "glyph"), &TextServer::font_get_glyph_texture_size);
  261. ClassDB::bind_method(D_METHOD("font_get_glyph_contours", "font", "size", "index"), &TextServer::font_get_glyph_contours);
  262. ClassDB::bind_method(D_METHOD("font_get_kerning_list", "font_rid", "size"), &TextServer::font_get_kerning_list);
  263. ClassDB::bind_method(D_METHOD("font_clear_kerning_map", "font_rid", "size"), &TextServer::font_clear_kerning_map);
  264. ClassDB::bind_method(D_METHOD("font_remove_kerning", "font_rid", "size", "glyph_pair"), &TextServer::font_remove_kerning);
  265. ClassDB::bind_method(D_METHOD("font_set_kerning", "font_rid", "size", "glyph_pair", "kerning"), &TextServer::font_set_kerning);
  266. ClassDB::bind_method(D_METHOD("font_get_kerning", "font_rid", "size", "glyph_pair"), &TextServer::font_get_kerning);
  267. ClassDB::bind_method(D_METHOD("font_get_glyph_index", "font_rid", "size", "char", "variation_selector"), &TextServer::font_get_glyph_index);
  268. ClassDB::bind_method(D_METHOD("font_get_char_from_glyph_index", "font_rid", "size", "glyph_index"), &TextServer::font_get_char_from_glyph_index);
  269. ClassDB::bind_method(D_METHOD("font_has_char", "font_rid", "char"), &TextServer::font_has_char);
  270. ClassDB::bind_method(D_METHOD("font_get_supported_chars", "font_rid"), &TextServer::font_get_supported_chars);
  271. ClassDB::bind_method(D_METHOD("font_render_range", "font_rid", "size", "start", "end"), &TextServer::font_render_range);
  272. ClassDB::bind_method(D_METHOD("font_render_glyph", "font_rid", "size", "index"), &TextServer::font_render_glyph);
  273. ClassDB::bind_method(D_METHOD("font_draw_glyph", "font_rid", "canvas", "size", "pos", "index", "color"), &TextServer::font_draw_glyph, DEFVAL(Color(1, 1, 1)));
  274. ClassDB::bind_method(D_METHOD("font_draw_glyph_outline", "font_rid", "canvas", "size", "outline_size", "pos", "index", "color"), &TextServer::font_draw_glyph_outline, DEFVAL(Color(1, 1, 1)));
  275. ClassDB::bind_method(D_METHOD("font_is_language_supported", "font_rid", "language"), &TextServer::font_is_language_supported);
  276. ClassDB::bind_method(D_METHOD("font_set_language_support_override", "font_rid", "language", "supported"), &TextServer::font_set_language_support_override);
  277. ClassDB::bind_method(D_METHOD("font_get_language_support_override", "font_rid", "language"), &TextServer::font_get_language_support_override);
  278. ClassDB::bind_method(D_METHOD("font_remove_language_support_override", "font_rid", "language"), &TextServer::font_remove_language_support_override);
  279. ClassDB::bind_method(D_METHOD("font_get_language_support_overrides", "font_rid"), &TextServer::font_get_language_support_overrides);
  280. ClassDB::bind_method(D_METHOD("font_is_script_supported", "font_rid", "script"), &TextServer::font_is_script_supported);
  281. ClassDB::bind_method(D_METHOD("font_set_script_support_override", "font_rid", "script", "supported"), &TextServer::font_set_script_support_override);
  282. ClassDB::bind_method(D_METHOD("font_get_script_support_override", "font_rid", "script"), &TextServer::font_get_script_support_override);
  283. ClassDB::bind_method(D_METHOD("font_remove_script_support_override", "font_rid", "script"), &TextServer::font_remove_script_support_override);
  284. ClassDB::bind_method(D_METHOD("font_get_script_support_overrides", "font_rid"), &TextServer::font_get_script_support_overrides);
  285. ClassDB::bind_method(D_METHOD("font_set_opentype_feature_overrides", "font_rid", "overrides"), &TextServer::font_set_opentype_feature_overrides);
  286. ClassDB::bind_method(D_METHOD("font_get_opentype_feature_overrides", "font_rid"), &TextServer::font_get_opentype_feature_overrides);
  287. ClassDB::bind_method(D_METHOD("font_supported_feature_list", "font_rid"), &TextServer::font_supported_feature_list);
  288. ClassDB::bind_method(D_METHOD("font_supported_variation_list", "font_rid"), &TextServer::font_supported_variation_list);
  289. ClassDB::bind_method(D_METHOD("font_get_global_oversampling"), &TextServer::font_get_global_oversampling);
  290. ClassDB::bind_method(D_METHOD("font_set_global_oversampling", "oversampling"), &TextServer::font_set_global_oversampling);
  291. ClassDB::bind_method(D_METHOD("get_hex_code_box_size", "size", "index"), &TextServer::get_hex_code_box_size);
  292. ClassDB::bind_method(D_METHOD("draw_hex_code_box", "canvas", "size", "pos", "index", "color"), &TextServer::draw_hex_code_box);
  293. /* Shaped text buffer interface */
  294. ClassDB::bind_method(D_METHOD("create_shaped_text", "direction", "orientation"), &TextServer::create_shaped_text, DEFVAL(DIRECTION_AUTO), DEFVAL(ORIENTATION_HORIZONTAL));
  295. ClassDB::bind_method(D_METHOD("shaped_text_clear", "rid"), &TextServer::shaped_text_clear);
  296. ClassDB::bind_method(D_METHOD("shaped_text_set_direction", "shaped", "direction"), &TextServer::shaped_text_set_direction, DEFVAL(DIRECTION_AUTO));
  297. ClassDB::bind_method(D_METHOD("shaped_text_get_direction", "shaped"), &TextServer::shaped_text_get_direction);
  298. ClassDB::bind_method(D_METHOD("shaped_text_get_inferred_direction", "shaped"), &TextServer::shaped_text_get_inferred_direction);
  299. ClassDB::bind_method(D_METHOD("shaped_text_set_bidi_override", "shaped", "override"), &TextServer::shaped_text_set_bidi_override);
  300. ClassDB::bind_method(D_METHOD("shaped_text_set_custom_punctuation", "shaped", "punct"), &TextServer::shaped_text_set_custom_punctuation);
  301. ClassDB::bind_method(D_METHOD("shaped_text_get_custom_punctuation", "shaped"), &TextServer::shaped_text_get_custom_punctuation);
  302. ClassDB::bind_method(D_METHOD("shaped_text_set_custom_ellipsis", "shaped", "char"), &TextServer::shaped_text_set_custom_ellipsis);
  303. ClassDB::bind_method(D_METHOD("shaped_text_get_custom_ellipsis", "shaped"), &TextServer::shaped_text_get_custom_ellipsis);
  304. ClassDB::bind_method(D_METHOD("shaped_text_set_orientation", "shaped", "orientation"), &TextServer::shaped_text_set_orientation, DEFVAL(ORIENTATION_HORIZONTAL));
  305. ClassDB::bind_method(D_METHOD("shaped_text_get_orientation", "shaped"), &TextServer::shaped_text_get_orientation);
  306. ClassDB::bind_method(D_METHOD("shaped_text_set_preserve_invalid", "shaped", "enabled"), &TextServer::shaped_text_set_preserve_invalid);
  307. ClassDB::bind_method(D_METHOD("shaped_text_get_preserve_invalid", "shaped"), &TextServer::shaped_text_get_preserve_invalid);
  308. ClassDB::bind_method(D_METHOD("shaped_text_set_preserve_control", "shaped", "enabled"), &TextServer::shaped_text_set_preserve_control);
  309. ClassDB::bind_method(D_METHOD("shaped_text_get_preserve_control", "shaped"), &TextServer::shaped_text_get_preserve_control);
  310. ClassDB::bind_method(D_METHOD("shaped_text_set_spacing", "shaped", "spacing", "value"), &TextServer::shaped_text_set_spacing);
  311. ClassDB::bind_method(D_METHOD("shaped_text_get_spacing", "shaped", "spacing"), &TextServer::shaped_text_get_spacing);
  312. ClassDB::bind_method(D_METHOD("shaped_text_add_string", "shaped", "text", "fonts", "size", "opentype_features", "language", "meta"), &TextServer::shaped_text_add_string, DEFVAL(Dictionary()), DEFVAL(""), DEFVAL(Variant()));
  313. ClassDB::bind_method(D_METHOD("shaped_text_add_object", "shaped", "key", "size", "inline_align", "length", "baseline"), &TextServer::shaped_text_add_object, DEFVAL(INLINE_ALIGNMENT_CENTER), DEFVAL(1), DEFVAL(0.0));
  314. ClassDB::bind_method(D_METHOD("shaped_text_resize_object", "shaped", "key", "size", "inline_align", "baseline"), &TextServer::shaped_text_resize_object, DEFVAL(INLINE_ALIGNMENT_CENTER), DEFVAL(0.0));
  315. ClassDB::bind_method(D_METHOD("shaped_get_span_count", "shaped"), &TextServer::shaped_get_span_count);
  316. ClassDB::bind_method(D_METHOD("shaped_get_span_meta", "shaped", "index"), &TextServer::shaped_get_span_meta);
  317. ClassDB::bind_method(D_METHOD("shaped_set_span_update_font", "shaped", "index", "fonts", "size", "opentype_features"), &TextServer::shaped_set_span_update_font, DEFVAL(Dictionary()));
  318. ClassDB::bind_method(D_METHOD("shaped_text_substr", "shaped", "start", "length"), &TextServer::shaped_text_substr);
  319. ClassDB::bind_method(D_METHOD("shaped_text_get_parent", "shaped"), &TextServer::shaped_text_get_parent);
  320. ClassDB::bind_method(D_METHOD("shaped_text_fit_to_width", "shaped", "width", "justification_flags"), &TextServer::shaped_text_fit_to_width, DEFVAL(JUSTIFICATION_WORD_BOUND | JUSTIFICATION_KASHIDA));
  321. ClassDB::bind_method(D_METHOD("shaped_text_tab_align", "shaped", "tab_stops"), &TextServer::shaped_text_tab_align);
  322. ClassDB::bind_method(D_METHOD("shaped_text_shape", "shaped"), &TextServer::shaped_text_shape);
  323. ClassDB::bind_method(D_METHOD("shaped_text_is_ready", "shaped"), &TextServer::shaped_text_is_ready);
  324. ClassDB::bind_method(D_METHOD("shaped_text_has_visible_chars", "shaped"), &TextServer::shaped_text_has_visible_chars);
  325. ClassDB::bind_method(D_METHOD("shaped_text_get_glyphs", "shaped"), &TextServer::_shaped_text_get_glyphs_wrapper);
  326. ClassDB::bind_method(D_METHOD("shaped_text_sort_logical", "shaped"), &TextServer::_shaped_text_sort_logical_wrapper);
  327. ClassDB::bind_method(D_METHOD("shaped_text_get_glyph_count", "shaped"), &TextServer::shaped_text_get_glyph_count);
  328. ClassDB::bind_method(D_METHOD("shaped_text_get_range", "shaped"), &TextServer::shaped_text_get_range);
  329. ClassDB::bind_method(D_METHOD("shaped_text_get_line_breaks_adv", "shaped", "width", "start", "once", "break_flags"), &TextServer::shaped_text_get_line_breaks_adv, DEFVAL(0), DEFVAL(true), DEFVAL(BREAK_MANDATORY | BREAK_WORD_BOUND));
  330. ClassDB::bind_method(D_METHOD("shaped_text_get_line_breaks", "shaped", "width", "start", "break_flags"), &TextServer::shaped_text_get_line_breaks, DEFVAL(0), DEFVAL(BREAK_MANDATORY | BREAK_WORD_BOUND));
  331. ClassDB::bind_method(D_METHOD("shaped_text_get_word_breaks", "shaped", "grapheme_flags", "skip_grapheme_flags"), &TextServer::shaped_text_get_word_breaks, DEFVAL(GRAPHEME_IS_SPACE | GRAPHEME_IS_PUNCTUATION), DEFVAL(GRAPHEME_IS_VIRTUAL));
  332. ClassDB::bind_method(D_METHOD("shaped_text_get_trim_pos", "shaped"), &TextServer::shaped_text_get_trim_pos);
  333. ClassDB::bind_method(D_METHOD("shaped_text_get_ellipsis_pos", "shaped"), &TextServer::shaped_text_get_ellipsis_pos);
  334. ClassDB::bind_method(D_METHOD("shaped_text_get_ellipsis_glyphs", "shaped"), &TextServer::_shaped_text_get_ellipsis_glyphs_wrapper);
  335. ClassDB::bind_method(D_METHOD("shaped_text_get_ellipsis_glyph_count", "shaped"), &TextServer::shaped_text_get_ellipsis_glyph_count);
  336. ClassDB::bind_method(D_METHOD("shaped_text_overrun_trim_to_width", "shaped", "width", "overrun_trim_flags"), &TextServer::shaped_text_overrun_trim_to_width, DEFVAL(0), DEFVAL(OVERRUN_NO_TRIM));
  337. ClassDB::bind_method(D_METHOD("shaped_text_get_objects", "shaped"), &TextServer::shaped_text_get_objects);
  338. ClassDB::bind_method(D_METHOD("shaped_text_get_object_rect", "shaped", "key"), &TextServer::shaped_text_get_object_rect);
  339. ClassDB::bind_method(D_METHOD("shaped_text_get_object_range", "shaped", "key"), &TextServer::shaped_text_get_object_range);
  340. ClassDB::bind_method(D_METHOD("shaped_text_get_object_glyph", "shaped", "key"), &TextServer::shaped_text_get_object_glyph);
  341. ClassDB::bind_method(D_METHOD("shaped_text_get_size", "shaped"), &TextServer::shaped_text_get_size);
  342. ClassDB::bind_method(D_METHOD("shaped_text_get_ascent", "shaped"), &TextServer::shaped_text_get_ascent);
  343. ClassDB::bind_method(D_METHOD("shaped_text_get_descent", "shaped"), &TextServer::shaped_text_get_descent);
  344. ClassDB::bind_method(D_METHOD("shaped_text_get_width", "shaped"), &TextServer::shaped_text_get_width);
  345. ClassDB::bind_method(D_METHOD("shaped_text_get_underline_position", "shaped"), &TextServer::shaped_text_get_underline_position);
  346. ClassDB::bind_method(D_METHOD("shaped_text_get_underline_thickness", "shaped"), &TextServer::shaped_text_get_underline_thickness);
  347. ClassDB::bind_method(D_METHOD("shaped_text_get_carets", "shaped", "position"), &TextServer::_shaped_text_get_carets_wrapper);
  348. ClassDB::bind_method(D_METHOD("shaped_text_get_selection", "shaped", "start", "end"), &TextServer::shaped_text_get_selection);
  349. ClassDB::bind_method(D_METHOD("shaped_text_hit_test_grapheme", "shaped", "coords"), &TextServer::shaped_text_hit_test_grapheme);
  350. ClassDB::bind_method(D_METHOD("shaped_text_hit_test_position", "shaped", "coords"), &TextServer::shaped_text_hit_test_position);
  351. ClassDB::bind_method(D_METHOD("shaped_text_get_grapheme_bounds", "shaped", "pos"), &TextServer::shaped_text_get_grapheme_bounds);
  352. ClassDB::bind_method(D_METHOD("shaped_text_next_grapheme_pos", "shaped", "pos"), &TextServer::shaped_text_next_grapheme_pos);
  353. ClassDB::bind_method(D_METHOD("shaped_text_prev_grapheme_pos", "shaped", "pos"), &TextServer::shaped_text_prev_grapheme_pos);
  354. ClassDB::bind_method(D_METHOD("shaped_text_get_character_breaks", "shaped"), &TextServer::shaped_text_get_character_breaks);
  355. ClassDB::bind_method(D_METHOD("shaped_text_next_character_pos", "shaped", "pos"), &TextServer::shaped_text_next_character_pos);
  356. ClassDB::bind_method(D_METHOD("shaped_text_prev_character_pos", "shaped", "pos"), &TextServer::shaped_text_prev_character_pos);
  357. ClassDB::bind_method(D_METHOD("shaped_text_closest_character_pos", "shaped", "pos"), &TextServer::shaped_text_closest_character_pos);
  358. ClassDB::bind_method(D_METHOD("shaped_text_draw", "shaped", "canvas", "pos", "clip_l", "clip_r", "color"), &TextServer::shaped_text_draw, DEFVAL(-1), DEFVAL(-1), DEFVAL(Color(1, 1, 1)));
  359. ClassDB::bind_method(D_METHOD("shaped_text_draw_outline", "shaped", "canvas", "pos", "clip_l", "clip_r", "outline_size", "color"), &TextServer::shaped_text_draw_outline, DEFVAL(-1), DEFVAL(-1), DEFVAL(1), DEFVAL(Color(1, 1, 1)));
  360. ClassDB::bind_method(D_METHOD("shaped_text_get_dominant_direction_in_range", "shaped", "start", "end"), &TextServer::shaped_text_get_dominant_direction_in_range);
  361. ClassDB::bind_method(D_METHOD("format_number", "number", "language"), &TextServer::format_number, DEFVAL(""));
  362. ClassDB::bind_method(D_METHOD("parse_number", "number", "language"), &TextServer::parse_number, DEFVAL(""));
  363. ClassDB::bind_method(D_METHOD("percent_sign", "language"), &TextServer::percent_sign, DEFVAL(""));
  364. ClassDB::bind_method(D_METHOD("string_get_word_breaks", "string", "language", "chars_per_line"), &TextServer::string_get_word_breaks, DEFVAL(""), DEFVAL(0));
  365. ClassDB::bind_method(D_METHOD("string_get_character_breaks", "string", "language"), &TextServer::string_get_character_breaks, DEFVAL(""));
  366. ClassDB::bind_method(D_METHOD("is_confusable", "string", "dict"), &TextServer::is_confusable);
  367. ClassDB::bind_method(D_METHOD("spoof_check", "string"), &TextServer::spoof_check);
  368. ClassDB::bind_method(D_METHOD("strip_diacritics", "string"), &TextServer::strip_diacritics);
  369. ClassDB::bind_method(D_METHOD("is_valid_identifier", "string"), &TextServer::is_valid_identifier);
  370. ClassDB::bind_method(D_METHOD("is_valid_letter", "unicode"), &TextServer::is_valid_letter);
  371. ClassDB::bind_method(D_METHOD("string_to_upper", "string", "language"), &TextServer::string_to_upper, DEFVAL(""));
  372. ClassDB::bind_method(D_METHOD("string_to_lower", "string", "language"), &TextServer::string_to_lower, DEFVAL(""));
  373. ClassDB::bind_method(D_METHOD("string_to_title", "string", "language"), &TextServer::string_to_title, DEFVAL(""));
  374. ClassDB::bind_method(D_METHOD("parse_structured_text", "parser_type", "args", "text"), &TextServer::parse_structured_text);
  375. /* Font AA */
  376. BIND_ENUM_CONSTANT(FONT_ANTIALIASING_NONE);
  377. BIND_ENUM_CONSTANT(FONT_ANTIALIASING_GRAY);
  378. BIND_ENUM_CONSTANT(FONT_ANTIALIASING_LCD);
  379. BIND_ENUM_CONSTANT(FONT_LCD_SUBPIXEL_LAYOUT_NONE);
  380. BIND_ENUM_CONSTANT(FONT_LCD_SUBPIXEL_LAYOUT_HRGB);
  381. BIND_ENUM_CONSTANT(FONT_LCD_SUBPIXEL_LAYOUT_HBGR);
  382. BIND_ENUM_CONSTANT(FONT_LCD_SUBPIXEL_LAYOUT_VRGB);
  383. BIND_ENUM_CONSTANT(FONT_LCD_SUBPIXEL_LAYOUT_VBGR);
  384. BIND_ENUM_CONSTANT(FONT_LCD_SUBPIXEL_LAYOUT_MAX);
  385. /* Direction */
  386. BIND_ENUM_CONSTANT(DIRECTION_AUTO);
  387. BIND_ENUM_CONSTANT(DIRECTION_LTR);
  388. BIND_ENUM_CONSTANT(DIRECTION_RTL);
  389. BIND_ENUM_CONSTANT(DIRECTION_INHERITED);
  390. /* Orientation */
  391. BIND_ENUM_CONSTANT(ORIENTATION_HORIZONTAL);
  392. BIND_ENUM_CONSTANT(ORIENTATION_VERTICAL);
  393. /* JustificationFlag */
  394. BIND_BITFIELD_FLAG(JUSTIFICATION_NONE);
  395. BIND_BITFIELD_FLAG(JUSTIFICATION_KASHIDA);
  396. BIND_BITFIELD_FLAG(JUSTIFICATION_WORD_BOUND);
  397. BIND_BITFIELD_FLAG(JUSTIFICATION_TRIM_EDGE_SPACES);
  398. BIND_BITFIELD_FLAG(JUSTIFICATION_AFTER_LAST_TAB);
  399. BIND_BITFIELD_FLAG(JUSTIFICATION_CONSTRAIN_ELLIPSIS);
  400. BIND_BITFIELD_FLAG(JUSTIFICATION_SKIP_LAST_LINE);
  401. BIND_BITFIELD_FLAG(JUSTIFICATION_SKIP_LAST_LINE_WITH_VISIBLE_CHARS);
  402. BIND_BITFIELD_FLAG(JUSTIFICATION_DO_NOT_SKIP_SINGLE_LINE);
  403. /* AutowrapMode */
  404. BIND_ENUM_CONSTANT(AUTOWRAP_OFF);
  405. BIND_ENUM_CONSTANT(AUTOWRAP_ARBITRARY);
  406. BIND_ENUM_CONSTANT(AUTOWRAP_WORD);
  407. BIND_ENUM_CONSTANT(AUTOWRAP_WORD_SMART);
  408. /* LineBreakFlag */
  409. BIND_BITFIELD_FLAG(BREAK_NONE);
  410. BIND_BITFIELD_FLAG(BREAK_MANDATORY);
  411. BIND_BITFIELD_FLAG(BREAK_WORD_BOUND);
  412. BIND_BITFIELD_FLAG(BREAK_GRAPHEME_BOUND);
  413. BIND_BITFIELD_FLAG(BREAK_ADAPTIVE);
  414. BIND_BITFIELD_FLAG(BREAK_TRIM_EDGE_SPACES);
  415. BIND_BITFIELD_FLAG(BREAK_TRIM_INDENT);
  416. /* VisibleCharactersBehavior */
  417. BIND_ENUM_CONSTANT(VC_CHARS_BEFORE_SHAPING);
  418. BIND_ENUM_CONSTANT(VC_CHARS_AFTER_SHAPING);
  419. BIND_ENUM_CONSTANT(VC_GLYPHS_AUTO);
  420. BIND_ENUM_CONSTANT(VC_GLYPHS_LTR);
  421. BIND_ENUM_CONSTANT(VC_GLYPHS_RTL);
  422. /* OverrunBehavior */
  423. BIND_ENUM_CONSTANT(OVERRUN_NO_TRIMMING);
  424. BIND_ENUM_CONSTANT(OVERRUN_TRIM_CHAR);
  425. BIND_ENUM_CONSTANT(OVERRUN_TRIM_WORD);
  426. BIND_ENUM_CONSTANT(OVERRUN_TRIM_ELLIPSIS);
  427. BIND_ENUM_CONSTANT(OVERRUN_TRIM_WORD_ELLIPSIS);
  428. /* TextOverrunFlag */
  429. BIND_BITFIELD_FLAG(OVERRUN_NO_TRIM);
  430. BIND_BITFIELD_FLAG(OVERRUN_TRIM);
  431. BIND_BITFIELD_FLAG(OVERRUN_TRIM_WORD_ONLY);
  432. BIND_BITFIELD_FLAG(OVERRUN_ADD_ELLIPSIS);
  433. BIND_BITFIELD_FLAG(OVERRUN_ENFORCE_ELLIPSIS);
  434. BIND_BITFIELD_FLAG(OVERRUN_JUSTIFICATION_AWARE);
  435. /* GraphemeFlag */
  436. BIND_BITFIELD_FLAG(GRAPHEME_IS_VALID);
  437. BIND_BITFIELD_FLAG(GRAPHEME_IS_RTL);
  438. BIND_BITFIELD_FLAG(GRAPHEME_IS_VIRTUAL);
  439. BIND_BITFIELD_FLAG(GRAPHEME_IS_SPACE);
  440. BIND_BITFIELD_FLAG(GRAPHEME_IS_BREAK_HARD);
  441. BIND_BITFIELD_FLAG(GRAPHEME_IS_BREAK_SOFT);
  442. BIND_BITFIELD_FLAG(GRAPHEME_IS_TAB);
  443. BIND_BITFIELD_FLAG(GRAPHEME_IS_ELONGATION);
  444. BIND_BITFIELD_FLAG(GRAPHEME_IS_PUNCTUATION);
  445. BIND_BITFIELD_FLAG(GRAPHEME_IS_UNDERSCORE);
  446. BIND_BITFIELD_FLAG(GRAPHEME_IS_CONNECTED);
  447. BIND_BITFIELD_FLAG(GRAPHEME_IS_SAFE_TO_INSERT_TATWEEL);
  448. BIND_BITFIELD_FLAG(GRAPHEME_IS_EMBEDDED_OBJECT);
  449. BIND_BITFIELD_FLAG(GRAPHEME_IS_SOFT_HYPHEN);
  450. /* Hinting */
  451. BIND_ENUM_CONSTANT(HINTING_NONE);
  452. BIND_ENUM_CONSTANT(HINTING_LIGHT);
  453. BIND_ENUM_CONSTANT(HINTING_NORMAL);
  454. /* SubpixelPositioning */
  455. BIND_ENUM_CONSTANT(SUBPIXEL_POSITIONING_DISABLED);
  456. BIND_ENUM_CONSTANT(SUBPIXEL_POSITIONING_AUTO);
  457. BIND_ENUM_CONSTANT(SUBPIXEL_POSITIONING_ONE_HALF);
  458. BIND_ENUM_CONSTANT(SUBPIXEL_POSITIONING_ONE_QUARTER);
  459. BIND_ENUM_CONSTANT(SUBPIXEL_POSITIONING_ONE_HALF_MAX_SIZE);
  460. BIND_ENUM_CONSTANT(SUBPIXEL_POSITIONING_ONE_QUARTER_MAX_SIZE);
  461. /* Feature */
  462. BIND_ENUM_CONSTANT(FEATURE_SIMPLE_LAYOUT);
  463. BIND_ENUM_CONSTANT(FEATURE_BIDI_LAYOUT);
  464. BIND_ENUM_CONSTANT(FEATURE_VERTICAL_LAYOUT);
  465. BIND_ENUM_CONSTANT(FEATURE_SHAPING);
  466. BIND_ENUM_CONSTANT(FEATURE_KASHIDA_JUSTIFICATION);
  467. BIND_ENUM_CONSTANT(FEATURE_BREAK_ITERATORS);
  468. BIND_ENUM_CONSTANT(FEATURE_FONT_BITMAP);
  469. BIND_ENUM_CONSTANT(FEATURE_FONT_DYNAMIC);
  470. BIND_ENUM_CONSTANT(FEATURE_FONT_MSDF);
  471. BIND_ENUM_CONSTANT(FEATURE_FONT_SYSTEM);
  472. BIND_ENUM_CONSTANT(FEATURE_FONT_VARIABLE);
  473. BIND_ENUM_CONSTANT(FEATURE_CONTEXT_SENSITIVE_CASE_CONVERSION);
  474. BIND_ENUM_CONSTANT(FEATURE_USE_SUPPORT_DATA);
  475. BIND_ENUM_CONSTANT(FEATURE_UNICODE_IDENTIFIERS);
  476. BIND_ENUM_CONSTANT(FEATURE_UNICODE_SECURITY);
  477. /* FT Contour Point Types */
  478. BIND_ENUM_CONSTANT(CONTOUR_CURVE_TAG_ON);
  479. BIND_ENUM_CONSTANT(CONTOUR_CURVE_TAG_OFF_CONIC);
  480. BIND_ENUM_CONSTANT(CONTOUR_CURVE_TAG_OFF_CUBIC);
  481. /* Font Spacing */
  482. BIND_ENUM_CONSTANT(SPACING_GLYPH);
  483. BIND_ENUM_CONSTANT(SPACING_SPACE);
  484. BIND_ENUM_CONSTANT(SPACING_TOP);
  485. BIND_ENUM_CONSTANT(SPACING_BOTTOM);
  486. BIND_ENUM_CONSTANT(SPACING_MAX);
  487. /* Font Style */
  488. BIND_BITFIELD_FLAG(FONT_BOLD);
  489. BIND_BITFIELD_FLAG(FONT_ITALIC);
  490. BIND_BITFIELD_FLAG(FONT_FIXED_WIDTH);
  491. /* Structured text parser */
  492. BIND_ENUM_CONSTANT(STRUCTURED_TEXT_DEFAULT);
  493. BIND_ENUM_CONSTANT(STRUCTURED_TEXT_URI);
  494. BIND_ENUM_CONSTANT(STRUCTURED_TEXT_FILE);
  495. BIND_ENUM_CONSTANT(STRUCTURED_TEXT_EMAIL);
  496. BIND_ENUM_CONSTANT(STRUCTURED_TEXT_LIST);
  497. BIND_ENUM_CONSTANT(STRUCTURED_TEXT_GDSCRIPT);
  498. BIND_ENUM_CONSTANT(STRUCTURED_TEXT_CUSTOM);
  499. /* Fixed size scale mode */
  500. BIND_ENUM_CONSTANT(FIXED_SIZE_SCALE_DISABLE);
  501. BIND_ENUM_CONSTANT(FIXED_SIZE_SCALE_INTEGER_ONLY);
  502. BIND_ENUM_CONSTANT(FIXED_SIZE_SCALE_ENABLED);
  503. }
  504. _FORCE_INLINE_ int32_t ot_tag_from_string(const char *p_str, int p_len) {
  505. char tag[4];
  506. uint32_t i;
  507. if (!p_str || !p_len || !*p_str) {
  508. return OT_TAG(0, 0, 0, 0);
  509. }
  510. if (p_len < 0 || p_len > 4) {
  511. p_len = 4;
  512. }
  513. for (i = 0; i < (uint32_t)p_len && p_str[i]; i++) {
  514. tag[i] = p_str[i];
  515. }
  516. for (; i < 4; i++) {
  517. tag[i] = ' ';
  518. }
  519. return OT_TAG(tag[0], tag[1], tag[2], tag[3]);
  520. }
  521. int64_t TextServer::name_to_tag(const String &p_name) const {
  522. // No readable name, use tag string.
  523. return ot_tag_from_string(p_name.replace("custom_", "").ascii().get_data(), -1);
  524. }
  525. _FORCE_INLINE_ void ot_tag_to_string(int32_t p_tag, char *p_buf) {
  526. p_buf[0] = (char)(uint8_t)(p_tag >> 24);
  527. p_buf[1] = (char)(uint8_t)(p_tag >> 16);
  528. p_buf[2] = (char)(uint8_t)(p_tag >> 8);
  529. p_buf[3] = (char)(uint8_t)(p_tag >> 0);
  530. }
  531. String TextServer::tag_to_name(int64_t p_tag) const {
  532. // No readable name, use tag string.
  533. char name[5];
  534. memset(name, 0, 5);
  535. ot_tag_to_string(p_tag, name);
  536. return String("custom_") + String(name);
  537. }
  538. Vector2 TextServer::get_hex_code_box_size(int64_t p_size, int64_t p_index) const {
  539. int w = ((p_index <= 0xFF) ? 1 : ((p_index <= 0xFFFF) ? 2 : 3));
  540. int sp = MAX(0, w - 1);
  541. int sz = MAX(1, Math::round(p_size / 15.f));
  542. return Vector2(4 + 3 * w + sp + 1, 15) * sz;
  543. }
  544. void TextServer::_draw_hex_code_box_number(const RID &p_canvas, int64_t p_size, const Vector2 &p_pos, uint8_t p_index, const Color &p_color) const {
  545. static uint8_t chars[] = { 0x7E, 0x30, 0x6D, 0x79, 0x33, 0x5B, 0x5F, 0x70, 0x7F, 0x7B, 0x77, 0x1F, 0x4E, 0x3D, 0x4F, 0x47, 0x00 };
  546. uint8_t x = chars[p_index];
  547. if (x & (1 << 6)) {
  548. RenderingServer::get_singleton()->canvas_item_add_rect(p_canvas, Rect2(p_pos, Size2(3, 1) * p_size), p_color);
  549. }
  550. if (x & (1 << 5)) {
  551. RenderingServer::get_singleton()->canvas_item_add_rect(p_canvas, Rect2(p_pos + Point2(2, 0) * p_size, Size2(1, 3) * p_size), p_color);
  552. }
  553. if (x & (1 << 4)) {
  554. RenderingServer::get_singleton()->canvas_item_add_rect(p_canvas, Rect2(p_pos + Point2(2, 2) * p_size, Size2(1, 3) * p_size), p_color);
  555. }
  556. if (x & (1 << 3)) {
  557. RenderingServer::get_singleton()->canvas_item_add_rect(p_canvas, Rect2(p_pos + Point2(0, 4) * p_size, Size2(3, 1) * p_size), p_color);
  558. }
  559. if (x & (1 << 2)) {
  560. RenderingServer::get_singleton()->canvas_item_add_rect(p_canvas, Rect2(p_pos + Point2(0, 2) * p_size, Size2(1, 3) * p_size), p_color);
  561. }
  562. if (x & (1 << 1)) {
  563. RenderingServer::get_singleton()->canvas_item_add_rect(p_canvas, Rect2(p_pos, Size2(1, 3) * p_size), p_color);
  564. }
  565. if (x & (1 << 0)) {
  566. RenderingServer::get_singleton()->canvas_item_add_rect(p_canvas, Rect2(p_pos + Point2(0, 2) * p_size, Size2(3, 1) * p_size), p_color);
  567. }
  568. }
  569. void TextServer::draw_hex_code_box(const RID &p_canvas, int64_t p_size, const Vector2 &p_pos, int64_t p_index, const Color &p_color) const {
  570. if (p_index == 0) {
  571. return;
  572. }
  573. int w = ((p_index <= 0xFF) ? 1 : ((p_index <= 0xFFFF) ? 2 : 3));
  574. int sp = MAX(0, w - 1);
  575. int sz = MAX(1, Math::round(p_size / 15.f));
  576. Size2 size = Vector2(4 + 3 * w + sp, 15) * sz;
  577. Point2 pos = p_pos - Point2i(0, size.y * 0.85);
  578. // Draw frame.
  579. RenderingServer::get_singleton()->canvas_item_add_rect(p_canvas, Rect2(pos + Point2(0, 0), Size2(sz, size.y)), p_color);
  580. RenderingServer::get_singleton()->canvas_item_add_rect(p_canvas, Rect2(pos + Point2(size.x - sz, 0), Size2(sz, size.y)), p_color);
  581. RenderingServer::get_singleton()->canvas_item_add_rect(p_canvas, Rect2(pos + Point2(0, 0), Size2(size.x, sz)), p_color);
  582. RenderingServer::get_singleton()->canvas_item_add_rect(p_canvas, Rect2(pos + Point2(0, size.y - sz), Size2(size.x, sz)), p_color);
  583. uint8_t a = p_index & 0x0F;
  584. uint8_t b = (p_index >> 4) & 0x0F;
  585. uint8_t c = (p_index >> 8) & 0x0F;
  586. uint8_t d = (p_index >> 12) & 0x0F;
  587. uint8_t e = (p_index >> 16) & 0x0F;
  588. uint8_t f = (p_index >> 20) & 0x0F;
  589. // Draw hex code.
  590. if (p_index <= 0xFF) {
  591. _draw_hex_code_box_number(p_canvas, sz, pos + Point2(2, 2) * sz, b, p_color);
  592. _draw_hex_code_box_number(p_canvas, sz, pos + Point2(2, 8) * sz, a, p_color);
  593. } else if (p_index <= 0xFFFF) {
  594. _draw_hex_code_box_number(p_canvas, sz, pos + Point2(2, 2) * sz, d, p_color);
  595. _draw_hex_code_box_number(p_canvas, sz, pos + Point2(6, 2) * sz, c, p_color);
  596. _draw_hex_code_box_number(p_canvas, sz, pos + Point2(2, 8) * sz, b, p_color);
  597. _draw_hex_code_box_number(p_canvas, sz, pos + Point2(6, 8) * sz, a, p_color);
  598. } else {
  599. _draw_hex_code_box_number(p_canvas, sz, pos + Point2(2, 2) * sz, f, p_color);
  600. _draw_hex_code_box_number(p_canvas, sz, pos + Point2(6, 2) * sz, e, p_color);
  601. _draw_hex_code_box_number(p_canvas, sz, pos + Point2(10, 2) * sz, d, p_color);
  602. _draw_hex_code_box_number(p_canvas, sz, pos + Point2(2, 8) * sz, c, p_color);
  603. _draw_hex_code_box_number(p_canvas, sz, pos + Point2(6, 8) * sz, b, p_color);
  604. _draw_hex_code_box_number(p_canvas, sz, pos + Point2(10, 8) * sz, a, p_color);
  605. }
  606. }
  607. bool TextServer::shaped_text_has_visible_chars(const RID &p_shaped) const {
  608. int v_size = shaped_text_get_glyph_count(p_shaped);
  609. if (v_size == 0) {
  610. return false;
  611. }
  612. const Glyph *glyphs = shaped_text_get_glyphs(p_shaped);
  613. for (int i = 0; i < v_size; i++) {
  614. if (glyphs[i].index != 0 && (glyphs[i].flags & GRAPHEME_IS_VIRTUAL) != GRAPHEME_IS_VIRTUAL) {
  615. return true;
  616. }
  617. }
  618. return false;
  619. }
  620. PackedInt32Array TextServer::shaped_text_get_line_breaks_adv(const RID &p_shaped, const PackedFloat32Array &p_width, int64_t p_start, bool p_once, BitField<TextServer::LineBreakFlag> p_break_flags) const {
  621. PackedInt32Array lines;
  622. ERR_FAIL_COND_V(p_width.is_empty(), lines);
  623. TextServer::Orientation orientation = shaped_text_get_orientation(p_shaped);
  624. const_cast<TextServer *>(this)->shaped_text_update_breaks(p_shaped);
  625. const Vector2i &range = shaped_text_get_range(p_shaped);
  626. real_t width = 0.f;
  627. int line_start = MAX(p_start, range.x);
  628. int last_end = line_start;
  629. int prev_safe_break = 0;
  630. int last_safe_break = -1;
  631. int word_count = 0;
  632. int chunk = 0;
  633. bool trim_next = false;
  634. int l_size = shaped_text_get_glyph_count(p_shaped);
  635. const Glyph *l_gl = const_cast<TextServer *>(this)->shaped_text_sort_logical(p_shaped);
  636. double indent = 0.0;
  637. if (p_break_flags.has_flag(BREAK_TRIM_INDENT)) {
  638. for (int i = 0; i < l_size; i++) {
  639. if ((l_gl[i].flags & GRAPHEME_IS_TAB) == GRAPHEME_IS_TAB || (l_gl[i].flags & GRAPHEME_IS_SPACE) == GRAPHEME_IS_SPACE) {
  640. indent += l_gl[i].advance * l_gl[i].repeat;
  641. } else {
  642. break;
  643. }
  644. }
  645. }
  646. for (int i = 0; i < l_size; i++) {
  647. double l_width = p_width[chunk];
  648. if (l_width > indent) {
  649. l_width -= indent;
  650. }
  651. if (l_gl[i].start < p_start) {
  652. prev_safe_break = i + 1;
  653. continue;
  654. }
  655. if (l_gl[i].count > 0) {
  656. if ((l_width > 0) && (width + l_gl[i].advance > l_width) && (last_safe_break >= 0)) {
  657. if (p_break_flags.has_flag(BREAK_TRIM_EDGE_SPACES)) {
  658. int start_pos = prev_safe_break;
  659. int end_pos = last_safe_break;
  660. while (trim_next && (start_pos < end_pos) && ((l_gl[start_pos].flags & GRAPHEME_IS_SOFT_HYPHEN) != GRAPHEME_IS_SOFT_HYPHEN) && ((l_gl[start_pos].flags & GRAPHEME_IS_SPACE) == GRAPHEME_IS_SPACE || (l_gl[start_pos].flags & GRAPHEME_IS_BREAK_HARD) == GRAPHEME_IS_BREAK_HARD || (l_gl[start_pos].flags & GRAPHEME_IS_BREAK_SOFT) == GRAPHEME_IS_BREAK_SOFT)) {
  661. start_pos += l_gl[start_pos].count;
  662. }
  663. while ((start_pos < end_pos) && ((l_gl[end_pos].flags & GRAPHEME_IS_SOFT_HYPHEN) != GRAPHEME_IS_SOFT_HYPHEN) && ((l_gl[end_pos].flags & GRAPHEME_IS_SPACE) == GRAPHEME_IS_SPACE || (l_gl[end_pos].flags & GRAPHEME_IS_BREAK_HARD) == GRAPHEME_IS_BREAK_HARD || (l_gl[end_pos].flags & GRAPHEME_IS_BREAK_SOFT) == GRAPHEME_IS_BREAK_SOFT)) {
  664. end_pos -= l_gl[end_pos].count;
  665. }
  666. if (last_end <= l_gl[start_pos].start) {
  667. lines.push_back(l_gl[start_pos].start);
  668. lines.push_back(l_gl[end_pos].end);
  669. last_end = l_gl[end_pos].end;
  670. }
  671. trim_next = true;
  672. } else {
  673. if (last_end <= line_start) {
  674. lines.push_back(line_start);
  675. lines.push_back(l_gl[last_safe_break].end);
  676. last_end = l_gl[last_safe_break].end;
  677. }
  678. }
  679. line_start = l_gl[last_safe_break].end;
  680. prev_safe_break = last_safe_break + 1;
  681. i = last_safe_break;
  682. last_safe_break = -1;
  683. width = 0;
  684. word_count = 0;
  685. chunk++;
  686. if (chunk >= p_width.size()) {
  687. chunk = 0;
  688. if (p_once) {
  689. return lines;
  690. }
  691. }
  692. continue;
  693. }
  694. if (p_break_flags.has_flag(BREAK_MANDATORY)) {
  695. if ((l_gl[i].flags & GRAPHEME_IS_BREAK_HARD) == GRAPHEME_IS_BREAK_HARD) {
  696. if (p_break_flags.has_flag(BREAK_TRIM_EDGE_SPACES)) {
  697. int start_pos = prev_safe_break;
  698. int end_pos = i;
  699. while (trim_next && (start_pos < end_pos) && ((l_gl[start_pos].flags & GRAPHEME_IS_SPACE) == GRAPHEME_IS_SPACE || (l_gl[start_pos].flags & GRAPHEME_IS_BREAK_HARD) == GRAPHEME_IS_BREAK_HARD || (l_gl[start_pos].flags & GRAPHEME_IS_BREAK_SOFT) == GRAPHEME_IS_BREAK_SOFT)) {
  700. start_pos += l_gl[start_pos].count;
  701. }
  702. while ((start_pos < end_pos) && ((l_gl[end_pos].flags & GRAPHEME_IS_SPACE) == GRAPHEME_IS_SPACE || (l_gl[end_pos].flags & GRAPHEME_IS_BREAK_HARD) == GRAPHEME_IS_BREAK_HARD || (l_gl[end_pos].flags & GRAPHEME_IS_BREAK_SOFT) == GRAPHEME_IS_BREAK_SOFT)) {
  703. end_pos -= l_gl[end_pos].count;
  704. }
  705. if (last_end <= l_gl[start_pos].start) {
  706. lines.push_back(l_gl[start_pos].start);
  707. lines.push_back(l_gl[end_pos].end);
  708. last_end = l_gl[end_pos].end;
  709. }
  710. trim_next = false;
  711. } else {
  712. if (last_end <= line_start) {
  713. lines.push_back(line_start);
  714. lines.push_back(l_gl[i].end);
  715. last_end = l_gl[i].end;
  716. }
  717. }
  718. line_start = l_gl[i].end;
  719. prev_safe_break = i + 1;
  720. last_safe_break = -1;
  721. width = 0;
  722. chunk = 0;
  723. if (p_once) {
  724. return lines;
  725. }
  726. continue;
  727. }
  728. }
  729. if (p_break_flags.has_flag(BREAK_WORD_BOUND)) {
  730. if ((l_gl[i].flags & GRAPHEME_IS_BREAK_SOFT) == GRAPHEME_IS_BREAK_SOFT) {
  731. if ((l_gl[i].flags & GRAPHEME_IS_SOFT_HYPHEN) == GRAPHEME_IS_SOFT_HYPHEN) {
  732. uint32_t gl = font_get_glyph_index(l_gl[i].font_rid, l_gl[i].font_size, 0x00ad, 0);
  733. float w = font_get_glyph_advance(l_gl[i].font_rid, l_gl[i].font_size, gl)[(orientation == ORIENTATION_HORIZONTAL) ? 0 : 1];
  734. if (width + l_gl[i].advance + w <= p_width[chunk]) {
  735. last_safe_break = i;
  736. word_count++;
  737. }
  738. } else {
  739. last_safe_break = i;
  740. word_count++;
  741. }
  742. }
  743. }
  744. if (p_break_flags.has_flag(BREAK_GRAPHEME_BOUND) && word_count == 0) {
  745. last_safe_break = i;
  746. }
  747. }
  748. width += l_gl[i].advance;
  749. }
  750. if (l_size > 0) {
  751. if (lines.size() == 0 || (lines[lines.size() - 1] < range.y && prev_safe_break < l_size)) {
  752. if (p_break_flags.has_flag(BREAK_TRIM_EDGE_SPACES)) {
  753. int start_pos = (prev_safe_break < l_size) ? prev_safe_break : l_size - 1;
  754. int end_pos = l_size - 1;
  755. while (trim_next && (start_pos < end_pos) && ((l_gl[start_pos].flags & GRAPHEME_IS_SPACE) == GRAPHEME_IS_SPACE || (l_gl[start_pos].flags & GRAPHEME_IS_BREAK_HARD) == GRAPHEME_IS_BREAK_HARD || (l_gl[start_pos].flags & GRAPHEME_IS_BREAK_SOFT) == GRAPHEME_IS_BREAK_SOFT)) {
  756. start_pos += l_gl[start_pos].count;
  757. }
  758. lines.push_back(l_gl[start_pos].start);
  759. } else {
  760. lines.push_back(line_start);
  761. }
  762. lines.push_back(range.y);
  763. }
  764. } else {
  765. lines.push_back(0);
  766. lines.push_back(0);
  767. }
  768. return lines;
  769. }
  770. PackedInt32Array TextServer::shaped_text_get_line_breaks(const RID &p_shaped, double p_width, int64_t p_start, BitField<TextServer::LineBreakFlag> p_break_flags) const {
  771. PackedInt32Array lines;
  772. const_cast<TextServer *>(this)->shaped_text_update_breaks(p_shaped);
  773. const Vector2i &range = shaped_text_get_range(p_shaped);
  774. double width = 0.f;
  775. int line_start = MAX(p_start, range.x);
  776. int last_end = line_start;
  777. int prev_safe_break = 0;
  778. int last_safe_break = -1;
  779. int word_count = 0;
  780. bool trim_next = false;
  781. TextServer::Orientation orientation = shaped_text_get_orientation(p_shaped);
  782. int l_size = shaped_text_get_glyph_count(p_shaped);
  783. const Glyph *l_gl = const_cast<TextServer *>(this)->shaped_text_sort_logical(p_shaped);
  784. double indent = 0.0;
  785. if (p_break_flags.has_flag(BREAK_TRIM_INDENT)) {
  786. for (int i = 0; i < l_size; i++) {
  787. if ((l_gl[i].flags & GRAPHEME_IS_TAB) == GRAPHEME_IS_TAB || (l_gl[i].flags & GRAPHEME_IS_SPACE) == GRAPHEME_IS_SPACE) {
  788. indent += l_gl[i].advance * l_gl[i].repeat;
  789. } else {
  790. break;
  791. }
  792. }
  793. }
  794. double l_width = p_width;
  795. for (int i = 0; i < l_size; i++) {
  796. if (l_gl[i].start < p_start) {
  797. prev_safe_break = i + 1;
  798. continue;
  799. }
  800. if (l_gl[i].count > 0) {
  801. if ((l_width > 0) && (width + l_gl[i].advance * l_gl[i].repeat > l_width) && (last_safe_break >= 0)) {
  802. if (p_break_flags.has_flag(BREAK_TRIM_EDGE_SPACES)) {
  803. int start_pos = prev_safe_break;
  804. int end_pos = last_safe_break;
  805. while (trim_next && (start_pos < end_pos) && ((l_gl[start_pos].flags & GRAPHEME_IS_SOFT_HYPHEN) != GRAPHEME_IS_SOFT_HYPHEN) && ((l_gl[start_pos].flags & GRAPHEME_IS_SPACE) == GRAPHEME_IS_SPACE || (l_gl[start_pos].flags & GRAPHEME_IS_BREAK_HARD) == GRAPHEME_IS_BREAK_HARD || (l_gl[start_pos].flags & GRAPHEME_IS_BREAK_SOFT) == GRAPHEME_IS_BREAK_SOFT)) {
  806. start_pos += l_gl[start_pos].count;
  807. }
  808. while ((start_pos < end_pos) && ((l_gl[end_pos].flags & GRAPHEME_IS_SOFT_HYPHEN) != GRAPHEME_IS_SOFT_HYPHEN) && ((l_gl[end_pos].flags & GRAPHEME_IS_SPACE) == GRAPHEME_IS_SPACE || (l_gl[end_pos].flags & GRAPHEME_IS_BREAK_HARD) == GRAPHEME_IS_BREAK_HARD || (l_gl[end_pos].flags & GRAPHEME_IS_BREAK_SOFT) == GRAPHEME_IS_BREAK_SOFT)) {
  809. end_pos -= l_gl[end_pos].count;
  810. }
  811. if (last_end <= l_gl[start_pos].start) {
  812. lines.push_back(l_gl[start_pos].start);
  813. lines.push_back(l_gl[end_pos].end);
  814. if (p_width > indent) {
  815. l_width = p_width - indent;
  816. }
  817. last_end = l_gl[end_pos].end;
  818. }
  819. trim_next = true;
  820. } else {
  821. if (last_end <= line_start) {
  822. lines.push_back(line_start);
  823. lines.push_back(l_gl[last_safe_break].end);
  824. if (p_width > indent) {
  825. l_width = p_width - indent;
  826. }
  827. last_end = l_gl[last_safe_break].end;
  828. }
  829. }
  830. line_start = l_gl[last_safe_break].end;
  831. prev_safe_break = last_safe_break + 1;
  832. i = last_safe_break;
  833. last_safe_break = -1;
  834. width = 0;
  835. word_count = 0;
  836. continue;
  837. }
  838. if (p_break_flags.has_flag(BREAK_MANDATORY)) {
  839. if ((l_gl[i].flags & GRAPHEME_IS_BREAK_HARD) == GRAPHEME_IS_BREAK_HARD) {
  840. if (p_break_flags.has_flag(BREAK_TRIM_EDGE_SPACES)) {
  841. int start_pos = prev_safe_break;
  842. int end_pos = i;
  843. while (trim_next && (start_pos < end_pos) && ((l_gl[start_pos].flags & GRAPHEME_IS_SPACE) == GRAPHEME_IS_SPACE || (l_gl[start_pos].flags & GRAPHEME_IS_BREAK_HARD) == GRAPHEME_IS_BREAK_HARD || (l_gl[start_pos].flags & GRAPHEME_IS_BREAK_SOFT) == GRAPHEME_IS_BREAK_SOFT)) {
  844. start_pos += l_gl[start_pos].count;
  845. }
  846. while ((start_pos < end_pos) && ((l_gl[end_pos].flags & GRAPHEME_IS_SPACE) == GRAPHEME_IS_SPACE || (l_gl[end_pos].flags & GRAPHEME_IS_BREAK_HARD) == GRAPHEME_IS_BREAK_HARD || (l_gl[end_pos].flags & GRAPHEME_IS_BREAK_SOFT) == GRAPHEME_IS_BREAK_SOFT)) {
  847. end_pos -= l_gl[end_pos].count;
  848. }
  849. trim_next = false;
  850. if (last_end <= l_gl[start_pos].start) {
  851. lines.push_back(l_gl[start_pos].start);
  852. lines.push_back(l_gl[end_pos].end);
  853. if (p_width > indent) {
  854. l_width = p_width - indent;
  855. }
  856. last_end = l_gl[end_pos].end;
  857. }
  858. } else {
  859. if (last_end <= line_start) {
  860. lines.push_back(line_start);
  861. lines.push_back(l_gl[i].end);
  862. if (p_width > indent) {
  863. l_width = p_width - indent;
  864. }
  865. last_end = l_gl[i].end;
  866. }
  867. }
  868. line_start = l_gl[i].end;
  869. prev_safe_break = i + 1;
  870. last_safe_break = -1;
  871. width = 0;
  872. continue;
  873. }
  874. }
  875. if (p_break_flags.has_flag(BREAK_WORD_BOUND)) {
  876. if ((l_gl[i].flags & GRAPHEME_IS_BREAK_SOFT) == GRAPHEME_IS_BREAK_SOFT) {
  877. if ((l_gl[i].flags & GRAPHEME_IS_SOFT_HYPHEN) == GRAPHEME_IS_SOFT_HYPHEN) {
  878. uint32_t gl = font_get_glyph_index(l_gl[i].font_rid, l_gl[i].font_size, 0x00AD, 0);
  879. float w = font_get_glyph_advance(l_gl[i].font_rid, l_gl[i].font_size, gl)[(orientation == ORIENTATION_HORIZONTAL) ? 0 : 1];
  880. if (width + l_gl[i].advance + w <= p_width) {
  881. last_safe_break = i;
  882. word_count++;
  883. }
  884. } else {
  885. last_safe_break = i;
  886. word_count++;
  887. }
  888. }
  889. if (p_break_flags.has_flag(BREAK_ADAPTIVE) && word_count == 0) {
  890. last_safe_break = i;
  891. }
  892. }
  893. if (p_break_flags.has_flag(BREAK_GRAPHEME_BOUND)) {
  894. last_safe_break = i;
  895. }
  896. }
  897. width += l_gl[i].advance * l_gl[i].repeat;
  898. }
  899. if (l_size > 0) {
  900. if (lines.size() == 0 || (lines[lines.size() - 1] < range.y && prev_safe_break < l_size)) {
  901. if (p_break_flags.has_flag(BREAK_TRIM_EDGE_SPACES)) {
  902. int start_pos = (prev_safe_break < l_size) ? prev_safe_break : l_size - 1;
  903. int end_pos = l_size - 1;
  904. while (trim_next && (start_pos < end_pos) && ((l_gl[start_pos].flags & GRAPHEME_IS_SPACE) == GRAPHEME_IS_SPACE || (l_gl[start_pos].flags & GRAPHEME_IS_BREAK_HARD) == GRAPHEME_IS_BREAK_HARD || (l_gl[start_pos].flags & GRAPHEME_IS_BREAK_SOFT) == GRAPHEME_IS_BREAK_SOFT)) {
  905. start_pos += l_gl[start_pos].count;
  906. }
  907. lines.push_back(l_gl[start_pos].start);
  908. } else {
  909. lines.push_back(line_start);
  910. }
  911. lines.push_back(range.y);
  912. }
  913. } else {
  914. lines.push_back(0);
  915. lines.push_back(0);
  916. }
  917. return lines;
  918. }
  919. PackedInt32Array TextServer::shaped_text_get_word_breaks(const RID &p_shaped, BitField<TextServer::GraphemeFlag> p_grapheme_flags, BitField<TextServer::GraphemeFlag> p_skip_grapheme_flags) const {
  920. PackedInt32Array words;
  921. const_cast<TextServer *>(this)->shaped_text_update_justification_ops(p_shaped);
  922. const Vector2i &range = shaped_text_get_range(p_shaped);
  923. int word_start = range.x;
  924. const int l_size = shaped_text_get_glyph_count(p_shaped);
  925. const Glyph *l_gl = const_cast<TextServer *>(this)->shaped_text_sort_logical(p_shaped);
  926. for (int i = 0; i < l_size; i++) {
  927. if (l_gl[i].count > 0) {
  928. if ((l_gl[i].flags & p_grapheme_flags) != 0 && (l_gl[i].flags & p_skip_grapheme_flags) == 0) {
  929. int next = (i == 0) ? l_gl[i].start : l_gl[i - 1].end;
  930. if (word_start < next) {
  931. words.push_back(word_start);
  932. words.push_back(next);
  933. }
  934. word_start = l_gl[i].end;
  935. }
  936. }
  937. }
  938. if (l_size > 0) {
  939. if (word_start != range.y) {
  940. words.push_back(word_start);
  941. words.push_back(range.y);
  942. }
  943. }
  944. return words;
  945. }
  946. CaretInfo TextServer::shaped_text_get_carets(const RID &p_shaped, int64_t p_position) const {
  947. Vector<Rect2> carets;
  948. TextServer::Orientation orientation = shaped_text_get_orientation(p_shaped);
  949. const Vector2 &range = shaped_text_get_range(p_shaped);
  950. real_t ascent = shaped_text_get_ascent(p_shaped);
  951. real_t descent = shaped_text_get_descent(p_shaped);
  952. real_t height = (ascent + descent) / 2;
  953. real_t off = 0.0f;
  954. CaretInfo caret;
  955. caret.l_dir = DIRECTION_AUTO;
  956. caret.t_dir = DIRECTION_AUTO;
  957. int v_size = shaped_text_get_glyph_count(p_shaped);
  958. const Glyph *glyphs = shaped_text_get_glyphs(p_shaped);
  959. for (int i = 0; i < v_size; i++) {
  960. if (glyphs[i].count > 0) {
  961. // Caret before grapheme (top / left).
  962. if (p_position == glyphs[i].start && ((glyphs[i].flags & GRAPHEME_IS_VIRTUAL) != GRAPHEME_IS_VIRTUAL)) {
  963. real_t advance = 0.f;
  964. for (int j = 0; j < glyphs[i].count; j++) {
  965. advance += glyphs[i + j].advance * glyphs[i + j].repeat;
  966. }
  967. real_t char_adv = advance / (real_t)(glyphs[i].end - glyphs[i].start);
  968. Rect2 cr;
  969. if (orientation == ORIENTATION_HORIZONTAL) {
  970. if (glyphs[i].start == range.x) {
  971. cr.size.y = height * 2;
  972. } else {
  973. cr.size.y = height;
  974. }
  975. cr.position.y = -ascent;
  976. cr.position.x = off;
  977. if ((glyphs[i].flags & GRAPHEME_IS_RTL) == GRAPHEME_IS_RTL) {
  978. caret.t_dir = DIRECTION_RTL;
  979. cr.position.x += advance;
  980. cr.size.x = -char_adv;
  981. } else {
  982. caret.t_dir = DIRECTION_LTR;
  983. cr.size.x = char_adv;
  984. }
  985. } else {
  986. if (glyphs[i].start == range.x) {
  987. cr.size.x = height * 2;
  988. } else {
  989. cr.size.x = height;
  990. }
  991. cr.position.x = -ascent;
  992. cr.position.y = off;
  993. if ((glyphs[i].flags & GRAPHEME_IS_RTL) == GRAPHEME_IS_RTL) {
  994. caret.t_dir = DIRECTION_RTL;
  995. cr.position.y += advance;
  996. cr.size.y = -char_adv;
  997. } else {
  998. caret.t_dir = DIRECTION_LTR;
  999. cr.size.y = char_adv;
  1000. }
  1001. }
  1002. caret.t_caret = cr;
  1003. }
  1004. // Caret after grapheme (bottom / right).
  1005. if (p_position == glyphs[i].end && ((glyphs[i].flags & GRAPHEME_IS_VIRTUAL) != GRAPHEME_IS_VIRTUAL)) {
  1006. real_t advance = 0.f;
  1007. for (int j = 0; j < glyphs[i].count; j++) {
  1008. advance += glyphs[i + j].advance * glyphs[i + j].repeat;
  1009. }
  1010. real_t char_adv = advance / (real_t)(glyphs[i].end - glyphs[i].start);
  1011. Rect2 cr;
  1012. if (orientation == ORIENTATION_HORIZONTAL) {
  1013. if (glyphs[i].end == range.y) {
  1014. cr.size.y = height * 2;
  1015. cr.position.y = -ascent;
  1016. } else {
  1017. cr.size.y = height;
  1018. cr.position.y = -ascent + height;
  1019. }
  1020. cr.position.x = off;
  1021. if ((glyphs[i].flags & GRAPHEME_IS_RTL) != GRAPHEME_IS_RTL) {
  1022. caret.l_dir = DIRECTION_LTR;
  1023. cr.position.x += advance;
  1024. cr.size.x = -char_adv;
  1025. } else {
  1026. caret.l_dir = DIRECTION_RTL;
  1027. cr.size.x = char_adv;
  1028. }
  1029. } else {
  1030. cr.size.y = 1.0f;
  1031. if (glyphs[i].end == range.y) {
  1032. cr.size.x = height * 2;
  1033. cr.position.x = -ascent;
  1034. } else {
  1035. cr.size.x = height;
  1036. cr.position.x = -ascent + height;
  1037. }
  1038. cr.position.y = off;
  1039. if ((glyphs[i].flags & GRAPHEME_IS_RTL) != GRAPHEME_IS_RTL) {
  1040. caret.l_dir = DIRECTION_LTR;
  1041. cr.position.y += advance;
  1042. cr.size.y = -char_adv;
  1043. } else {
  1044. caret.l_dir = DIRECTION_RTL;
  1045. cr.position.x += advance;
  1046. cr.size.y = char_adv;
  1047. }
  1048. }
  1049. caret.l_caret = cr;
  1050. }
  1051. // Caret inside grapheme (middle).
  1052. if (p_position > glyphs[i].start && p_position < glyphs[i].end && (glyphs[i].flags & GRAPHEME_IS_VIRTUAL) != GRAPHEME_IS_VIRTUAL) {
  1053. real_t advance = 0.f;
  1054. for (int j = 0; j < glyphs[i].count; j++) {
  1055. advance += glyphs[i + j].advance * glyphs[i + j].repeat;
  1056. }
  1057. real_t char_adv = advance / (real_t)(glyphs[i].end - glyphs[i].start);
  1058. Rect2 cr;
  1059. if (orientation == ORIENTATION_HORIZONTAL) {
  1060. cr.size.y = height * 2;
  1061. cr.position.y = -ascent;
  1062. if ((glyphs[i].flags & GRAPHEME_IS_RTL) == GRAPHEME_IS_RTL) {
  1063. cr.position.x = off + char_adv * (glyphs[i].end - p_position);
  1064. cr.size.x = -char_adv;
  1065. } else {
  1066. cr.position.x = off + char_adv * (p_position - glyphs[i].start);
  1067. cr.size.x = char_adv;
  1068. }
  1069. } else {
  1070. cr.size.x = height * 2;
  1071. cr.position.x = -ascent;
  1072. if ((glyphs[i].flags & GRAPHEME_IS_RTL) == GRAPHEME_IS_RTL) {
  1073. cr.position.y = off + char_adv * (glyphs[i].end - p_position);
  1074. cr.size.y = -char_adv;
  1075. } else {
  1076. cr.position.y = off + char_adv * (p_position - glyphs[i].start);
  1077. cr.size.y = char_adv;
  1078. }
  1079. }
  1080. caret.t_caret = cr;
  1081. caret.l_caret = cr;
  1082. }
  1083. }
  1084. off += glyphs[i].advance * glyphs[i].repeat;
  1085. }
  1086. return caret;
  1087. }
  1088. Dictionary TextServer::_shaped_text_get_carets_wrapper(const RID &p_shaped, int64_t p_position) const {
  1089. Dictionary ret;
  1090. CaretInfo caret = shaped_text_get_carets(p_shaped, p_position);
  1091. ret["leading_rect"] = caret.l_caret;
  1092. ret["leading_direction"] = caret.l_dir;
  1093. ret["trailing_rect"] = caret.t_caret;
  1094. ret["trailing_direction"] = caret.t_dir;
  1095. return ret;
  1096. }
  1097. TextServer::Direction TextServer::shaped_text_get_dominant_direction_in_range(const RID &p_shaped, int64_t p_start, int64_t p_end) const {
  1098. if (p_start == p_end) {
  1099. return DIRECTION_AUTO;
  1100. }
  1101. int start = MIN(p_start, p_end);
  1102. int end = MAX(p_start, p_end);
  1103. int rtl = 0;
  1104. int ltr = 0;
  1105. int v_size = shaped_text_get_glyph_count(p_shaped);
  1106. const Glyph *glyphs = shaped_text_get_glyphs(p_shaped);
  1107. for (int i = 0; i < v_size; i++) {
  1108. if ((glyphs[i].end > start) && (glyphs[i].start < end)) {
  1109. if (glyphs[i].count > 0) {
  1110. if ((glyphs[i].flags & GRAPHEME_IS_RTL) == GRAPHEME_IS_RTL) {
  1111. rtl++;
  1112. } else {
  1113. ltr++;
  1114. }
  1115. }
  1116. }
  1117. }
  1118. if (ltr == rtl) {
  1119. return DIRECTION_AUTO;
  1120. } else if (ltr > rtl) {
  1121. return DIRECTION_LTR;
  1122. } else {
  1123. return DIRECTION_RTL;
  1124. }
  1125. }
  1126. _FORCE_INLINE_ void _push_range(Vector<Vector2> &r_vector, real_t p_start, real_t p_end) {
  1127. if (!r_vector.is_empty() && Math::is_equal_approx(r_vector[r_vector.size() - 1].y, p_start, (real_t)UNIT_EPSILON)) {
  1128. r_vector.write[r_vector.size() - 1].y = p_end;
  1129. } else {
  1130. r_vector.push_back(Vector2(p_start, p_end));
  1131. }
  1132. }
  1133. Vector<Vector2> TextServer::shaped_text_get_selection(const RID &p_shaped, int64_t p_start, int64_t p_end) const {
  1134. Vector<Vector2> ranges;
  1135. if (p_start == p_end) {
  1136. return ranges;
  1137. }
  1138. int start = MIN(p_start, p_end);
  1139. int end = MAX(p_start, p_end);
  1140. int v_size = shaped_text_get_glyph_count(p_shaped);
  1141. const Glyph *glyphs = shaped_text_get_glyphs(p_shaped);
  1142. real_t off = 0.0f;
  1143. for (int i = 0; i < v_size; i++) {
  1144. for (int k = 0; k < glyphs[i].repeat; k++) {
  1145. if ((glyphs[i].count > 0) && ((glyphs[i].index != 0) || ((glyphs[i].flags & GRAPHEME_IS_SPACE) == GRAPHEME_IS_SPACE))) {
  1146. if (glyphs[i].start < end && glyphs[i].end > start) {
  1147. // Grapheme fully in selection range.
  1148. if (glyphs[i].start >= start && glyphs[i].end <= end) {
  1149. real_t advance = 0.f;
  1150. for (int j = 0; j < glyphs[i].count; j++) {
  1151. advance += glyphs[i + j].advance;
  1152. }
  1153. _push_range(ranges, off, off + advance);
  1154. }
  1155. // Only start of grapheme is in selection range.
  1156. if (glyphs[i].start >= start && glyphs[i].end > end) {
  1157. real_t advance = 0.f;
  1158. for (int j = 0; j < glyphs[i].count; j++) {
  1159. advance += glyphs[i + j].advance;
  1160. }
  1161. real_t char_adv = advance / (real_t)(glyphs[i].end - glyphs[i].start);
  1162. if ((glyphs[i].flags & GRAPHEME_IS_RTL) == GRAPHEME_IS_RTL) {
  1163. _push_range(ranges, off + char_adv * (glyphs[i].end - end), off + advance);
  1164. } else {
  1165. _push_range(ranges, off, off + char_adv * (end - glyphs[i].start));
  1166. }
  1167. }
  1168. // Only end of grapheme is in selection range.
  1169. if (glyphs[i].start < start && glyphs[i].end <= end) {
  1170. real_t advance = 0.f;
  1171. for (int j = 0; j < glyphs[i].count; j++) {
  1172. advance += glyphs[i + j].advance;
  1173. }
  1174. real_t char_adv = advance / (real_t)(glyphs[i].end - glyphs[i].start);
  1175. if ((glyphs[i].flags & GRAPHEME_IS_RTL) == GRAPHEME_IS_RTL) {
  1176. _push_range(ranges, off, off + char_adv * (glyphs[i].end - start));
  1177. } else {
  1178. _push_range(ranges, off + char_adv * (start - glyphs[i].start), off + advance);
  1179. }
  1180. }
  1181. // Selection range is within grapheme.
  1182. if (glyphs[i].start < start && glyphs[i].end > end) {
  1183. real_t advance = 0.f;
  1184. for (int j = 0; j < glyphs[i].count; j++) {
  1185. advance += glyphs[i + j].advance;
  1186. }
  1187. real_t char_adv = advance / (real_t)(glyphs[i].end - glyphs[i].start);
  1188. if ((glyphs[i].flags & GRAPHEME_IS_RTL) == GRAPHEME_IS_RTL) {
  1189. _push_range(ranges, off + char_adv * (glyphs[i].end - end), off + char_adv * (glyphs[i].end - start));
  1190. } else {
  1191. _push_range(ranges, off + char_adv * (start - glyphs[i].start), off + char_adv * (end - glyphs[i].start));
  1192. }
  1193. }
  1194. }
  1195. }
  1196. off += glyphs[i].advance;
  1197. }
  1198. }
  1199. return ranges;
  1200. }
  1201. int64_t TextServer::shaped_text_hit_test_grapheme(const RID &p_shaped, double p_coords) const {
  1202. // Exact grapheme hit test, return -1 if missed.
  1203. double off = 0.0f;
  1204. int v_size = shaped_text_get_glyph_count(p_shaped);
  1205. const Glyph *glyphs = shaped_text_get_glyphs(p_shaped);
  1206. for (int i = 0; i < v_size; i++) {
  1207. for (int j = 0; j < glyphs[i].repeat; j++) {
  1208. if (p_coords >= off && p_coords < off + glyphs[i].advance) {
  1209. return i;
  1210. }
  1211. off += glyphs[i].advance;
  1212. }
  1213. }
  1214. return -1;
  1215. }
  1216. int64_t TextServer::shaped_text_hit_test_position(const RID &p_shaped, double p_coords) const {
  1217. int v_size = shaped_text_get_glyph_count(p_shaped);
  1218. const Glyph *glyphs = shaped_text_get_glyphs(p_shaped);
  1219. // Cursor placement hit test.
  1220. // Place caret to the left of the leftmost grapheme, or to position 0 if string is empty.
  1221. if (p_coords <= 0) {
  1222. if (v_size > 0) {
  1223. if ((glyphs[0].flags & GRAPHEME_IS_RTL) == GRAPHEME_IS_RTL) {
  1224. return glyphs[0].end;
  1225. } else {
  1226. return glyphs[0].start;
  1227. }
  1228. } else {
  1229. return 0;
  1230. }
  1231. }
  1232. // Place caret to the right of the rightmost grapheme, or to position 0 if string is empty.
  1233. if (p_coords >= shaped_text_get_width(p_shaped)) {
  1234. if (v_size > 0) {
  1235. if ((glyphs[v_size - 1].flags & GRAPHEME_IS_RTL) == GRAPHEME_IS_RTL) {
  1236. return glyphs[v_size - 1].start;
  1237. } else {
  1238. return glyphs[v_size - 1].end;
  1239. }
  1240. } else {
  1241. return 0;
  1242. }
  1243. }
  1244. real_t off = 0.0f;
  1245. for (int i = 0; i < v_size; i++) {
  1246. if (glyphs[i].count > 0) {
  1247. real_t advance = 0.f;
  1248. for (int j = 0; j < glyphs[i].count; j++) {
  1249. advance += glyphs[i + j].advance * glyphs[i + j].repeat;
  1250. }
  1251. if (((glyphs[i].flags & GRAPHEME_IS_VIRTUAL) == GRAPHEME_IS_VIRTUAL) && (p_coords >= off && p_coords < off + advance)) {
  1252. if ((glyphs[i].flags & GRAPHEME_IS_RTL) == GRAPHEME_IS_RTL) {
  1253. return glyphs[i].end;
  1254. } else {
  1255. return glyphs[i].start;
  1256. }
  1257. }
  1258. // Ligature, handle mid-grapheme hit.
  1259. if (p_coords >= off && p_coords < off + advance && glyphs[i].end > glyphs[i].start + 1) {
  1260. int cnt = glyphs[i].end - glyphs[i].start;
  1261. real_t char_adv = advance / (real_t)(cnt);
  1262. real_t sub_off = off;
  1263. for (int j = 0; j < cnt; j++) {
  1264. // Place caret to the left of clicked sub-grapheme.
  1265. if (p_coords >= sub_off && p_coords < sub_off + char_adv / 2) {
  1266. if ((glyphs[i].flags & GRAPHEME_IS_RTL) == GRAPHEME_IS_RTL) {
  1267. return glyphs[i].end - j;
  1268. } else {
  1269. return glyphs[i].start + j;
  1270. }
  1271. }
  1272. // Place caret to the right of clicked sub-grapheme.
  1273. if (p_coords >= sub_off + char_adv / 2 && p_coords < sub_off + char_adv) {
  1274. if ((glyphs[i].flags & GRAPHEME_IS_RTL) == GRAPHEME_IS_RTL) {
  1275. return glyphs[i].start + (cnt - 1) - j;
  1276. } else {
  1277. return glyphs[i].end - (cnt - 1) + j;
  1278. }
  1279. }
  1280. sub_off += char_adv;
  1281. }
  1282. }
  1283. // Place caret to the left of clicked grapheme.
  1284. if (p_coords >= off && p_coords < off + advance / 2) {
  1285. if ((glyphs[i].flags & GRAPHEME_IS_RTL) == GRAPHEME_IS_RTL) {
  1286. return glyphs[i].end;
  1287. } else {
  1288. return glyphs[i].start;
  1289. }
  1290. }
  1291. // Place caret to the right of clicked grapheme.
  1292. if (p_coords >= off + advance / 2 && p_coords < off + advance) {
  1293. if ((glyphs[i].flags & GRAPHEME_IS_RTL) == GRAPHEME_IS_RTL) {
  1294. return glyphs[i].start;
  1295. } else {
  1296. return glyphs[i].end;
  1297. }
  1298. }
  1299. }
  1300. off += glyphs[i].advance * glyphs[i].repeat;
  1301. }
  1302. return 0;
  1303. }
  1304. Vector2 TextServer::shaped_text_get_grapheme_bounds(const RID &p_shaped, int64_t p_pos) const {
  1305. int v_size = shaped_text_get_glyph_count(p_shaped);
  1306. const Glyph *glyphs = shaped_text_get_glyphs(p_shaped);
  1307. real_t off = 0.0f;
  1308. for (int i = 0; i < v_size; i++) {
  1309. if ((glyphs[i].count > 0) && ((glyphs[i].index != 0) || ((glyphs[i].flags & GRAPHEME_IS_SPACE) == GRAPHEME_IS_SPACE))) {
  1310. if (glyphs[i].start <= p_pos && glyphs[i].end >= p_pos) {
  1311. real_t advance = 0.f;
  1312. for (int j = 0; j < glyphs[i].count; j++) {
  1313. advance += glyphs[i + j].advance;
  1314. }
  1315. return Vector2(off, off + advance);
  1316. }
  1317. }
  1318. off += glyphs[i].advance * glyphs[i].repeat;
  1319. }
  1320. return Vector2();
  1321. }
  1322. int64_t TextServer::shaped_text_next_grapheme_pos(const RID &p_shaped, int64_t p_pos) const {
  1323. int v_size = shaped_text_get_glyph_count(p_shaped);
  1324. const Glyph *glyphs = shaped_text_get_glyphs(p_shaped);
  1325. for (int i = 0; i < v_size; i++) {
  1326. if (p_pos >= glyphs[i].start && p_pos < glyphs[i].end) {
  1327. return glyphs[i].end;
  1328. }
  1329. }
  1330. return p_pos;
  1331. }
  1332. int64_t TextServer::shaped_text_prev_grapheme_pos(const RID &p_shaped, int64_t p_pos) const {
  1333. int v_size = shaped_text_get_glyph_count(p_shaped);
  1334. const Glyph *glyphs = shaped_text_get_glyphs(p_shaped);
  1335. for (int i = 0; i < v_size; i++) {
  1336. if (p_pos > glyphs[i].start && p_pos <= glyphs[i].end) {
  1337. return glyphs[i].start;
  1338. }
  1339. }
  1340. return p_pos;
  1341. }
  1342. int64_t TextServer::shaped_text_prev_character_pos(const RID &p_shaped, int64_t p_pos) const {
  1343. const PackedInt32Array &chars = shaped_text_get_character_breaks(p_shaped);
  1344. int64_t prev = 0;
  1345. for (const int32_t &E : chars) {
  1346. if (E >= p_pos) {
  1347. return prev;
  1348. }
  1349. prev = E;
  1350. }
  1351. return prev;
  1352. }
  1353. int64_t TextServer::shaped_text_next_character_pos(const RID &p_shaped, int64_t p_pos) const {
  1354. const PackedInt32Array &chars = shaped_text_get_character_breaks(p_shaped);
  1355. int64_t prev = 0;
  1356. for (const int32_t &E : chars) {
  1357. if (E > p_pos) {
  1358. return E;
  1359. }
  1360. prev = E;
  1361. }
  1362. return prev;
  1363. }
  1364. int64_t TextServer::shaped_text_closest_character_pos(const RID &p_shaped, int64_t p_pos) const {
  1365. const PackedInt32Array &chars = shaped_text_get_character_breaks(p_shaped);
  1366. int64_t prev = 0;
  1367. for (const int32_t &E : chars) {
  1368. if (E == p_pos) {
  1369. return E;
  1370. } else if (E > p_pos) {
  1371. if ((E - p_pos) < (p_pos - prev)) {
  1372. return E;
  1373. } else {
  1374. return prev;
  1375. }
  1376. }
  1377. prev = E;
  1378. }
  1379. return prev;
  1380. }
  1381. PackedInt32Array TextServer::string_get_character_breaks(const String &p_string, const String &p_language) const {
  1382. PackedInt32Array ret;
  1383. if (!p_string.is_empty()) {
  1384. ret.resize(p_string.size() - 1);
  1385. for (int i = 0; i < p_string.size() - 1; i++) {
  1386. ret.write[i] = i + 1;
  1387. }
  1388. }
  1389. return ret;
  1390. }
  1391. void TextServer::shaped_text_draw(const RID &p_shaped, const RID &p_canvas, const Vector2 &p_pos, double p_clip_l, double p_clip_r, const Color &p_color) const {
  1392. TextServer::Orientation orientation = shaped_text_get_orientation(p_shaped);
  1393. bool hex_codes = shaped_text_get_preserve_control(p_shaped) || shaped_text_get_preserve_invalid(p_shaped);
  1394. bool rtl = shaped_text_get_direction(p_shaped) == DIRECTION_RTL;
  1395. int ellipsis_pos = shaped_text_get_ellipsis_pos(p_shaped);
  1396. int trim_pos = shaped_text_get_trim_pos(p_shaped);
  1397. const Glyph *ellipsis_glyphs = shaped_text_get_ellipsis_glyphs(p_shaped);
  1398. int ellipsis_gl_size = shaped_text_get_ellipsis_glyph_count(p_shaped);
  1399. int v_size = shaped_text_get_glyph_count(p_shaped);
  1400. const Glyph *glyphs = shaped_text_get_glyphs(p_shaped);
  1401. Vector2 ofs;
  1402. // Draw RTL ellipsis string when needed.
  1403. if (rtl && ellipsis_pos >= 0) {
  1404. for (int i = ellipsis_gl_size - 1; i >= 0; i--) {
  1405. for (int j = 0; j < ellipsis_glyphs[i].repeat; j++) {
  1406. font_draw_glyph(ellipsis_glyphs[i].font_rid, p_canvas, ellipsis_glyphs[i].font_size, ofs + p_pos + Vector2(ellipsis_glyphs[i].x_off, ellipsis_glyphs[i].y_off), ellipsis_glyphs[i].index, p_color);
  1407. if (orientation == ORIENTATION_HORIZONTAL) {
  1408. ofs.x += ellipsis_glyphs[i].advance;
  1409. } else {
  1410. ofs.y += ellipsis_glyphs[i].advance;
  1411. }
  1412. }
  1413. }
  1414. }
  1415. // Draw at the baseline.
  1416. for (int i = 0; i < v_size; i++) {
  1417. if (trim_pos >= 0) {
  1418. if (rtl) {
  1419. if (i < trim_pos) {
  1420. continue;
  1421. }
  1422. } else {
  1423. if (i >= trim_pos) {
  1424. break;
  1425. }
  1426. }
  1427. }
  1428. for (int j = 0; j < glyphs[i].repeat; j++) {
  1429. if (p_clip_r > 0) {
  1430. // Clip right / bottom.
  1431. if (orientation == ORIENTATION_HORIZONTAL) {
  1432. if (ofs.x + glyphs[i].advance > p_clip_r) {
  1433. return;
  1434. }
  1435. } else {
  1436. if (ofs.y + glyphs[i].advance > p_clip_r) {
  1437. return;
  1438. }
  1439. }
  1440. }
  1441. if (p_clip_l > 0) {
  1442. // Clip left / top.
  1443. if (orientation == ORIENTATION_HORIZONTAL) {
  1444. if (ofs.x < p_clip_l) {
  1445. ofs.x += glyphs[i].advance;
  1446. continue;
  1447. }
  1448. } else {
  1449. if (ofs.y < p_clip_l) {
  1450. ofs.y += glyphs[i].advance;
  1451. continue;
  1452. }
  1453. }
  1454. }
  1455. if (glyphs[i].font_rid != RID()) {
  1456. font_draw_glyph(glyphs[i].font_rid, p_canvas, glyphs[i].font_size, ofs + p_pos + Vector2(glyphs[i].x_off, glyphs[i].y_off), glyphs[i].index, p_color);
  1457. } else if (hex_codes && ((glyphs[i].flags & GRAPHEME_IS_VIRTUAL) != GRAPHEME_IS_VIRTUAL) && ((glyphs[i].flags & GRAPHEME_IS_EMBEDDED_OBJECT) != GRAPHEME_IS_EMBEDDED_OBJECT)) {
  1458. TextServer::draw_hex_code_box(p_canvas, glyphs[i].font_size, ofs + p_pos + Vector2(glyphs[i].x_off, glyphs[i].y_off), glyphs[i].index, p_color);
  1459. }
  1460. if (orientation == ORIENTATION_HORIZONTAL) {
  1461. ofs.x += glyphs[i].advance;
  1462. } else {
  1463. ofs.y += glyphs[i].advance;
  1464. }
  1465. }
  1466. }
  1467. // Draw LTR ellipsis string when needed.
  1468. if (!rtl && ellipsis_pos >= 0) {
  1469. for (int i = 0; i < ellipsis_gl_size; i++) {
  1470. for (int j = 0; j < ellipsis_glyphs[i].repeat; j++) {
  1471. font_draw_glyph(ellipsis_glyphs[i].font_rid, p_canvas, ellipsis_glyphs[i].font_size, ofs + p_pos + Vector2(ellipsis_glyphs[i].x_off, ellipsis_glyphs[i].y_off), ellipsis_glyphs[i].index, p_color);
  1472. if (orientation == ORIENTATION_HORIZONTAL) {
  1473. ofs.x += ellipsis_glyphs[i].advance;
  1474. } else {
  1475. ofs.y += ellipsis_glyphs[i].advance;
  1476. }
  1477. }
  1478. }
  1479. }
  1480. }
  1481. void TextServer::shaped_text_draw_outline(const RID &p_shaped, const RID &p_canvas, const Vector2 &p_pos, double p_clip_l, double p_clip_r, int64_t p_outline_size, const Color &p_color) const {
  1482. TextServer::Orientation orientation = shaped_text_get_orientation(p_shaped);
  1483. bool rtl = (shaped_text_get_inferred_direction(p_shaped) == DIRECTION_RTL);
  1484. int ellipsis_pos = shaped_text_get_ellipsis_pos(p_shaped);
  1485. int trim_pos = shaped_text_get_trim_pos(p_shaped);
  1486. const Glyph *ellipsis_glyphs = shaped_text_get_ellipsis_glyphs(p_shaped);
  1487. int ellipsis_gl_size = shaped_text_get_ellipsis_glyph_count(p_shaped);
  1488. int v_size = shaped_text_get_glyph_count(p_shaped);
  1489. const Glyph *glyphs = shaped_text_get_glyphs(p_shaped);
  1490. Vector2 ofs;
  1491. // Draw RTL ellipsis string when needed.
  1492. if (rtl && ellipsis_pos >= 0) {
  1493. for (int i = ellipsis_gl_size - 1; i >= 0; i--) {
  1494. for (int j = 0; j < ellipsis_glyphs[i].repeat; j++) {
  1495. font_draw_glyph_outline(ellipsis_glyphs[i].font_rid, p_canvas, ellipsis_glyphs[i].font_size, p_outline_size, ofs + p_pos + Vector2(ellipsis_glyphs[i].x_off, ellipsis_glyphs[i].y_off), ellipsis_glyphs[i].index, p_color);
  1496. if (orientation == ORIENTATION_HORIZONTAL) {
  1497. ofs.x += ellipsis_glyphs[i].advance;
  1498. } else {
  1499. ofs.y += ellipsis_glyphs[i].advance;
  1500. }
  1501. }
  1502. }
  1503. }
  1504. // Draw at the baseline.
  1505. for (int i = 0; i < v_size; i++) {
  1506. if (trim_pos >= 0) {
  1507. if (rtl) {
  1508. if (i < trim_pos) {
  1509. continue;
  1510. }
  1511. } else {
  1512. if (i >= trim_pos) {
  1513. break;
  1514. }
  1515. }
  1516. }
  1517. for (int j = 0; j < glyphs[i].repeat; j++) {
  1518. if (p_clip_r > 0) {
  1519. // Clip right / bottom.
  1520. if (orientation == ORIENTATION_HORIZONTAL) {
  1521. if (ofs.x + glyphs[i].advance > p_clip_r) {
  1522. return;
  1523. }
  1524. } else {
  1525. if (ofs.y + glyphs[i].advance > p_clip_r) {
  1526. return;
  1527. }
  1528. }
  1529. }
  1530. if (p_clip_l > 0) {
  1531. // Clip left / top.
  1532. if (orientation == ORIENTATION_HORIZONTAL) {
  1533. if (ofs.x < p_clip_l) {
  1534. ofs.x += glyphs[i].advance;
  1535. continue;
  1536. }
  1537. } else {
  1538. if (ofs.y < p_clip_l) {
  1539. ofs.y += glyphs[i].advance;
  1540. continue;
  1541. }
  1542. }
  1543. }
  1544. if (glyphs[i].font_rid != RID()) {
  1545. font_draw_glyph_outline(glyphs[i].font_rid, p_canvas, glyphs[i].font_size, p_outline_size, ofs + p_pos + Vector2(glyphs[i].x_off, glyphs[i].y_off), glyphs[i].index, p_color);
  1546. }
  1547. if (orientation == ORIENTATION_HORIZONTAL) {
  1548. ofs.x += glyphs[i].advance;
  1549. } else {
  1550. ofs.y += glyphs[i].advance;
  1551. }
  1552. }
  1553. }
  1554. // Draw LTR ellipsis string when needed.
  1555. if (!rtl && ellipsis_pos >= 0) {
  1556. for (int i = 0; i < ellipsis_gl_size; i++) {
  1557. for (int j = 0; j < ellipsis_glyphs[i].repeat; j++) {
  1558. font_draw_glyph_outline(ellipsis_glyphs[i].font_rid, p_canvas, ellipsis_glyphs[i].font_size, p_outline_size, ofs + p_pos + Vector2(ellipsis_glyphs[i].x_off, ellipsis_glyphs[i].y_off), ellipsis_glyphs[i].index, p_color);
  1559. if (orientation == ORIENTATION_HORIZONTAL) {
  1560. ofs.x += ellipsis_glyphs[i].advance;
  1561. } else {
  1562. ofs.y += ellipsis_glyphs[i].advance;
  1563. }
  1564. }
  1565. }
  1566. }
  1567. }
  1568. void TextServer::_diacritics_map_add(const String &p_from, char32_t p_to) {
  1569. for (int i = 0; i < p_from.size(); i++) {
  1570. diacritics_map[p_from[i]] = p_to;
  1571. }
  1572. }
  1573. void TextServer::_init_diacritics_map() {
  1574. diacritics_map.clear();
  1575. // Latin.
  1576. _diacritics_map_add(U"ÀÁÂÃÄÅĀĂĄǍǞǠǺȀȂȦḀẠẢẤẦẨẪẬẮẰẲẴẶ", U'A');
  1577. _diacritics_map_add(U"àáâãäåāăąǎǟǡǻȁȃȧḁẚạảấầẩẫậắằẳẵặ", U'a');
  1578. _diacritics_map_add(U"ǢǼ", U'Æ');
  1579. _diacritics_map_add(U"ǣǽ", U'æ');
  1580. _diacritics_map_add(U"ḂḄḆ", U'B');
  1581. _diacritics_map_add(U"ḃḅḇ", U'b');
  1582. _diacritics_map_add(U"ÇĆĈĊČḈ", U'C');
  1583. _diacritics_map_add(U"çćĉċčḉ", U'c');
  1584. _diacritics_map_add(U"ĎḊḌḎḐḒ", U'D');
  1585. _diacritics_map_add(U"ďḋḍḏḑḓ", U'd');
  1586. _diacritics_map_add(U"ÈÉÊËĒĔĖĘĚȆȨḔḖḘḚḜẸẺẼẾỀỂỄỆ", U'E');
  1587. _diacritics_map_add(U"èéêëēĕėęěȇȩḕḗḙḛḝẹẻẽếềểễệ", U'e');
  1588. _diacritics_map_add(U"Ḟ", U'F');
  1589. _diacritics_map_add(U"ḟ", U'f');
  1590. _diacritics_map_add(U"ĜĞĠĢǦǴḠ", U'G');
  1591. _diacritics_map_add(U"ĝğġģǧǵḡ", U'g');
  1592. _diacritics_map_add(U"ĤȞḢḤḦḨḪ", U'H');
  1593. _diacritics_map_add(U"ĥȟḣḥḧḩḫẖ", U'h');
  1594. _diacritics_map_add(U"ÌÍÎÏĨĪĬĮİǏȈȊḬḮỈỊ", U'I');
  1595. _diacritics_map_add(U"ìíîïĩīĭįıǐȉȋḭḯỉị", U'i');
  1596. _diacritics_map_add(U"Ĵ", U'J');
  1597. _diacritics_map_add(U"ĵ", U'j');
  1598. _diacritics_map_add(U"ĶǨḰḲḴ", U'K');
  1599. _diacritics_map_add(U"ķĸǩḱḳḵ", U'k');
  1600. _diacritics_map_add(U"ĹĻĽĿḶḸḺḼ", U'L');
  1601. _diacritics_map_add(U"ĺļľŀḷḹḻḽ", U'l');
  1602. _diacritics_map_add(U"ḾṀṂ", U'M');
  1603. _diacritics_map_add(U"ḿṁṃ", U'm');
  1604. _diacritics_map_add(U"ÑŃŅŇǸṄṆṈṊ", U'N');
  1605. _diacritics_map_add(U"ñńņňʼnǹṅṇṉṋ", U'n');
  1606. _diacritics_map_add(U"ÒÓÔÕÖŌŎŐƠǑǪǬȌȎȪȬȮȰṌṎṐṒỌỎỐỒỔỖỘỚỜỞỠỢ", U'O');
  1607. _diacritics_map_add(U"òóôõöōŏőơǒǫǭȍȏȫȭȯȱṍṏṑṓọỏốồổỗộớờởỡợ", U'o');
  1608. _diacritics_map_add(U"ṔṖ", U'P');
  1609. _diacritics_map_add(U"ṗṕ", U'p');
  1610. _diacritics_map_add(U"ŔŖŘȐȒṘṚṜṞ", U'R');
  1611. _diacritics_map_add(U"ŕŗřȑȓṙṛṝṟ", U'r');
  1612. _diacritics_map_add(U"ŚŜŞŠȘṠṢṤṦṨ", U'S');
  1613. _diacritics_map_add(U"śŝşšſșṡṣṥṧṩẛẜẝ", U's');
  1614. _diacritics_map_add(U"ŢŤȚṪṬṮṰ", U'T');
  1615. _diacritics_map_add(U"ţťțṫṭṯṱẗ", U't');
  1616. _diacritics_map_add(U"ÙÚÛÜŨŪŬŮŰŲƯǓǕǗǙǛȔȖṲṴṶṸṺỤỦỨỪỬỮỰ", U'U');
  1617. _diacritics_map_add(U"ùúûüũūŭůűųưǔǖǘǚǜȕȗṳṵṷṹṻụủứừửữự", U'u');
  1618. _diacritics_map_add(U"ṼṾ", U'V');
  1619. _diacritics_map_add(U"ṽṿ", U'v');
  1620. _diacritics_map_add(U"ŴẀẂẄẆẈ", U'W');
  1621. _diacritics_map_add(U"ŵẁẃẅẇẉẘ", U'w');
  1622. _diacritics_map_add(U"ẊẌ", U'X');
  1623. _diacritics_map_add(U"ẋẍ", U'x');
  1624. _diacritics_map_add(U"ÝŶẎỲỴỶỸỾ", U'Y');
  1625. _diacritics_map_add(U"ýÿŷẏẙỳỵỷỹỿ", U'y');
  1626. _diacritics_map_add(U"ŹŻŽẐẒẔ", U'Z');
  1627. _diacritics_map_add(U"źżžẑẓẕ", U'z');
  1628. // Greek.
  1629. _diacritics_map_add(U"ΆἈἉἊἋἌἍἎἏᾈᾉᾊᾋᾌᾍᾎᾏᾸᾹᾺΆᾼ", U'Α');
  1630. _diacritics_map_add(U"άἀἁἂἃἄἅἆἇὰάᾀᾁᾂᾃᾄᾅᾆᾇᾰᾱᾲᾳᾴᾶᾷ", U'α');
  1631. _diacritics_map_add(U"ΈἘἙἚἛἜἝῈΈ", U'Ε');
  1632. _diacritics_map_add(U"έἐἑἒἓἔἕὲέ", U'ε');
  1633. _diacritics_map_add(U"ΉἨἩἪἫἬἭἮἯᾘᾙᾚᾛᾜᾝᾞᾟῊΉῌ", U'Η');
  1634. _diacritics_map_add(U"ήἠἡἢἣἤἥἦἧὴήᾐᾑᾒᾓᾔᾕᾖᾗῂῃῄῆῇ", U'η');
  1635. _diacritics_map_add(U"ΊΪἸἹἺἻἼἽἾἿῘῙῚΊ", U'Ι');
  1636. _diacritics_map_add(U"ίΐϊἰἱἲἳἴἵἶἷὶίῐῑῒΐῖῗ", U'ι');
  1637. _diacritics_map_add(U"ΌὈὉὊὋὌὍῸΌ", U'Ο');
  1638. _diacritics_map_add(U"όὀὁὂὃὄὅὸό", U'ο');
  1639. _diacritics_map_add(U"Ῥ", U'Ρ');
  1640. _diacritics_map_add(U"ῤῥ", U'ρ');
  1641. _diacritics_map_add(U"ΎΫϓϔὙὛὝὟῨῩῪΎ", U'Υ');
  1642. _diacritics_map_add(U"ΰϋύὐὑὒὓὔὕὖὗὺύῠῡῢΰῦῧ", U'υ');
  1643. _diacritics_map_add(U"ΏὨὩὪὫὬὭὮὯᾨᾩᾪᾫᾬᾭᾮᾯῺΏῼ", U'Ω');
  1644. _diacritics_map_add(U"ώὠὡὢὣὤὥὦὧὼώᾠᾡᾢᾣᾤᾥᾦᾧῲῳῴῶῷ", U'ω');
  1645. // Cyrillic.
  1646. _diacritics_map_add(U"ӐӒ", U'А');
  1647. _diacritics_map_add(U"ӑӓ", U'а');
  1648. _diacritics_map_add(U"ЀЁӖ", U'Е');
  1649. _diacritics_map_add(U"ѐёӗ", U'е');
  1650. _diacritics_map_add(U"Ӛ", U'Ә');
  1651. _diacritics_map_add(U"ӛ", U'ә');
  1652. _diacritics_map_add(U"Ӝ", U'Ж');
  1653. _diacritics_map_add(U"ӝ", U'ж');
  1654. _diacritics_map_add(U"Ӟ", U'З');
  1655. _diacritics_map_add(U"ӟ", U'з');
  1656. _diacritics_map_add(U"Ѓ", U'Г');
  1657. _diacritics_map_add(U"ѓ", U'г');
  1658. _diacritics_map_add(U"Ї", U'І');
  1659. _diacritics_map_add(U"ї", U'і');
  1660. _diacritics_map_add(U"ЍӢӤЙ", U'И');
  1661. _diacritics_map_add(U"ѝӣӥй", U'и');
  1662. _diacritics_map_add(U"Ќ", U'К');
  1663. _diacritics_map_add(U"ќ", U'к');
  1664. _diacritics_map_add(U"Ӧ", U'О');
  1665. _diacritics_map_add(U"ӧ", U'о');
  1666. _diacritics_map_add(U"Ӫ", U'Ө');
  1667. _diacritics_map_add(U"ӫ", U'ө');
  1668. _diacritics_map_add(U"Ӭ", U'Э');
  1669. _diacritics_map_add(U"ӭ", U'э');
  1670. _diacritics_map_add(U"ЎӮӰӲ", U'У');
  1671. _diacritics_map_add(U"ўӯӱӳ", U'у');
  1672. _diacritics_map_add(U"Ӵ", U'Ч');
  1673. _diacritics_map_add(U"ӵ", U'ч');
  1674. _diacritics_map_add(U"Ӹ", U'Ы');
  1675. _diacritics_map_add(U"ӹ", U'ы');
  1676. }
  1677. String TextServer::strip_diacritics(const String &p_string) const {
  1678. String result;
  1679. for (int i = 0; i < p_string.length(); i++) {
  1680. if (p_string[i] < 0x02B0 || p_string[i] > 0x036F) { // Skip combining diacritics.
  1681. if (diacritics_map.has(p_string[i])) {
  1682. result += diacritics_map[p_string[i]];
  1683. } else {
  1684. result += p_string[i];
  1685. }
  1686. }
  1687. }
  1688. return result;
  1689. }
  1690. TypedArray<Vector3i> TextServer::parse_structured_text(StructuredTextParser p_parser_type, const Array &p_args, const String &p_text) const {
  1691. TypedArray<Vector3i> ret;
  1692. switch (p_parser_type) {
  1693. case STRUCTURED_TEXT_URI: {
  1694. int prev = 0;
  1695. for (int i = 0; i < p_text.length(); i++) {
  1696. if ((p_text[i] == '\\') || (p_text[i] == '/') || (p_text[i] == '.') || (p_text[i] == ':') || (p_text[i] == '&') || (p_text[i] == '=') || (p_text[i] == '@') || (p_text[i] == '?') || (p_text[i] == '#')) {
  1697. if (prev != i) {
  1698. ret.push_back(Vector3i(prev, i, TextServer::DIRECTION_AUTO));
  1699. }
  1700. ret.push_back(Vector3i(i, i + 1, TextServer::DIRECTION_LTR));
  1701. prev = i + 1;
  1702. }
  1703. }
  1704. if (prev != p_text.length()) {
  1705. ret.push_back(Vector3i(prev, p_text.length(), TextServer::DIRECTION_AUTO));
  1706. }
  1707. } break;
  1708. case STRUCTURED_TEXT_FILE: {
  1709. int prev = 0;
  1710. for (int i = 0; i < p_text.length(); i++) {
  1711. if ((p_text[i] == '\\') || (p_text[i] == '/') || (p_text[i] == ':')) {
  1712. if (prev != i) {
  1713. ret.push_back(Vector3i(prev, i, TextServer::DIRECTION_AUTO));
  1714. }
  1715. ret.push_back(Vector3i(i, i + 1, TextServer::DIRECTION_LTR));
  1716. prev = i + 1;
  1717. }
  1718. }
  1719. if (prev != p_text.length()) {
  1720. ret.push_back(Vector3i(prev, p_text.length(), TextServer::DIRECTION_AUTO));
  1721. }
  1722. } break;
  1723. case STRUCTURED_TEXT_EMAIL: {
  1724. bool local = true;
  1725. int prev = 0;
  1726. for (int i = 0; i < p_text.length(); i++) {
  1727. if ((p_text[i] == '@') && local) { // Add full "local" as single context.
  1728. local = false;
  1729. ret.push_back(Vector3i(prev, i, TextServer::DIRECTION_AUTO));
  1730. ret.push_back(Vector3i(i, i + 1, TextServer::DIRECTION_LTR));
  1731. prev = i + 1;
  1732. } else if (!local && (p_text[i] == '.')) { // Add each dot separated "domain" part as context.
  1733. if (prev != i) {
  1734. ret.push_back(Vector3i(prev, i, TextServer::DIRECTION_AUTO));
  1735. }
  1736. ret.push_back(Vector3i(i, i + 1, TextServer::DIRECTION_LTR));
  1737. prev = i + 1;
  1738. }
  1739. }
  1740. if (prev != p_text.length()) {
  1741. ret.push_back(Vector3i(prev, p_text.length(), TextServer::DIRECTION_AUTO));
  1742. }
  1743. } break;
  1744. case STRUCTURED_TEXT_LIST: {
  1745. if (p_args.size() == 1 && p_args[0].get_type() == Variant::STRING) {
  1746. Vector<String> tags = p_text.split(String(p_args[0]));
  1747. int prev = 0;
  1748. for (int i = 0; i < tags.size(); i++) {
  1749. if (prev != i) {
  1750. ret.push_back(Vector3i(prev, prev + tags[i].length(), TextServer::DIRECTION_INHERITED));
  1751. }
  1752. ret.push_back(Vector3i(prev + tags[i].length(), prev + tags[i].length() + 1, TextServer::DIRECTION_INHERITED));
  1753. prev = prev + tags[i].length() + 1;
  1754. }
  1755. }
  1756. } break;
  1757. case STRUCTURED_TEXT_GDSCRIPT: {
  1758. bool in_string_literal = false;
  1759. bool in_string_literal_single = false;
  1760. bool in_id = false;
  1761. int prev = 0;
  1762. for (int i = 0; i < p_text.length(); i++) {
  1763. char32_t c = p_text[i];
  1764. if (in_string_literal) {
  1765. if (c == '\\') {
  1766. i++;
  1767. continue; // Skip escaped chars.
  1768. } else if (c == '\"') {
  1769. // String literal end, push string and ".
  1770. if (prev != i) {
  1771. ret.push_back(Vector3i(prev, i, TextServer::DIRECTION_AUTO));
  1772. }
  1773. prev = i + 1;
  1774. ret.push_back(Vector3i(i, i + 1, TextServer::DIRECTION_LTR));
  1775. in_string_literal = false;
  1776. }
  1777. } else if (in_string_literal_single) {
  1778. if (c == '\\') {
  1779. i++;
  1780. continue; // Skip escaped chars.
  1781. } else if (c == '\'') {
  1782. // String literal end, push string and '.
  1783. if (prev != i) {
  1784. ret.push_back(Vector3i(prev, i, TextServer::DIRECTION_AUTO));
  1785. }
  1786. prev = i + 1;
  1787. ret.push_back(Vector3i(i, i + 1, TextServer::DIRECTION_LTR));
  1788. in_string_literal_single = false;
  1789. }
  1790. } else if (in_id) {
  1791. if (!is_unicode_identifier_continue(c)) {
  1792. // End of id, push id.
  1793. if (prev != i) {
  1794. ret.push_back(Vector3i(prev, i, TextServer::DIRECTION_AUTO));
  1795. }
  1796. prev = i;
  1797. in_id = false;
  1798. }
  1799. } else if (is_unicode_identifier_start(c)) {
  1800. // Start of new id, push prev element.
  1801. if (prev != i) {
  1802. ret.push_back(Vector3i(prev, i, TextServer::DIRECTION_AUTO));
  1803. }
  1804. prev = i;
  1805. in_id = true;
  1806. } else if (c == '\"') {
  1807. // String literal start, push prev element and ".
  1808. if (prev != i) {
  1809. ret.push_back(Vector3i(prev, i, TextServer::DIRECTION_AUTO));
  1810. }
  1811. prev = i + 1;
  1812. ret.push_back(Vector3i(i, i + 1, TextServer::DIRECTION_LTR));
  1813. in_string_literal = true;
  1814. } else if (c == '\'') {
  1815. // String literal start, push prev element and '.
  1816. if (prev != i) {
  1817. ret.push_back(Vector3i(prev, i, TextServer::DIRECTION_AUTO));
  1818. }
  1819. prev = i + 1;
  1820. ret.push_back(Vector3i(i, i + 1, TextServer::DIRECTION_LTR));
  1821. in_string_literal_single = true;
  1822. } else if (c == '#') {
  1823. // Start of comment, push prev element and #, skip the rest of the text.
  1824. if (prev != i) {
  1825. ret.push_back(Vector3i(prev, i, TextServer::DIRECTION_AUTO));
  1826. }
  1827. prev = i + 1;
  1828. ret.push_back(Vector3i(i, i + 1, TextServer::DIRECTION_LTR));
  1829. break;
  1830. }
  1831. }
  1832. if (prev < p_text.length()) {
  1833. ret.push_back(Vector3i(prev, p_text.length(), TextServer::DIRECTION_AUTO));
  1834. }
  1835. } break;
  1836. case STRUCTURED_TEXT_CUSTOM:
  1837. case STRUCTURED_TEXT_DEFAULT:
  1838. default: {
  1839. ret.push_back(Vector3i(0, p_text.length(), TextServer::DIRECTION_INHERITED));
  1840. }
  1841. }
  1842. return ret;
  1843. }
  1844. TypedArray<Dictionary> TextServer::_shaped_text_get_glyphs_wrapper(const RID &p_shaped) const {
  1845. TypedArray<Dictionary> ret;
  1846. const Glyph *glyphs = shaped_text_get_glyphs(p_shaped);
  1847. int gl_size = shaped_text_get_glyph_count(p_shaped);
  1848. for (int i = 0; i < gl_size; i++) {
  1849. Dictionary glyph;
  1850. glyph["start"] = glyphs[i].start;
  1851. glyph["end"] = glyphs[i].end;
  1852. glyph["repeat"] = glyphs[i].repeat;
  1853. glyph["count"] = glyphs[i].count;
  1854. glyph["flags"] = glyphs[i].flags;
  1855. glyph["offset"] = Vector2(glyphs[i].x_off, glyphs[i].y_off);
  1856. glyph["advance"] = glyphs[i].advance;
  1857. glyph["font_rid"] = glyphs[i].font_rid;
  1858. glyph["font_size"] = glyphs[i].font_size;
  1859. glyph["index"] = glyphs[i].index;
  1860. ret.push_back(glyph);
  1861. }
  1862. return ret;
  1863. }
  1864. TypedArray<Dictionary> TextServer::_shaped_text_sort_logical_wrapper(const RID &p_shaped) {
  1865. Array ret;
  1866. const Glyph *glyphs = shaped_text_sort_logical(p_shaped);
  1867. int gl_size = shaped_text_get_glyph_count(p_shaped);
  1868. for (int i = 0; i < gl_size; i++) {
  1869. Dictionary glyph;
  1870. glyph["start"] = glyphs[i].start;
  1871. glyph["end"] = glyphs[i].end;
  1872. glyph["repeat"] = glyphs[i].repeat;
  1873. glyph["count"] = glyphs[i].count;
  1874. glyph["flags"] = glyphs[i].flags;
  1875. glyph["offset"] = Vector2(glyphs[i].x_off, glyphs[i].y_off);
  1876. glyph["advance"] = glyphs[i].advance;
  1877. glyph["font_rid"] = glyphs[i].font_rid;
  1878. glyph["font_size"] = glyphs[i].font_size;
  1879. glyph["index"] = glyphs[i].index;
  1880. ret.push_back(glyph);
  1881. }
  1882. return ret;
  1883. }
  1884. TypedArray<Dictionary> TextServer::_shaped_text_get_ellipsis_glyphs_wrapper(const RID &p_shaped) const {
  1885. TypedArray<Dictionary> ret;
  1886. const Glyph *glyphs = shaped_text_get_ellipsis_glyphs(p_shaped);
  1887. int gl_size = shaped_text_get_ellipsis_glyph_count(p_shaped);
  1888. for (int i = 0; i < gl_size; i++) {
  1889. Dictionary glyph;
  1890. glyph["start"] = glyphs[i].start;
  1891. glyph["end"] = glyphs[i].end;
  1892. glyph["repeat"] = glyphs[i].repeat;
  1893. glyph["count"] = glyphs[i].count;
  1894. glyph["flags"] = glyphs[i].flags;
  1895. glyph["offset"] = Vector2(glyphs[i].x_off, glyphs[i].y_off);
  1896. glyph["advance"] = glyphs[i].advance;
  1897. glyph["font_rid"] = glyphs[i].font_rid;
  1898. glyph["font_size"] = glyphs[i].font_size;
  1899. glyph["index"] = glyphs[i].index;
  1900. ret.push_back(glyph);
  1901. }
  1902. return ret;
  1903. }
  1904. bool TextServer::is_valid_identifier(const String &p_string) const {
  1905. const char32_t *str = p_string.ptr();
  1906. int len = p_string.length();
  1907. if (len == 0) {
  1908. return false; // Empty string.
  1909. }
  1910. if (!is_unicode_identifier_start(str[0])) {
  1911. return false;
  1912. }
  1913. for (int i = 1; i < len; i++) {
  1914. if (!is_unicode_identifier_continue(str[i])) {
  1915. return false;
  1916. }
  1917. }
  1918. return true;
  1919. }
  1920. bool TextServer::is_valid_letter(char32_t p_unicode) const {
  1921. return is_unicode_letter(p_unicode);
  1922. }
  1923. TextServer::TextServer() {
  1924. _init_diacritics_map();
  1925. }
  1926. TextServer::~TextServer() {
  1927. }