text_server.cpp 91 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181
  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_get_supported_glyphs", "font_rid"), &TextServer::font_get_supported_glyphs);
  272. ClassDB::bind_method(D_METHOD("font_render_range", "font_rid", "size", "start", "end"), &TextServer::font_render_range);
  273. ClassDB::bind_method(D_METHOD("font_render_glyph", "font_rid", "size", "index"), &TextServer::font_render_glyph);
  274. ClassDB::bind_method(D_METHOD("font_draw_glyph", "font_rid", "canvas", "size", "pos", "index", "color"), &TextServer::font_draw_glyph, DEFVAL(Color(1, 1, 1)));
  275. 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)));
  276. ClassDB::bind_method(D_METHOD("font_is_language_supported", "font_rid", "language"), &TextServer::font_is_language_supported);
  277. ClassDB::bind_method(D_METHOD("font_set_language_support_override", "font_rid", "language", "supported"), &TextServer::font_set_language_support_override);
  278. ClassDB::bind_method(D_METHOD("font_get_language_support_override", "font_rid", "language"), &TextServer::font_get_language_support_override);
  279. ClassDB::bind_method(D_METHOD("font_remove_language_support_override", "font_rid", "language"), &TextServer::font_remove_language_support_override);
  280. ClassDB::bind_method(D_METHOD("font_get_language_support_overrides", "font_rid"), &TextServer::font_get_language_support_overrides);
  281. ClassDB::bind_method(D_METHOD("font_is_script_supported", "font_rid", "script"), &TextServer::font_is_script_supported);
  282. ClassDB::bind_method(D_METHOD("font_set_script_support_override", "font_rid", "script", "supported"), &TextServer::font_set_script_support_override);
  283. ClassDB::bind_method(D_METHOD("font_get_script_support_override", "font_rid", "script"), &TextServer::font_get_script_support_override);
  284. ClassDB::bind_method(D_METHOD("font_remove_script_support_override", "font_rid", "script"), &TextServer::font_remove_script_support_override);
  285. ClassDB::bind_method(D_METHOD("font_get_script_support_overrides", "font_rid"), &TextServer::font_get_script_support_overrides);
  286. ClassDB::bind_method(D_METHOD("font_set_opentype_feature_overrides", "font_rid", "overrides"), &TextServer::font_set_opentype_feature_overrides);
  287. ClassDB::bind_method(D_METHOD("font_get_opentype_feature_overrides", "font_rid"), &TextServer::font_get_opentype_feature_overrides);
  288. ClassDB::bind_method(D_METHOD("font_supported_feature_list", "font_rid"), &TextServer::font_supported_feature_list);
  289. ClassDB::bind_method(D_METHOD("font_supported_variation_list", "font_rid"), &TextServer::font_supported_variation_list);
  290. ClassDB::bind_method(D_METHOD("font_get_global_oversampling"), &TextServer::font_get_global_oversampling);
  291. ClassDB::bind_method(D_METHOD("font_set_global_oversampling", "oversampling"), &TextServer::font_set_global_oversampling);
  292. ClassDB::bind_method(D_METHOD("get_hex_code_box_size", "size", "index"), &TextServer::get_hex_code_box_size);
  293. ClassDB::bind_method(D_METHOD("draw_hex_code_box", "canvas", "size", "pos", "index", "color"), &TextServer::draw_hex_code_box);
  294. /* Shaped text buffer interface */
  295. ClassDB::bind_method(D_METHOD("create_shaped_text", "direction", "orientation"), &TextServer::create_shaped_text, DEFVAL(DIRECTION_AUTO), DEFVAL(ORIENTATION_HORIZONTAL));
  296. ClassDB::bind_method(D_METHOD("shaped_text_clear", "rid"), &TextServer::shaped_text_clear);
  297. ClassDB::bind_method(D_METHOD("shaped_text_set_direction", "shaped", "direction"), &TextServer::shaped_text_set_direction, DEFVAL(DIRECTION_AUTO));
  298. ClassDB::bind_method(D_METHOD("shaped_text_get_direction", "shaped"), &TextServer::shaped_text_get_direction);
  299. ClassDB::bind_method(D_METHOD("shaped_text_get_inferred_direction", "shaped"), &TextServer::shaped_text_get_inferred_direction);
  300. ClassDB::bind_method(D_METHOD("shaped_text_set_bidi_override", "shaped", "override"), &TextServer::shaped_text_set_bidi_override);
  301. ClassDB::bind_method(D_METHOD("shaped_text_set_custom_punctuation", "shaped", "punct"), &TextServer::shaped_text_set_custom_punctuation);
  302. ClassDB::bind_method(D_METHOD("shaped_text_get_custom_punctuation", "shaped"), &TextServer::shaped_text_get_custom_punctuation);
  303. ClassDB::bind_method(D_METHOD("shaped_text_set_custom_ellipsis", "shaped", "char"), &TextServer::shaped_text_set_custom_ellipsis);
  304. ClassDB::bind_method(D_METHOD("shaped_text_get_custom_ellipsis", "shaped"), &TextServer::shaped_text_get_custom_ellipsis);
  305. ClassDB::bind_method(D_METHOD("shaped_text_set_orientation", "shaped", "orientation"), &TextServer::shaped_text_set_orientation, DEFVAL(ORIENTATION_HORIZONTAL));
  306. ClassDB::bind_method(D_METHOD("shaped_text_get_orientation", "shaped"), &TextServer::shaped_text_get_orientation);
  307. ClassDB::bind_method(D_METHOD("shaped_text_set_preserve_invalid", "shaped", "enabled"), &TextServer::shaped_text_set_preserve_invalid);
  308. ClassDB::bind_method(D_METHOD("shaped_text_get_preserve_invalid", "shaped"), &TextServer::shaped_text_get_preserve_invalid);
  309. ClassDB::bind_method(D_METHOD("shaped_text_set_preserve_control", "shaped", "enabled"), &TextServer::shaped_text_set_preserve_control);
  310. ClassDB::bind_method(D_METHOD("shaped_text_get_preserve_control", "shaped"), &TextServer::shaped_text_get_preserve_control);
  311. ClassDB::bind_method(D_METHOD("shaped_text_set_spacing", "shaped", "spacing", "value"), &TextServer::shaped_text_set_spacing);
  312. ClassDB::bind_method(D_METHOD("shaped_text_get_spacing", "shaped", "spacing"), &TextServer::shaped_text_get_spacing);
  313. 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()));
  314. 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));
  315. 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));
  316. ClassDB::bind_method(D_METHOD("shaped_get_span_count", "shaped"), &TextServer::shaped_get_span_count);
  317. ClassDB::bind_method(D_METHOD("shaped_get_span_meta", "shaped", "index"), &TextServer::shaped_get_span_meta);
  318. ClassDB::bind_method(D_METHOD("shaped_set_span_update_font", "shaped", "index", "fonts", "size", "opentype_features"), &TextServer::shaped_set_span_update_font, DEFVAL(Dictionary()));
  319. ClassDB::bind_method(D_METHOD("shaped_text_substr", "shaped", "start", "length"), &TextServer::shaped_text_substr);
  320. ClassDB::bind_method(D_METHOD("shaped_text_get_parent", "shaped"), &TextServer::shaped_text_get_parent);
  321. 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));
  322. ClassDB::bind_method(D_METHOD("shaped_text_tab_align", "shaped", "tab_stops"), &TextServer::shaped_text_tab_align);
  323. ClassDB::bind_method(D_METHOD("shaped_text_shape", "shaped"), &TextServer::shaped_text_shape);
  324. ClassDB::bind_method(D_METHOD("shaped_text_is_ready", "shaped"), &TextServer::shaped_text_is_ready);
  325. ClassDB::bind_method(D_METHOD("shaped_text_has_visible_chars", "shaped"), &TextServer::shaped_text_has_visible_chars);
  326. ClassDB::bind_method(D_METHOD("shaped_text_get_glyphs", "shaped"), &TextServer::_shaped_text_get_glyphs_wrapper);
  327. ClassDB::bind_method(D_METHOD("shaped_text_sort_logical", "shaped"), &TextServer::_shaped_text_sort_logical_wrapper);
  328. ClassDB::bind_method(D_METHOD("shaped_text_get_glyph_count", "shaped"), &TextServer::shaped_text_get_glyph_count);
  329. ClassDB::bind_method(D_METHOD("shaped_text_get_range", "shaped"), &TextServer::shaped_text_get_range);
  330. 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));
  331. 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));
  332. 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));
  333. ClassDB::bind_method(D_METHOD("shaped_text_get_trim_pos", "shaped"), &TextServer::shaped_text_get_trim_pos);
  334. ClassDB::bind_method(D_METHOD("shaped_text_get_ellipsis_pos", "shaped"), &TextServer::shaped_text_get_ellipsis_pos);
  335. ClassDB::bind_method(D_METHOD("shaped_text_get_ellipsis_glyphs", "shaped"), &TextServer::_shaped_text_get_ellipsis_glyphs_wrapper);
  336. ClassDB::bind_method(D_METHOD("shaped_text_get_ellipsis_glyph_count", "shaped"), &TextServer::shaped_text_get_ellipsis_glyph_count);
  337. 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));
  338. ClassDB::bind_method(D_METHOD("shaped_text_get_objects", "shaped"), &TextServer::shaped_text_get_objects);
  339. ClassDB::bind_method(D_METHOD("shaped_text_get_object_rect", "shaped", "key"), &TextServer::shaped_text_get_object_rect);
  340. ClassDB::bind_method(D_METHOD("shaped_text_get_object_range", "shaped", "key"), &TextServer::shaped_text_get_object_range);
  341. ClassDB::bind_method(D_METHOD("shaped_text_get_object_glyph", "shaped", "key"), &TextServer::shaped_text_get_object_glyph);
  342. ClassDB::bind_method(D_METHOD("shaped_text_get_size", "shaped"), &TextServer::shaped_text_get_size);
  343. ClassDB::bind_method(D_METHOD("shaped_text_get_ascent", "shaped"), &TextServer::shaped_text_get_ascent);
  344. ClassDB::bind_method(D_METHOD("shaped_text_get_descent", "shaped"), &TextServer::shaped_text_get_descent);
  345. ClassDB::bind_method(D_METHOD("shaped_text_get_width", "shaped"), &TextServer::shaped_text_get_width);
  346. ClassDB::bind_method(D_METHOD("shaped_text_get_underline_position", "shaped"), &TextServer::shaped_text_get_underline_position);
  347. ClassDB::bind_method(D_METHOD("shaped_text_get_underline_thickness", "shaped"), &TextServer::shaped_text_get_underline_thickness);
  348. ClassDB::bind_method(D_METHOD("shaped_text_get_carets", "shaped", "position"), &TextServer::_shaped_text_get_carets_wrapper);
  349. ClassDB::bind_method(D_METHOD("shaped_text_get_selection", "shaped", "start", "end"), &TextServer::shaped_text_get_selection);
  350. ClassDB::bind_method(D_METHOD("shaped_text_hit_test_grapheme", "shaped", "coords"), &TextServer::shaped_text_hit_test_grapheme);
  351. ClassDB::bind_method(D_METHOD("shaped_text_hit_test_position", "shaped", "coords"), &TextServer::shaped_text_hit_test_position);
  352. ClassDB::bind_method(D_METHOD("shaped_text_get_grapheme_bounds", "shaped", "pos"), &TextServer::shaped_text_get_grapheme_bounds);
  353. ClassDB::bind_method(D_METHOD("shaped_text_next_grapheme_pos", "shaped", "pos"), &TextServer::shaped_text_next_grapheme_pos);
  354. ClassDB::bind_method(D_METHOD("shaped_text_prev_grapheme_pos", "shaped", "pos"), &TextServer::shaped_text_prev_grapheme_pos);
  355. ClassDB::bind_method(D_METHOD("shaped_text_get_character_breaks", "shaped"), &TextServer::shaped_text_get_character_breaks);
  356. ClassDB::bind_method(D_METHOD("shaped_text_next_character_pos", "shaped", "pos"), &TextServer::shaped_text_next_character_pos);
  357. ClassDB::bind_method(D_METHOD("shaped_text_prev_character_pos", "shaped", "pos"), &TextServer::shaped_text_prev_character_pos);
  358. ClassDB::bind_method(D_METHOD("shaped_text_closest_character_pos", "shaped", "pos"), &TextServer::shaped_text_closest_character_pos);
  359. 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)));
  360. 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)));
  361. ClassDB::bind_method(D_METHOD("shaped_text_get_dominant_direction_in_range", "shaped", "start", "end"), &TextServer::shaped_text_get_dominant_direction_in_range);
  362. ClassDB::bind_method(D_METHOD("format_number", "number", "language"), &TextServer::format_number, DEFVAL(""));
  363. ClassDB::bind_method(D_METHOD("parse_number", "number", "language"), &TextServer::parse_number, DEFVAL(""));
  364. ClassDB::bind_method(D_METHOD("percent_sign", "language"), &TextServer::percent_sign, DEFVAL(""));
  365. ClassDB::bind_method(D_METHOD("string_get_word_breaks", "string", "language", "chars_per_line"), &TextServer::string_get_word_breaks, DEFVAL(""), DEFVAL(0));
  366. ClassDB::bind_method(D_METHOD("string_get_character_breaks", "string", "language"), &TextServer::string_get_character_breaks, DEFVAL(""));
  367. ClassDB::bind_method(D_METHOD("is_confusable", "string", "dict"), &TextServer::is_confusable);
  368. ClassDB::bind_method(D_METHOD("spoof_check", "string"), &TextServer::spoof_check);
  369. ClassDB::bind_method(D_METHOD("strip_diacritics", "string"), &TextServer::strip_diacritics);
  370. ClassDB::bind_method(D_METHOD("is_valid_identifier", "string"), &TextServer::is_valid_identifier);
  371. ClassDB::bind_method(D_METHOD("is_valid_letter", "unicode"), &TextServer::is_valid_letter);
  372. ClassDB::bind_method(D_METHOD("string_to_upper", "string", "language"), &TextServer::string_to_upper, DEFVAL(""));
  373. ClassDB::bind_method(D_METHOD("string_to_lower", "string", "language"), &TextServer::string_to_lower, DEFVAL(""));
  374. ClassDB::bind_method(D_METHOD("string_to_title", "string", "language"), &TextServer::string_to_title, DEFVAL(""));
  375. ClassDB::bind_method(D_METHOD("parse_structured_text", "parser_type", "args", "text"), &TextServer::parse_structured_text);
  376. /* Font AA */
  377. BIND_ENUM_CONSTANT(FONT_ANTIALIASING_NONE);
  378. BIND_ENUM_CONSTANT(FONT_ANTIALIASING_GRAY);
  379. BIND_ENUM_CONSTANT(FONT_ANTIALIASING_LCD);
  380. BIND_ENUM_CONSTANT(FONT_LCD_SUBPIXEL_LAYOUT_NONE);
  381. BIND_ENUM_CONSTANT(FONT_LCD_SUBPIXEL_LAYOUT_HRGB);
  382. BIND_ENUM_CONSTANT(FONT_LCD_SUBPIXEL_LAYOUT_HBGR);
  383. BIND_ENUM_CONSTANT(FONT_LCD_SUBPIXEL_LAYOUT_VRGB);
  384. BIND_ENUM_CONSTANT(FONT_LCD_SUBPIXEL_LAYOUT_VBGR);
  385. BIND_ENUM_CONSTANT(FONT_LCD_SUBPIXEL_LAYOUT_MAX);
  386. /* Direction */
  387. BIND_ENUM_CONSTANT(DIRECTION_AUTO);
  388. BIND_ENUM_CONSTANT(DIRECTION_LTR);
  389. BIND_ENUM_CONSTANT(DIRECTION_RTL);
  390. BIND_ENUM_CONSTANT(DIRECTION_INHERITED);
  391. /* Orientation */
  392. BIND_ENUM_CONSTANT(ORIENTATION_HORIZONTAL);
  393. BIND_ENUM_CONSTANT(ORIENTATION_VERTICAL);
  394. /* JustificationFlag */
  395. BIND_BITFIELD_FLAG(JUSTIFICATION_NONE);
  396. BIND_BITFIELD_FLAG(JUSTIFICATION_KASHIDA);
  397. BIND_BITFIELD_FLAG(JUSTIFICATION_WORD_BOUND);
  398. BIND_BITFIELD_FLAG(JUSTIFICATION_TRIM_EDGE_SPACES);
  399. BIND_BITFIELD_FLAG(JUSTIFICATION_AFTER_LAST_TAB);
  400. BIND_BITFIELD_FLAG(JUSTIFICATION_CONSTRAIN_ELLIPSIS);
  401. BIND_BITFIELD_FLAG(JUSTIFICATION_SKIP_LAST_LINE);
  402. BIND_BITFIELD_FLAG(JUSTIFICATION_SKIP_LAST_LINE_WITH_VISIBLE_CHARS);
  403. BIND_BITFIELD_FLAG(JUSTIFICATION_DO_NOT_SKIP_SINGLE_LINE);
  404. /* AutowrapMode */
  405. BIND_ENUM_CONSTANT(AUTOWRAP_OFF);
  406. BIND_ENUM_CONSTANT(AUTOWRAP_ARBITRARY);
  407. BIND_ENUM_CONSTANT(AUTOWRAP_WORD);
  408. BIND_ENUM_CONSTANT(AUTOWRAP_WORD_SMART);
  409. /* LineBreakFlag */
  410. BIND_BITFIELD_FLAG(BREAK_NONE);
  411. BIND_BITFIELD_FLAG(BREAK_MANDATORY);
  412. BIND_BITFIELD_FLAG(BREAK_WORD_BOUND);
  413. BIND_BITFIELD_FLAG(BREAK_GRAPHEME_BOUND);
  414. BIND_BITFIELD_FLAG(BREAK_ADAPTIVE);
  415. BIND_BITFIELD_FLAG(BREAK_TRIM_EDGE_SPACES);
  416. BIND_BITFIELD_FLAG(BREAK_TRIM_INDENT);
  417. /* VisibleCharactersBehavior */
  418. BIND_ENUM_CONSTANT(VC_CHARS_BEFORE_SHAPING);
  419. BIND_ENUM_CONSTANT(VC_CHARS_AFTER_SHAPING);
  420. BIND_ENUM_CONSTANT(VC_GLYPHS_AUTO);
  421. BIND_ENUM_CONSTANT(VC_GLYPHS_LTR);
  422. BIND_ENUM_CONSTANT(VC_GLYPHS_RTL);
  423. /* OverrunBehavior */
  424. BIND_ENUM_CONSTANT(OVERRUN_NO_TRIMMING);
  425. BIND_ENUM_CONSTANT(OVERRUN_TRIM_CHAR);
  426. BIND_ENUM_CONSTANT(OVERRUN_TRIM_WORD);
  427. BIND_ENUM_CONSTANT(OVERRUN_TRIM_ELLIPSIS);
  428. BIND_ENUM_CONSTANT(OVERRUN_TRIM_WORD_ELLIPSIS);
  429. /* TextOverrunFlag */
  430. BIND_BITFIELD_FLAG(OVERRUN_NO_TRIM);
  431. BIND_BITFIELD_FLAG(OVERRUN_TRIM);
  432. BIND_BITFIELD_FLAG(OVERRUN_TRIM_WORD_ONLY);
  433. BIND_BITFIELD_FLAG(OVERRUN_ADD_ELLIPSIS);
  434. BIND_BITFIELD_FLAG(OVERRUN_ENFORCE_ELLIPSIS);
  435. BIND_BITFIELD_FLAG(OVERRUN_JUSTIFICATION_AWARE);
  436. /* GraphemeFlag */
  437. BIND_BITFIELD_FLAG(GRAPHEME_IS_VALID);
  438. BIND_BITFIELD_FLAG(GRAPHEME_IS_RTL);
  439. BIND_BITFIELD_FLAG(GRAPHEME_IS_VIRTUAL);
  440. BIND_BITFIELD_FLAG(GRAPHEME_IS_SPACE);
  441. BIND_BITFIELD_FLAG(GRAPHEME_IS_BREAK_HARD);
  442. BIND_BITFIELD_FLAG(GRAPHEME_IS_BREAK_SOFT);
  443. BIND_BITFIELD_FLAG(GRAPHEME_IS_TAB);
  444. BIND_BITFIELD_FLAG(GRAPHEME_IS_ELONGATION);
  445. BIND_BITFIELD_FLAG(GRAPHEME_IS_PUNCTUATION);
  446. BIND_BITFIELD_FLAG(GRAPHEME_IS_UNDERSCORE);
  447. BIND_BITFIELD_FLAG(GRAPHEME_IS_CONNECTED);
  448. BIND_BITFIELD_FLAG(GRAPHEME_IS_SAFE_TO_INSERT_TATWEEL);
  449. BIND_BITFIELD_FLAG(GRAPHEME_IS_EMBEDDED_OBJECT);
  450. BIND_BITFIELD_FLAG(GRAPHEME_IS_SOFT_HYPHEN);
  451. /* Hinting */
  452. BIND_ENUM_CONSTANT(HINTING_NONE);
  453. BIND_ENUM_CONSTANT(HINTING_LIGHT);
  454. BIND_ENUM_CONSTANT(HINTING_NORMAL);
  455. /* SubpixelPositioning */
  456. BIND_ENUM_CONSTANT(SUBPIXEL_POSITIONING_DISABLED);
  457. BIND_ENUM_CONSTANT(SUBPIXEL_POSITIONING_AUTO);
  458. BIND_ENUM_CONSTANT(SUBPIXEL_POSITIONING_ONE_HALF);
  459. BIND_ENUM_CONSTANT(SUBPIXEL_POSITIONING_ONE_QUARTER);
  460. BIND_ENUM_CONSTANT(SUBPIXEL_POSITIONING_ONE_HALF_MAX_SIZE);
  461. BIND_ENUM_CONSTANT(SUBPIXEL_POSITIONING_ONE_QUARTER_MAX_SIZE);
  462. /* Feature */
  463. BIND_ENUM_CONSTANT(FEATURE_SIMPLE_LAYOUT);
  464. BIND_ENUM_CONSTANT(FEATURE_BIDI_LAYOUT);
  465. BIND_ENUM_CONSTANT(FEATURE_VERTICAL_LAYOUT);
  466. BIND_ENUM_CONSTANT(FEATURE_SHAPING);
  467. BIND_ENUM_CONSTANT(FEATURE_KASHIDA_JUSTIFICATION);
  468. BIND_ENUM_CONSTANT(FEATURE_BREAK_ITERATORS);
  469. BIND_ENUM_CONSTANT(FEATURE_FONT_BITMAP);
  470. BIND_ENUM_CONSTANT(FEATURE_FONT_DYNAMIC);
  471. BIND_ENUM_CONSTANT(FEATURE_FONT_MSDF);
  472. BIND_ENUM_CONSTANT(FEATURE_FONT_SYSTEM);
  473. BIND_ENUM_CONSTANT(FEATURE_FONT_VARIABLE);
  474. BIND_ENUM_CONSTANT(FEATURE_CONTEXT_SENSITIVE_CASE_CONVERSION);
  475. BIND_ENUM_CONSTANT(FEATURE_USE_SUPPORT_DATA);
  476. BIND_ENUM_CONSTANT(FEATURE_UNICODE_IDENTIFIERS);
  477. BIND_ENUM_CONSTANT(FEATURE_UNICODE_SECURITY);
  478. /* FT Contour Point Types */
  479. BIND_ENUM_CONSTANT(CONTOUR_CURVE_TAG_ON);
  480. BIND_ENUM_CONSTANT(CONTOUR_CURVE_TAG_OFF_CONIC);
  481. BIND_ENUM_CONSTANT(CONTOUR_CURVE_TAG_OFF_CUBIC);
  482. /* Font Spacing */
  483. BIND_ENUM_CONSTANT(SPACING_GLYPH);
  484. BIND_ENUM_CONSTANT(SPACING_SPACE);
  485. BIND_ENUM_CONSTANT(SPACING_TOP);
  486. BIND_ENUM_CONSTANT(SPACING_BOTTOM);
  487. BIND_ENUM_CONSTANT(SPACING_MAX);
  488. /* Font Style */
  489. BIND_BITFIELD_FLAG(FONT_BOLD);
  490. BIND_BITFIELD_FLAG(FONT_ITALIC);
  491. BIND_BITFIELD_FLAG(FONT_FIXED_WIDTH);
  492. /* Structured text parser */
  493. BIND_ENUM_CONSTANT(STRUCTURED_TEXT_DEFAULT);
  494. BIND_ENUM_CONSTANT(STRUCTURED_TEXT_URI);
  495. BIND_ENUM_CONSTANT(STRUCTURED_TEXT_FILE);
  496. BIND_ENUM_CONSTANT(STRUCTURED_TEXT_EMAIL);
  497. BIND_ENUM_CONSTANT(STRUCTURED_TEXT_LIST);
  498. BIND_ENUM_CONSTANT(STRUCTURED_TEXT_GDSCRIPT);
  499. BIND_ENUM_CONSTANT(STRUCTURED_TEXT_CUSTOM);
  500. /* Fixed size scale mode */
  501. BIND_ENUM_CONSTANT(FIXED_SIZE_SCALE_DISABLE);
  502. BIND_ENUM_CONSTANT(FIXED_SIZE_SCALE_INTEGER_ONLY);
  503. BIND_ENUM_CONSTANT(FIXED_SIZE_SCALE_ENABLED);
  504. }
  505. _FORCE_INLINE_ int32_t ot_tag_from_string(const char *p_str, int p_len) {
  506. char tag[4];
  507. uint32_t i;
  508. if (!p_str || !p_len || !*p_str) {
  509. return OT_TAG(0, 0, 0, 0);
  510. }
  511. if (p_len < 0 || p_len > 4) {
  512. p_len = 4;
  513. }
  514. for (i = 0; i < (uint32_t)p_len && p_str[i]; i++) {
  515. tag[i] = p_str[i];
  516. }
  517. for (; i < 4; i++) {
  518. tag[i] = ' ';
  519. }
  520. return OT_TAG(tag[0], tag[1], tag[2], tag[3]);
  521. }
  522. int64_t TextServer::name_to_tag(const String &p_name) const {
  523. // No readable name, use tag string.
  524. return ot_tag_from_string(p_name.replace("custom_", "").ascii().get_data(), -1);
  525. }
  526. _FORCE_INLINE_ void ot_tag_to_string(int32_t p_tag, char *p_buf) {
  527. p_buf[0] = (char)(uint8_t)(p_tag >> 24);
  528. p_buf[1] = (char)(uint8_t)(p_tag >> 16);
  529. p_buf[2] = (char)(uint8_t)(p_tag >> 8);
  530. p_buf[3] = (char)(uint8_t)(p_tag >> 0);
  531. }
  532. String TextServer::tag_to_name(int64_t p_tag) const {
  533. // No readable name, use tag string.
  534. char name[5];
  535. memset(name, 0, 5);
  536. ot_tag_to_string(p_tag, name);
  537. return String("custom_") + String(name);
  538. }
  539. Vector2 TextServer::get_hex_code_box_size(int64_t p_size, int64_t p_index) const {
  540. int w = ((p_index <= 0xFF) ? 1 : ((p_index <= 0xFFFF) ? 2 : 3));
  541. int sp = MAX(0, w - 1);
  542. int sz = MAX(1, Math::round(p_size / 15.f));
  543. return Vector2(4 + 3 * w + sp + 1, 15) * sz;
  544. }
  545. 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 {
  546. static uint8_t chars[] = { 0x7E, 0x30, 0x6D, 0x79, 0x33, 0x5B, 0x5F, 0x70, 0x7F, 0x7B, 0x77, 0x1F, 0x4E, 0x3D, 0x4F, 0x47, 0x00 };
  547. uint8_t x = chars[p_index];
  548. if (x & (1 << 6)) {
  549. RenderingServer::get_singleton()->canvas_item_add_rect(p_canvas, Rect2(p_pos, Size2(3, 1) * p_size), p_color);
  550. }
  551. if (x & (1 << 5)) {
  552. RenderingServer::get_singleton()->canvas_item_add_rect(p_canvas, Rect2(p_pos + Point2(2, 0) * p_size, Size2(1, 3) * p_size), p_color);
  553. }
  554. if (x & (1 << 4)) {
  555. RenderingServer::get_singleton()->canvas_item_add_rect(p_canvas, Rect2(p_pos + Point2(2, 2) * p_size, Size2(1, 3) * p_size), p_color);
  556. }
  557. if (x & (1 << 3)) {
  558. RenderingServer::get_singleton()->canvas_item_add_rect(p_canvas, Rect2(p_pos + Point2(0, 4) * p_size, Size2(3, 1) * p_size), p_color);
  559. }
  560. if (x & (1 << 2)) {
  561. RenderingServer::get_singleton()->canvas_item_add_rect(p_canvas, Rect2(p_pos + Point2(0, 2) * p_size, Size2(1, 3) * p_size), p_color);
  562. }
  563. if (x & (1 << 1)) {
  564. RenderingServer::get_singleton()->canvas_item_add_rect(p_canvas, Rect2(p_pos, Size2(1, 3) * p_size), p_color);
  565. }
  566. if (x & (1 << 0)) {
  567. RenderingServer::get_singleton()->canvas_item_add_rect(p_canvas, Rect2(p_pos + Point2(0, 2) * p_size, Size2(3, 1) * p_size), p_color);
  568. }
  569. }
  570. 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 {
  571. if (p_index == 0) {
  572. return;
  573. }
  574. int w = ((p_index <= 0xFF) ? 1 : ((p_index <= 0xFFFF) ? 2 : 3));
  575. int sp = MAX(0, w - 1);
  576. int sz = MAX(1, Math::round(p_size / 15.f));
  577. Size2 size = Vector2(4 + 3 * w + sp, 15) * sz;
  578. Point2 pos = p_pos - Point2i(0, size.y * 0.85);
  579. // Draw frame.
  580. RenderingServer::get_singleton()->canvas_item_add_rect(p_canvas, Rect2(pos + Point2(0, 0), Size2(sz, size.y)), p_color);
  581. RenderingServer::get_singleton()->canvas_item_add_rect(p_canvas, Rect2(pos + Point2(size.x - sz, 0), Size2(sz, size.y)), p_color);
  582. RenderingServer::get_singleton()->canvas_item_add_rect(p_canvas, Rect2(pos + Point2(0, 0), Size2(size.x, sz)), p_color);
  583. RenderingServer::get_singleton()->canvas_item_add_rect(p_canvas, Rect2(pos + Point2(0, size.y - sz), Size2(size.x, sz)), p_color);
  584. uint8_t a = p_index & 0x0F;
  585. uint8_t b = (p_index >> 4) & 0x0F;
  586. uint8_t c = (p_index >> 8) & 0x0F;
  587. uint8_t d = (p_index >> 12) & 0x0F;
  588. uint8_t e = (p_index >> 16) & 0x0F;
  589. uint8_t f = (p_index >> 20) & 0x0F;
  590. // Draw hex code.
  591. if (p_index <= 0xFF) {
  592. _draw_hex_code_box_number(p_canvas, sz, pos + Point2(2, 2) * sz, b, p_color);
  593. _draw_hex_code_box_number(p_canvas, sz, pos + Point2(2, 8) * sz, a, p_color);
  594. } else if (p_index <= 0xFFFF) {
  595. _draw_hex_code_box_number(p_canvas, sz, pos + Point2(2, 2) * sz, d, p_color);
  596. _draw_hex_code_box_number(p_canvas, sz, pos + Point2(6, 2) * sz, c, p_color);
  597. _draw_hex_code_box_number(p_canvas, sz, pos + Point2(2, 8) * sz, b, p_color);
  598. _draw_hex_code_box_number(p_canvas, sz, pos + Point2(6, 8) * sz, a, p_color);
  599. } else {
  600. _draw_hex_code_box_number(p_canvas, sz, pos + Point2(2, 2) * sz, f, p_color);
  601. _draw_hex_code_box_number(p_canvas, sz, pos + Point2(6, 2) * sz, e, p_color);
  602. _draw_hex_code_box_number(p_canvas, sz, pos + Point2(10, 2) * sz, d, p_color);
  603. _draw_hex_code_box_number(p_canvas, sz, pos + Point2(2, 8) * sz, c, p_color);
  604. _draw_hex_code_box_number(p_canvas, sz, pos + Point2(6, 8) * sz, b, p_color);
  605. _draw_hex_code_box_number(p_canvas, sz, pos + Point2(10, 8) * sz, a, p_color);
  606. }
  607. }
  608. bool TextServer::shaped_text_has_visible_chars(const RID &p_shaped) const {
  609. int v_size = shaped_text_get_glyph_count(p_shaped);
  610. if (v_size == 0) {
  611. return false;
  612. }
  613. const Glyph *glyphs = shaped_text_get_glyphs(p_shaped);
  614. for (int i = 0; i < v_size; i++) {
  615. if (glyphs[i].index != 0 && (glyphs[i].flags & GRAPHEME_IS_VIRTUAL) != GRAPHEME_IS_VIRTUAL) {
  616. return true;
  617. }
  618. }
  619. return false;
  620. }
  621. 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 {
  622. PackedInt32Array lines;
  623. ERR_FAIL_COND_V(p_width.is_empty(), lines);
  624. TextServer::Orientation orientation = shaped_text_get_orientation(p_shaped);
  625. const_cast<TextServer *>(this)->shaped_text_update_breaks(p_shaped);
  626. const Vector2i &range = shaped_text_get_range(p_shaped);
  627. real_t width = 0.f;
  628. int line_start = MAX(p_start, range.x);
  629. int last_end = line_start;
  630. int prev_safe_break = 0;
  631. int last_safe_break = -1;
  632. int word_count = 0;
  633. int chunk = 0;
  634. bool trim_next = false;
  635. int l_size = shaped_text_get_glyph_count(p_shaped);
  636. const Glyph *l_gl = const_cast<TextServer *>(this)->shaped_text_sort_logical(p_shaped);
  637. double indent = 0.0;
  638. if (p_break_flags.has_flag(BREAK_TRIM_INDENT)) {
  639. for (int i = 0; i < l_size; i++) {
  640. if ((l_gl[i].flags & GRAPHEME_IS_TAB) == GRAPHEME_IS_TAB || (l_gl[i].flags & GRAPHEME_IS_SPACE) == GRAPHEME_IS_SPACE) {
  641. indent += l_gl[i].advance * l_gl[i].repeat;
  642. } else {
  643. break;
  644. }
  645. }
  646. }
  647. for (int i = 0; i < l_size; i++) {
  648. double l_width = p_width[chunk];
  649. if (l_width > indent) {
  650. l_width -= indent;
  651. }
  652. if (l_gl[i].start < p_start) {
  653. prev_safe_break = i + 1;
  654. continue;
  655. }
  656. if (l_gl[i].count > 0) {
  657. if ((l_width > 0) && (width + l_gl[i].advance > l_width) && (last_safe_break >= 0)) {
  658. if (p_break_flags.has_flag(BREAK_TRIM_EDGE_SPACES)) {
  659. int start_pos = prev_safe_break;
  660. int end_pos = last_safe_break;
  661. 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)) {
  662. start_pos += l_gl[start_pos].count;
  663. }
  664. 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)) {
  665. end_pos -= l_gl[end_pos].count;
  666. }
  667. if (last_end <= l_gl[start_pos].start) {
  668. lines.push_back(l_gl[start_pos].start);
  669. lines.push_back(l_gl[end_pos].end);
  670. last_end = l_gl[end_pos].end;
  671. }
  672. trim_next = true;
  673. } else {
  674. if (last_end <= line_start) {
  675. lines.push_back(line_start);
  676. lines.push_back(l_gl[last_safe_break].end);
  677. last_end = l_gl[last_safe_break].end;
  678. }
  679. }
  680. line_start = l_gl[last_safe_break].end;
  681. prev_safe_break = last_safe_break + 1;
  682. i = last_safe_break;
  683. last_safe_break = -1;
  684. width = 0;
  685. word_count = 0;
  686. chunk++;
  687. if (chunk >= p_width.size()) {
  688. chunk = 0;
  689. if (p_once) {
  690. return lines;
  691. }
  692. }
  693. continue;
  694. }
  695. if (p_break_flags.has_flag(BREAK_MANDATORY)) {
  696. if ((l_gl[i].flags & GRAPHEME_IS_BREAK_HARD) == GRAPHEME_IS_BREAK_HARD) {
  697. if (p_break_flags.has_flag(BREAK_TRIM_EDGE_SPACES)) {
  698. int start_pos = prev_safe_break;
  699. int end_pos = i;
  700. 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)) {
  701. start_pos += l_gl[start_pos].count;
  702. }
  703. 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)) {
  704. end_pos -= l_gl[end_pos].count;
  705. }
  706. if (last_end <= l_gl[start_pos].start) {
  707. lines.push_back(l_gl[start_pos].start);
  708. lines.push_back(l_gl[end_pos].end);
  709. last_end = l_gl[end_pos].end;
  710. }
  711. trim_next = false;
  712. } else {
  713. if (last_end <= line_start) {
  714. lines.push_back(line_start);
  715. lines.push_back(l_gl[i].end);
  716. last_end = l_gl[i].end;
  717. }
  718. }
  719. line_start = l_gl[i].end;
  720. prev_safe_break = i + 1;
  721. last_safe_break = -1;
  722. width = 0;
  723. chunk = 0;
  724. if (p_once) {
  725. return lines;
  726. }
  727. continue;
  728. }
  729. }
  730. if (p_break_flags.has_flag(BREAK_WORD_BOUND)) {
  731. if ((l_gl[i].flags & GRAPHEME_IS_BREAK_SOFT) == GRAPHEME_IS_BREAK_SOFT) {
  732. if ((l_gl[i].flags & GRAPHEME_IS_SOFT_HYPHEN) == GRAPHEME_IS_SOFT_HYPHEN) {
  733. uint32_t gl = font_get_glyph_index(l_gl[i].font_rid, l_gl[i].font_size, 0x00ad, 0);
  734. float w = font_get_glyph_advance(l_gl[i].font_rid, l_gl[i].font_size, gl)[(orientation == ORIENTATION_HORIZONTAL) ? 0 : 1];
  735. if (width + l_gl[i].advance + w <= p_width[chunk]) {
  736. last_safe_break = i;
  737. word_count++;
  738. }
  739. } else {
  740. last_safe_break = i;
  741. word_count++;
  742. }
  743. }
  744. }
  745. if (p_break_flags.has_flag(BREAK_GRAPHEME_BOUND) && word_count == 0) {
  746. last_safe_break = i;
  747. }
  748. }
  749. width += l_gl[i].advance;
  750. }
  751. if (l_size > 0) {
  752. if (lines.size() == 0 || (lines[lines.size() - 1] < range.y && prev_safe_break < l_size)) {
  753. if (p_break_flags.has_flag(BREAK_TRIM_EDGE_SPACES)) {
  754. int start_pos = (prev_safe_break < l_size) ? prev_safe_break : l_size - 1;
  755. int end_pos = l_size - 1;
  756. 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)) {
  757. start_pos += l_gl[start_pos].count;
  758. }
  759. lines.push_back(l_gl[start_pos].start);
  760. } else {
  761. lines.push_back(line_start);
  762. }
  763. lines.push_back(range.y);
  764. }
  765. } else {
  766. lines.push_back(0);
  767. lines.push_back(0);
  768. }
  769. return lines;
  770. }
  771. 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 {
  772. PackedInt32Array lines;
  773. const_cast<TextServer *>(this)->shaped_text_update_breaks(p_shaped);
  774. const Vector2i &range = shaped_text_get_range(p_shaped);
  775. double width = 0.f;
  776. int line_start = MAX(p_start, range.x);
  777. int last_end = line_start;
  778. int prev_safe_break = 0;
  779. int last_safe_break = -1;
  780. int word_count = 0;
  781. bool trim_next = false;
  782. TextServer::Orientation orientation = shaped_text_get_orientation(p_shaped);
  783. int l_size = shaped_text_get_glyph_count(p_shaped);
  784. const Glyph *l_gl = const_cast<TextServer *>(this)->shaped_text_sort_logical(p_shaped);
  785. double indent = 0.0;
  786. if (p_break_flags.has_flag(BREAK_TRIM_INDENT)) {
  787. for (int i = 0; i < l_size; i++) {
  788. if ((l_gl[i].flags & GRAPHEME_IS_TAB) == GRAPHEME_IS_TAB || (l_gl[i].flags & GRAPHEME_IS_SPACE) == GRAPHEME_IS_SPACE) {
  789. indent += l_gl[i].advance * l_gl[i].repeat;
  790. } else {
  791. break;
  792. }
  793. }
  794. }
  795. double l_width = p_width;
  796. for (int i = 0; i < l_size; i++) {
  797. if (l_gl[i].start < p_start) {
  798. prev_safe_break = i + 1;
  799. continue;
  800. }
  801. if (l_gl[i].count > 0) {
  802. if ((l_width > 0) && (width + l_gl[i].advance * l_gl[i].repeat > l_width) && (last_safe_break >= 0)) {
  803. if (p_break_flags.has_flag(BREAK_TRIM_EDGE_SPACES)) {
  804. int start_pos = prev_safe_break;
  805. int end_pos = last_safe_break;
  806. 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)) {
  807. start_pos += l_gl[start_pos].count;
  808. }
  809. 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)) {
  810. end_pos -= l_gl[end_pos].count;
  811. }
  812. if (last_end <= l_gl[start_pos].start) {
  813. lines.push_back(l_gl[start_pos].start);
  814. lines.push_back(l_gl[end_pos].end);
  815. if (p_width > indent) {
  816. l_width = p_width - indent;
  817. }
  818. last_end = l_gl[end_pos].end;
  819. }
  820. trim_next = true;
  821. } else {
  822. if (last_end <= line_start) {
  823. lines.push_back(line_start);
  824. lines.push_back(l_gl[last_safe_break].end);
  825. if (p_width > indent) {
  826. l_width = p_width - indent;
  827. }
  828. last_end = l_gl[last_safe_break].end;
  829. }
  830. }
  831. line_start = l_gl[last_safe_break].end;
  832. prev_safe_break = last_safe_break + 1;
  833. i = last_safe_break;
  834. last_safe_break = -1;
  835. width = 0;
  836. word_count = 0;
  837. continue;
  838. }
  839. if (p_break_flags.has_flag(BREAK_MANDATORY)) {
  840. if ((l_gl[i].flags & GRAPHEME_IS_BREAK_HARD) == GRAPHEME_IS_BREAK_HARD) {
  841. if (p_break_flags.has_flag(BREAK_TRIM_EDGE_SPACES)) {
  842. int start_pos = prev_safe_break;
  843. int end_pos = i;
  844. 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)) {
  845. start_pos += l_gl[start_pos].count;
  846. }
  847. 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)) {
  848. end_pos -= l_gl[end_pos].count;
  849. }
  850. trim_next = false;
  851. if (last_end <= l_gl[start_pos].start) {
  852. lines.push_back(l_gl[start_pos].start);
  853. lines.push_back(l_gl[end_pos].end);
  854. if (p_width > indent) {
  855. l_width = p_width - indent;
  856. }
  857. last_end = l_gl[end_pos].end;
  858. }
  859. } else {
  860. if (last_end <= line_start) {
  861. lines.push_back(line_start);
  862. lines.push_back(l_gl[i].end);
  863. if (p_width > indent) {
  864. l_width = p_width - indent;
  865. }
  866. last_end = l_gl[i].end;
  867. }
  868. }
  869. line_start = l_gl[i].end;
  870. prev_safe_break = i + 1;
  871. last_safe_break = -1;
  872. width = 0;
  873. continue;
  874. }
  875. }
  876. if (p_break_flags.has_flag(BREAK_WORD_BOUND)) {
  877. if ((l_gl[i].flags & GRAPHEME_IS_BREAK_SOFT) == GRAPHEME_IS_BREAK_SOFT) {
  878. if ((l_gl[i].flags & GRAPHEME_IS_SOFT_HYPHEN) == GRAPHEME_IS_SOFT_HYPHEN) {
  879. uint32_t gl = font_get_glyph_index(l_gl[i].font_rid, l_gl[i].font_size, 0x00AD, 0);
  880. float w = font_get_glyph_advance(l_gl[i].font_rid, l_gl[i].font_size, gl)[(orientation == ORIENTATION_HORIZONTAL) ? 0 : 1];
  881. if (width + l_gl[i].advance + w <= p_width) {
  882. last_safe_break = i;
  883. word_count++;
  884. }
  885. } else {
  886. last_safe_break = i;
  887. word_count++;
  888. }
  889. }
  890. if (p_break_flags.has_flag(BREAK_ADAPTIVE) && word_count == 0) {
  891. last_safe_break = i;
  892. }
  893. }
  894. if (p_break_flags.has_flag(BREAK_GRAPHEME_BOUND)) {
  895. last_safe_break = i;
  896. }
  897. }
  898. width += l_gl[i].advance * l_gl[i].repeat;
  899. }
  900. if (l_size > 0) {
  901. if (lines.size() == 0 || (lines[lines.size() - 1] < range.y && prev_safe_break < l_size)) {
  902. if (p_break_flags.has_flag(BREAK_TRIM_EDGE_SPACES)) {
  903. int start_pos = (prev_safe_break < l_size) ? prev_safe_break : l_size - 1;
  904. int end_pos = l_size - 1;
  905. 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)) {
  906. start_pos += l_gl[start_pos].count;
  907. }
  908. lines.push_back(l_gl[start_pos].start);
  909. } else {
  910. lines.push_back(line_start);
  911. }
  912. lines.push_back(range.y);
  913. }
  914. } else {
  915. lines.push_back(0);
  916. lines.push_back(0);
  917. }
  918. return lines;
  919. }
  920. 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 {
  921. PackedInt32Array words;
  922. const_cast<TextServer *>(this)->shaped_text_update_justification_ops(p_shaped);
  923. const Vector2i &range = shaped_text_get_range(p_shaped);
  924. int word_start = range.x;
  925. const int l_size = shaped_text_get_glyph_count(p_shaped);
  926. const Glyph *l_gl = const_cast<TextServer *>(this)->shaped_text_sort_logical(p_shaped);
  927. for (int i = 0; i < l_size; i++) {
  928. if (l_gl[i].count > 0) {
  929. if ((l_gl[i].flags & p_grapheme_flags) != 0 && (l_gl[i].flags & p_skip_grapheme_flags) == 0) {
  930. int next = (i == 0) ? l_gl[i].start : l_gl[i - 1].end;
  931. if (word_start < next) {
  932. words.push_back(word_start);
  933. words.push_back(next);
  934. }
  935. word_start = l_gl[i].end;
  936. }
  937. }
  938. }
  939. if (l_size > 0) {
  940. if (word_start != range.y) {
  941. words.push_back(word_start);
  942. words.push_back(range.y);
  943. }
  944. }
  945. return words;
  946. }
  947. CaretInfo TextServer::shaped_text_get_carets(const RID &p_shaped, int64_t p_position) const {
  948. Vector<Rect2> carets;
  949. TextServer::Orientation orientation = shaped_text_get_orientation(p_shaped);
  950. const Vector2 &range = shaped_text_get_range(p_shaped);
  951. real_t ascent = shaped_text_get_ascent(p_shaped);
  952. real_t descent = shaped_text_get_descent(p_shaped);
  953. real_t height = (ascent + descent) / 2;
  954. real_t off = 0.0f;
  955. CaretInfo caret;
  956. caret.l_dir = DIRECTION_AUTO;
  957. caret.t_dir = DIRECTION_AUTO;
  958. int v_size = shaped_text_get_glyph_count(p_shaped);
  959. const Glyph *glyphs = shaped_text_get_glyphs(p_shaped);
  960. for (int i = 0; i < v_size; i++) {
  961. if (glyphs[i].count > 0) {
  962. // Caret before grapheme (top / left).
  963. if (p_position == glyphs[i].start && ((glyphs[i].flags & GRAPHEME_IS_VIRTUAL) != GRAPHEME_IS_VIRTUAL)) {
  964. real_t advance = 0.f;
  965. for (int j = 0; j < glyphs[i].count; j++) {
  966. advance += glyphs[i + j].advance * glyphs[i + j].repeat;
  967. }
  968. real_t char_adv = advance / (real_t)(glyphs[i].end - glyphs[i].start);
  969. Rect2 cr;
  970. if (orientation == ORIENTATION_HORIZONTAL) {
  971. if (glyphs[i].start == range.x) {
  972. cr.size.y = height * 2;
  973. } else {
  974. cr.size.y = height;
  975. }
  976. cr.position.y = -ascent;
  977. cr.position.x = off;
  978. if ((glyphs[i].flags & GRAPHEME_IS_RTL) == GRAPHEME_IS_RTL) {
  979. caret.t_dir = DIRECTION_RTL;
  980. cr.position.x += advance;
  981. cr.size.x = -char_adv;
  982. } else {
  983. caret.t_dir = DIRECTION_LTR;
  984. cr.size.x = char_adv;
  985. }
  986. } else {
  987. if (glyphs[i].start == range.x) {
  988. cr.size.x = height * 2;
  989. } else {
  990. cr.size.x = height;
  991. }
  992. cr.position.x = -ascent;
  993. cr.position.y = off;
  994. if ((glyphs[i].flags & GRAPHEME_IS_RTL) == GRAPHEME_IS_RTL) {
  995. caret.t_dir = DIRECTION_RTL;
  996. cr.position.y += advance;
  997. cr.size.y = -char_adv;
  998. } else {
  999. caret.t_dir = DIRECTION_LTR;
  1000. cr.size.y = char_adv;
  1001. }
  1002. }
  1003. caret.t_caret = cr;
  1004. }
  1005. // Caret after grapheme (bottom / right).
  1006. if (p_position == glyphs[i].end && ((glyphs[i].flags & GRAPHEME_IS_VIRTUAL) != GRAPHEME_IS_VIRTUAL)) {
  1007. real_t advance = 0.f;
  1008. for (int j = 0; j < glyphs[i].count; j++) {
  1009. advance += glyphs[i + j].advance * glyphs[i + j].repeat;
  1010. }
  1011. real_t char_adv = advance / (real_t)(glyphs[i].end - glyphs[i].start);
  1012. Rect2 cr;
  1013. if (orientation == ORIENTATION_HORIZONTAL) {
  1014. if (glyphs[i].end == range.y) {
  1015. cr.size.y = height * 2;
  1016. cr.position.y = -ascent;
  1017. } else {
  1018. cr.size.y = height;
  1019. cr.position.y = -ascent + height;
  1020. }
  1021. cr.position.x = off;
  1022. if ((glyphs[i].flags & GRAPHEME_IS_RTL) != GRAPHEME_IS_RTL) {
  1023. caret.l_dir = DIRECTION_LTR;
  1024. cr.position.x += advance;
  1025. cr.size.x = -char_adv;
  1026. } else {
  1027. caret.l_dir = DIRECTION_RTL;
  1028. cr.size.x = char_adv;
  1029. }
  1030. } else {
  1031. cr.size.y = 1.0f;
  1032. if (glyphs[i].end == range.y) {
  1033. cr.size.x = height * 2;
  1034. cr.position.x = -ascent;
  1035. } else {
  1036. cr.size.x = height;
  1037. cr.position.x = -ascent + height;
  1038. }
  1039. cr.position.y = off;
  1040. if ((glyphs[i].flags & GRAPHEME_IS_RTL) != GRAPHEME_IS_RTL) {
  1041. caret.l_dir = DIRECTION_LTR;
  1042. cr.position.y += advance;
  1043. cr.size.y = -char_adv;
  1044. } else {
  1045. caret.l_dir = DIRECTION_RTL;
  1046. cr.position.x += advance;
  1047. cr.size.y = char_adv;
  1048. }
  1049. }
  1050. caret.l_caret = cr;
  1051. }
  1052. // Caret inside grapheme (middle).
  1053. if (p_position > glyphs[i].start && p_position < glyphs[i].end && (glyphs[i].flags & GRAPHEME_IS_VIRTUAL) != GRAPHEME_IS_VIRTUAL) {
  1054. real_t advance = 0.f;
  1055. for (int j = 0; j < glyphs[i].count; j++) {
  1056. advance += glyphs[i + j].advance * glyphs[i + j].repeat;
  1057. }
  1058. real_t char_adv = advance / (real_t)(glyphs[i].end - glyphs[i].start);
  1059. Rect2 cr;
  1060. if (orientation == ORIENTATION_HORIZONTAL) {
  1061. cr.size.y = height * 2;
  1062. cr.position.y = -ascent;
  1063. if ((glyphs[i].flags & GRAPHEME_IS_RTL) == GRAPHEME_IS_RTL) {
  1064. cr.position.x = off + char_adv * (glyphs[i].end - p_position);
  1065. cr.size.x = -char_adv;
  1066. } else {
  1067. cr.position.x = off + char_adv * (p_position - glyphs[i].start);
  1068. cr.size.x = char_adv;
  1069. }
  1070. } else {
  1071. cr.size.x = height * 2;
  1072. cr.position.x = -ascent;
  1073. if ((glyphs[i].flags & GRAPHEME_IS_RTL) == GRAPHEME_IS_RTL) {
  1074. cr.position.y = off + char_adv * (glyphs[i].end - p_position);
  1075. cr.size.y = -char_adv;
  1076. } else {
  1077. cr.position.y = off + char_adv * (p_position - glyphs[i].start);
  1078. cr.size.y = char_adv;
  1079. }
  1080. }
  1081. caret.t_caret = cr;
  1082. caret.l_caret = cr;
  1083. }
  1084. }
  1085. off += glyphs[i].advance * glyphs[i].repeat;
  1086. }
  1087. return caret;
  1088. }
  1089. Dictionary TextServer::_shaped_text_get_carets_wrapper(const RID &p_shaped, int64_t p_position) const {
  1090. Dictionary ret;
  1091. CaretInfo caret = shaped_text_get_carets(p_shaped, p_position);
  1092. ret["leading_rect"] = caret.l_caret;
  1093. ret["leading_direction"] = caret.l_dir;
  1094. ret["trailing_rect"] = caret.t_caret;
  1095. ret["trailing_direction"] = caret.t_dir;
  1096. return ret;
  1097. }
  1098. TextServer::Direction TextServer::shaped_text_get_dominant_direction_in_range(const RID &p_shaped, int64_t p_start, int64_t p_end) const {
  1099. if (p_start == p_end) {
  1100. return DIRECTION_AUTO;
  1101. }
  1102. int start = MIN(p_start, p_end);
  1103. int end = MAX(p_start, p_end);
  1104. int rtl = 0;
  1105. int ltr = 0;
  1106. int v_size = shaped_text_get_glyph_count(p_shaped);
  1107. const Glyph *glyphs = shaped_text_get_glyphs(p_shaped);
  1108. for (int i = 0; i < v_size; i++) {
  1109. if ((glyphs[i].end > start) && (glyphs[i].start < end)) {
  1110. if (glyphs[i].count > 0) {
  1111. if ((glyphs[i].flags & GRAPHEME_IS_RTL) == GRAPHEME_IS_RTL) {
  1112. rtl++;
  1113. } else {
  1114. ltr++;
  1115. }
  1116. }
  1117. }
  1118. }
  1119. if (ltr == rtl) {
  1120. return DIRECTION_AUTO;
  1121. } else if (ltr > rtl) {
  1122. return DIRECTION_LTR;
  1123. } else {
  1124. return DIRECTION_RTL;
  1125. }
  1126. }
  1127. _FORCE_INLINE_ void _push_range(Vector<Vector2> &r_vector, real_t p_start, real_t p_end) {
  1128. if (!r_vector.is_empty() && Math::is_equal_approx(r_vector[r_vector.size() - 1].y, p_start, (real_t)UNIT_EPSILON)) {
  1129. r_vector.write[r_vector.size() - 1].y = p_end;
  1130. } else {
  1131. r_vector.push_back(Vector2(p_start, p_end));
  1132. }
  1133. }
  1134. Vector<Vector2> TextServer::shaped_text_get_selection(const RID &p_shaped, int64_t p_start, int64_t p_end) const {
  1135. Vector<Vector2> ranges;
  1136. if (p_start == p_end) {
  1137. return ranges;
  1138. }
  1139. int start = MIN(p_start, p_end);
  1140. int end = MAX(p_start, p_end);
  1141. int v_size = shaped_text_get_glyph_count(p_shaped);
  1142. const Glyph *glyphs = shaped_text_get_glyphs(p_shaped);
  1143. real_t off = 0.0f;
  1144. for (int i = 0; i < v_size; i++) {
  1145. for (int k = 0; k < glyphs[i].repeat; k++) {
  1146. if ((glyphs[i].count > 0) && ((glyphs[i].index != 0) || ((glyphs[i].flags & GRAPHEME_IS_SPACE) == GRAPHEME_IS_SPACE))) {
  1147. if (glyphs[i].start < end && glyphs[i].end > start) {
  1148. // Grapheme fully in selection range.
  1149. if (glyphs[i].start >= start && glyphs[i].end <= end) {
  1150. real_t advance = 0.f;
  1151. for (int j = 0; j < glyphs[i].count; j++) {
  1152. advance += glyphs[i + j].advance;
  1153. }
  1154. _push_range(ranges, off, off + advance);
  1155. }
  1156. // Only start of grapheme is in selection range.
  1157. if (glyphs[i].start >= start && glyphs[i].end > end) {
  1158. real_t advance = 0.f;
  1159. for (int j = 0; j < glyphs[i].count; j++) {
  1160. advance += glyphs[i + j].advance;
  1161. }
  1162. real_t char_adv = advance / (real_t)(glyphs[i].end - glyphs[i].start);
  1163. if ((glyphs[i].flags & GRAPHEME_IS_RTL) == GRAPHEME_IS_RTL) {
  1164. _push_range(ranges, off + char_adv * (glyphs[i].end - end), off + advance);
  1165. } else {
  1166. _push_range(ranges, off, off + char_adv * (end - glyphs[i].start));
  1167. }
  1168. }
  1169. // Only end of grapheme is in selection range.
  1170. if (glyphs[i].start < start && glyphs[i].end <= end) {
  1171. real_t advance = 0.f;
  1172. for (int j = 0; j < glyphs[i].count; j++) {
  1173. advance += glyphs[i + j].advance;
  1174. }
  1175. real_t char_adv = advance / (real_t)(glyphs[i].end - glyphs[i].start);
  1176. if ((glyphs[i].flags & GRAPHEME_IS_RTL) == GRAPHEME_IS_RTL) {
  1177. _push_range(ranges, off, off + char_adv * (glyphs[i].end - start));
  1178. } else {
  1179. _push_range(ranges, off + char_adv * (start - glyphs[i].start), off + advance);
  1180. }
  1181. }
  1182. // Selection range is within grapheme.
  1183. if (glyphs[i].start < start && glyphs[i].end > end) {
  1184. real_t advance = 0.f;
  1185. for (int j = 0; j < glyphs[i].count; j++) {
  1186. advance += glyphs[i + j].advance;
  1187. }
  1188. real_t char_adv = advance / (real_t)(glyphs[i].end - glyphs[i].start);
  1189. if ((glyphs[i].flags & GRAPHEME_IS_RTL) == GRAPHEME_IS_RTL) {
  1190. _push_range(ranges, off + char_adv * (glyphs[i].end - end), off + char_adv * (glyphs[i].end - start));
  1191. } else {
  1192. _push_range(ranges, off + char_adv * (start - glyphs[i].start), off + char_adv * (end - glyphs[i].start));
  1193. }
  1194. }
  1195. }
  1196. }
  1197. off += glyphs[i].advance;
  1198. }
  1199. }
  1200. return ranges;
  1201. }
  1202. int64_t TextServer::shaped_text_hit_test_grapheme(const RID &p_shaped, double p_coords) const {
  1203. // Exact grapheme hit test, return -1 if missed.
  1204. double off = 0.0f;
  1205. int v_size = shaped_text_get_glyph_count(p_shaped);
  1206. const Glyph *glyphs = shaped_text_get_glyphs(p_shaped);
  1207. for (int i = 0; i < v_size; i++) {
  1208. for (int j = 0; j < glyphs[i].repeat; j++) {
  1209. if (p_coords >= off && p_coords < off + glyphs[i].advance) {
  1210. return i;
  1211. }
  1212. off += glyphs[i].advance;
  1213. }
  1214. }
  1215. return -1;
  1216. }
  1217. int64_t TextServer::shaped_text_hit_test_position(const RID &p_shaped, double p_coords) const {
  1218. int v_size = shaped_text_get_glyph_count(p_shaped);
  1219. const Glyph *glyphs = shaped_text_get_glyphs(p_shaped);
  1220. // Cursor placement hit test.
  1221. // Place caret to the left of the leftmost grapheme, or to position 0 if string is empty.
  1222. if (p_coords <= 0) {
  1223. if (v_size > 0) {
  1224. if ((glyphs[0].flags & GRAPHEME_IS_RTL) == GRAPHEME_IS_RTL) {
  1225. return glyphs[0].end;
  1226. } else {
  1227. return glyphs[0].start;
  1228. }
  1229. } else {
  1230. return 0;
  1231. }
  1232. }
  1233. // Place caret to the right of the rightmost grapheme, or to position 0 if string is empty.
  1234. if (p_coords >= shaped_text_get_width(p_shaped)) {
  1235. if (v_size > 0) {
  1236. if ((glyphs[v_size - 1].flags & GRAPHEME_IS_RTL) == GRAPHEME_IS_RTL) {
  1237. return glyphs[v_size - 1].start;
  1238. } else {
  1239. return glyphs[v_size - 1].end;
  1240. }
  1241. } else {
  1242. return 0;
  1243. }
  1244. }
  1245. real_t off = 0.0f;
  1246. for (int i = 0; i < v_size; i++) {
  1247. if (glyphs[i].count > 0) {
  1248. real_t advance = 0.f;
  1249. for (int j = 0; j < glyphs[i].count; j++) {
  1250. advance += glyphs[i + j].advance * glyphs[i + j].repeat;
  1251. }
  1252. if (((glyphs[i].flags & GRAPHEME_IS_VIRTUAL) == GRAPHEME_IS_VIRTUAL) && (p_coords >= off && p_coords < off + advance)) {
  1253. if ((glyphs[i].flags & GRAPHEME_IS_RTL) == GRAPHEME_IS_RTL) {
  1254. return glyphs[i].end;
  1255. } else {
  1256. return glyphs[i].start;
  1257. }
  1258. }
  1259. // Ligature, handle mid-grapheme hit.
  1260. if (p_coords >= off && p_coords < off + advance && glyphs[i].end > glyphs[i].start + 1) {
  1261. int cnt = glyphs[i].end - glyphs[i].start;
  1262. real_t char_adv = advance / (real_t)(cnt);
  1263. real_t sub_off = off;
  1264. for (int j = 0; j < cnt; j++) {
  1265. // Place caret to the left of clicked sub-grapheme.
  1266. if (p_coords >= sub_off && p_coords < sub_off + char_adv / 2) {
  1267. if ((glyphs[i].flags & GRAPHEME_IS_RTL) == GRAPHEME_IS_RTL) {
  1268. return glyphs[i].end - j;
  1269. } else {
  1270. return glyphs[i].start + j;
  1271. }
  1272. }
  1273. // Place caret to the right of clicked sub-grapheme.
  1274. if (p_coords >= sub_off + char_adv / 2 && p_coords < sub_off + char_adv) {
  1275. if ((glyphs[i].flags & GRAPHEME_IS_RTL) == GRAPHEME_IS_RTL) {
  1276. return glyphs[i].start + (cnt - 1) - j;
  1277. } else {
  1278. return glyphs[i].end - (cnt - 1) + j;
  1279. }
  1280. }
  1281. sub_off += char_adv;
  1282. }
  1283. }
  1284. // Place caret to the left of clicked grapheme.
  1285. if (p_coords >= off && p_coords < off + advance / 2) {
  1286. if ((glyphs[i].flags & GRAPHEME_IS_RTL) == GRAPHEME_IS_RTL) {
  1287. return glyphs[i].end;
  1288. } else {
  1289. return glyphs[i].start;
  1290. }
  1291. }
  1292. // Place caret to the right of clicked grapheme.
  1293. if (p_coords >= off + advance / 2 && p_coords < off + advance) {
  1294. if ((glyphs[i].flags & GRAPHEME_IS_RTL) == GRAPHEME_IS_RTL) {
  1295. return glyphs[i].start;
  1296. } else {
  1297. return glyphs[i].end;
  1298. }
  1299. }
  1300. }
  1301. off += glyphs[i].advance * glyphs[i].repeat;
  1302. }
  1303. return 0;
  1304. }
  1305. Vector2 TextServer::shaped_text_get_grapheme_bounds(const RID &p_shaped, int64_t p_pos) const {
  1306. int v_size = shaped_text_get_glyph_count(p_shaped);
  1307. const Glyph *glyphs = shaped_text_get_glyphs(p_shaped);
  1308. real_t off = 0.0f;
  1309. for (int i = 0; i < v_size; i++) {
  1310. if ((glyphs[i].count > 0) && ((glyphs[i].index != 0) || ((glyphs[i].flags & GRAPHEME_IS_SPACE) == GRAPHEME_IS_SPACE))) {
  1311. if (glyphs[i].start <= p_pos && glyphs[i].end >= p_pos) {
  1312. real_t advance = 0.f;
  1313. for (int j = 0; j < glyphs[i].count; j++) {
  1314. advance += glyphs[i + j].advance;
  1315. }
  1316. return Vector2(off, off + advance);
  1317. }
  1318. }
  1319. off += glyphs[i].advance * glyphs[i].repeat;
  1320. }
  1321. return Vector2();
  1322. }
  1323. int64_t TextServer::shaped_text_next_grapheme_pos(const RID &p_shaped, int64_t p_pos) const {
  1324. int v_size = shaped_text_get_glyph_count(p_shaped);
  1325. const Glyph *glyphs = shaped_text_get_glyphs(p_shaped);
  1326. for (int i = 0; i < v_size; i++) {
  1327. if (p_pos >= glyphs[i].start && p_pos < glyphs[i].end) {
  1328. return glyphs[i].end;
  1329. }
  1330. }
  1331. return p_pos;
  1332. }
  1333. int64_t TextServer::shaped_text_prev_grapheme_pos(const RID &p_shaped, int64_t p_pos) const {
  1334. int v_size = shaped_text_get_glyph_count(p_shaped);
  1335. const Glyph *glyphs = shaped_text_get_glyphs(p_shaped);
  1336. for (int i = 0; i < v_size; i++) {
  1337. if (p_pos > glyphs[i].start && p_pos <= glyphs[i].end) {
  1338. return glyphs[i].start;
  1339. }
  1340. }
  1341. return p_pos;
  1342. }
  1343. int64_t TextServer::shaped_text_prev_character_pos(const RID &p_shaped, int64_t p_pos) const {
  1344. const PackedInt32Array &chars = shaped_text_get_character_breaks(p_shaped);
  1345. int64_t prev = shaped_text_get_range(p_shaped).x;
  1346. for (const int32_t &E : chars) {
  1347. if (E >= p_pos) {
  1348. return prev;
  1349. }
  1350. prev = E;
  1351. }
  1352. return prev;
  1353. }
  1354. int64_t TextServer::shaped_text_next_character_pos(const RID &p_shaped, int64_t p_pos) const {
  1355. const PackedInt32Array &chars = shaped_text_get_character_breaks(p_shaped);
  1356. int64_t prev = shaped_text_get_range(p_shaped).x;
  1357. for (const int32_t &E : chars) {
  1358. if (E > p_pos) {
  1359. return E;
  1360. }
  1361. prev = E;
  1362. }
  1363. return prev;
  1364. }
  1365. int64_t TextServer::shaped_text_closest_character_pos(const RID &p_shaped, int64_t p_pos) const {
  1366. const PackedInt32Array &chars = shaped_text_get_character_breaks(p_shaped);
  1367. int64_t prev = shaped_text_get_range(p_shaped).x;
  1368. for (const int32_t &E : chars) {
  1369. if (E == p_pos) {
  1370. return E;
  1371. } else if (E > p_pos) {
  1372. if ((E - p_pos) < (p_pos - prev)) {
  1373. return E;
  1374. } else {
  1375. return prev;
  1376. }
  1377. }
  1378. prev = E;
  1379. }
  1380. return prev;
  1381. }
  1382. PackedInt32Array TextServer::string_get_character_breaks(const String &p_string, const String &p_language) const {
  1383. PackedInt32Array ret;
  1384. if (!p_string.is_empty()) {
  1385. ret.resize(p_string.size() - 1);
  1386. for (int i = 0; i < p_string.size() - 1; i++) {
  1387. ret.write[i] = i + 1;
  1388. }
  1389. }
  1390. return ret;
  1391. }
  1392. 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 {
  1393. TextServer::Orientation orientation = shaped_text_get_orientation(p_shaped);
  1394. bool hex_codes = shaped_text_get_preserve_control(p_shaped) || shaped_text_get_preserve_invalid(p_shaped);
  1395. bool rtl = shaped_text_get_direction(p_shaped) == DIRECTION_RTL;
  1396. int ellipsis_pos = shaped_text_get_ellipsis_pos(p_shaped);
  1397. int trim_pos = shaped_text_get_trim_pos(p_shaped);
  1398. const Glyph *ellipsis_glyphs = shaped_text_get_ellipsis_glyphs(p_shaped);
  1399. int ellipsis_gl_size = shaped_text_get_ellipsis_glyph_count(p_shaped);
  1400. int v_size = shaped_text_get_glyph_count(p_shaped);
  1401. const Glyph *glyphs = shaped_text_get_glyphs(p_shaped);
  1402. Vector2 ofs;
  1403. // Draw RTL ellipsis string when needed.
  1404. if (rtl && ellipsis_pos >= 0) {
  1405. for (int i = ellipsis_gl_size - 1; i >= 0; i--) {
  1406. for (int j = 0; j < ellipsis_glyphs[i].repeat; j++) {
  1407. 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);
  1408. if (orientation == ORIENTATION_HORIZONTAL) {
  1409. ofs.x += ellipsis_glyphs[i].advance;
  1410. } else {
  1411. ofs.y += ellipsis_glyphs[i].advance;
  1412. }
  1413. }
  1414. }
  1415. }
  1416. // Draw at the baseline.
  1417. for (int i = 0; i < v_size; i++) {
  1418. if (trim_pos >= 0) {
  1419. if (rtl) {
  1420. if (i < trim_pos) {
  1421. continue;
  1422. }
  1423. } else {
  1424. if (i >= trim_pos) {
  1425. break;
  1426. }
  1427. }
  1428. }
  1429. for (int j = 0; j < glyphs[i].repeat; j++) {
  1430. if (p_clip_r > 0) {
  1431. // Clip right / bottom.
  1432. if (orientation == ORIENTATION_HORIZONTAL) {
  1433. if (ofs.x + glyphs[i].advance > p_clip_r) {
  1434. return;
  1435. }
  1436. } else {
  1437. if (ofs.y + glyphs[i].advance > p_clip_r) {
  1438. return;
  1439. }
  1440. }
  1441. }
  1442. if (p_clip_l > 0) {
  1443. // Clip left / top.
  1444. if (orientation == ORIENTATION_HORIZONTAL) {
  1445. if (ofs.x < p_clip_l) {
  1446. ofs.x += glyphs[i].advance;
  1447. continue;
  1448. }
  1449. } else {
  1450. if (ofs.y < p_clip_l) {
  1451. ofs.y += glyphs[i].advance;
  1452. continue;
  1453. }
  1454. }
  1455. }
  1456. if (glyphs[i].font_rid != RID()) {
  1457. 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);
  1458. } else if (hex_codes && ((glyphs[i].flags & GRAPHEME_IS_VIRTUAL) != GRAPHEME_IS_VIRTUAL) && ((glyphs[i].flags & GRAPHEME_IS_EMBEDDED_OBJECT) != GRAPHEME_IS_EMBEDDED_OBJECT)) {
  1459. 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);
  1460. }
  1461. if (orientation == ORIENTATION_HORIZONTAL) {
  1462. ofs.x += glyphs[i].advance;
  1463. } else {
  1464. ofs.y += glyphs[i].advance;
  1465. }
  1466. }
  1467. }
  1468. // Draw LTR ellipsis string when needed.
  1469. if (!rtl && ellipsis_pos >= 0) {
  1470. for (int i = 0; i < ellipsis_gl_size; i++) {
  1471. for (int j = 0; j < ellipsis_glyphs[i].repeat; j++) {
  1472. 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);
  1473. if (orientation == ORIENTATION_HORIZONTAL) {
  1474. ofs.x += ellipsis_glyphs[i].advance;
  1475. } else {
  1476. ofs.y += ellipsis_glyphs[i].advance;
  1477. }
  1478. }
  1479. }
  1480. }
  1481. }
  1482. 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 {
  1483. TextServer::Orientation orientation = shaped_text_get_orientation(p_shaped);
  1484. bool rtl = (shaped_text_get_inferred_direction(p_shaped) == DIRECTION_RTL);
  1485. int ellipsis_pos = shaped_text_get_ellipsis_pos(p_shaped);
  1486. int trim_pos = shaped_text_get_trim_pos(p_shaped);
  1487. const Glyph *ellipsis_glyphs = shaped_text_get_ellipsis_glyphs(p_shaped);
  1488. int ellipsis_gl_size = shaped_text_get_ellipsis_glyph_count(p_shaped);
  1489. int v_size = shaped_text_get_glyph_count(p_shaped);
  1490. const Glyph *glyphs = shaped_text_get_glyphs(p_shaped);
  1491. Vector2 ofs;
  1492. // Draw RTL ellipsis string when needed.
  1493. if (rtl && ellipsis_pos >= 0) {
  1494. for (int i = ellipsis_gl_size - 1; i >= 0; i--) {
  1495. for (int j = 0; j < ellipsis_glyphs[i].repeat; j++) {
  1496. 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);
  1497. if (orientation == ORIENTATION_HORIZONTAL) {
  1498. ofs.x += ellipsis_glyphs[i].advance;
  1499. } else {
  1500. ofs.y += ellipsis_glyphs[i].advance;
  1501. }
  1502. }
  1503. }
  1504. }
  1505. // Draw at the baseline.
  1506. for (int i = 0; i < v_size; i++) {
  1507. if (trim_pos >= 0) {
  1508. if (rtl) {
  1509. if (i < trim_pos) {
  1510. continue;
  1511. }
  1512. } else {
  1513. if (i >= trim_pos) {
  1514. break;
  1515. }
  1516. }
  1517. }
  1518. for (int j = 0; j < glyphs[i].repeat; j++) {
  1519. if (p_clip_r > 0) {
  1520. // Clip right / bottom.
  1521. if (orientation == ORIENTATION_HORIZONTAL) {
  1522. if (ofs.x + glyphs[i].advance > p_clip_r) {
  1523. return;
  1524. }
  1525. } else {
  1526. if (ofs.y + glyphs[i].advance > p_clip_r) {
  1527. return;
  1528. }
  1529. }
  1530. }
  1531. if (p_clip_l > 0) {
  1532. // Clip left / top.
  1533. if (orientation == ORIENTATION_HORIZONTAL) {
  1534. if (ofs.x < p_clip_l) {
  1535. ofs.x += glyphs[i].advance;
  1536. continue;
  1537. }
  1538. } else {
  1539. if (ofs.y < p_clip_l) {
  1540. ofs.y += glyphs[i].advance;
  1541. continue;
  1542. }
  1543. }
  1544. }
  1545. if (glyphs[i].font_rid != RID()) {
  1546. 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);
  1547. }
  1548. if (orientation == ORIENTATION_HORIZONTAL) {
  1549. ofs.x += glyphs[i].advance;
  1550. } else {
  1551. ofs.y += glyphs[i].advance;
  1552. }
  1553. }
  1554. }
  1555. // Draw LTR ellipsis string when needed.
  1556. if (!rtl && ellipsis_pos >= 0) {
  1557. for (int i = 0; i < ellipsis_gl_size; i++) {
  1558. for (int j = 0; j < ellipsis_glyphs[i].repeat; j++) {
  1559. 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);
  1560. if (orientation == ORIENTATION_HORIZONTAL) {
  1561. ofs.x += ellipsis_glyphs[i].advance;
  1562. } else {
  1563. ofs.y += ellipsis_glyphs[i].advance;
  1564. }
  1565. }
  1566. }
  1567. }
  1568. }
  1569. void TextServer::_diacritics_map_add(const String &p_from, char32_t p_to) {
  1570. for (int i = 0; i < p_from.size(); i++) {
  1571. diacritics_map[p_from[i]] = p_to;
  1572. }
  1573. }
  1574. void TextServer::_init_diacritics_map() {
  1575. diacritics_map.clear();
  1576. // Latin.
  1577. _diacritics_map_add(U"ÀÁÂÃÄÅĀĂĄǍǞǠǺȀȂȦḀẠẢẤẦẨẪẬẮẰẲẴẶ", U'A');
  1578. _diacritics_map_add(U"àáâãäåāăąǎǟǡǻȁȃȧḁẚạảấầẩẫậắằẳẵặ", U'a');
  1579. _diacritics_map_add(U"ǢǼ", U'Æ');
  1580. _diacritics_map_add(U"ǣǽ", U'æ');
  1581. _diacritics_map_add(U"ḂḄḆ", U'B');
  1582. _diacritics_map_add(U"ḃḅḇ", U'b');
  1583. _diacritics_map_add(U"ÇĆĈĊČḈ", U'C');
  1584. _diacritics_map_add(U"çćĉċčḉ", U'c');
  1585. _diacritics_map_add(U"ĎḊḌḎḐḒ", U'D');
  1586. _diacritics_map_add(U"ďḋḍḏḑḓ", U'd');
  1587. _diacritics_map_add(U"ÈÉÊËĒĔĖĘĚȆȨḔḖḘḚḜẸẺẼẾỀỂỄỆ", U'E');
  1588. _diacritics_map_add(U"èéêëēĕėęěȇȩḕḗḙḛḝẹẻẽếềểễệ", U'e');
  1589. _diacritics_map_add(U"Ḟ", U'F');
  1590. _diacritics_map_add(U"ḟ", U'f');
  1591. _diacritics_map_add(U"ĜĞĠĢǦǴḠ", U'G');
  1592. _diacritics_map_add(U"ĝğġģǧǵḡ", U'g');
  1593. _diacritics_map_add(U"ĤȞḢḤḦḨḪ", U'H');
  1594. _diacritics_map_add(U"ĥȟḣḥḧḩḫẖ", U'h');
  1595. _diacritics_map_add(U"ÌÍÎÏĨĪĬĮİǏȈȊḬḮỈỊ", U'I');
  1596. _diacritics_map_add(U"ìíîïĩīĭįıǐȉȋḭḯỉị", U'i');
  1597. _diacritics_map_add(U"Ĵ", U'J');
  1598. _diacritics_map_add(U"ĵ", U'j');
  1599. _diacritics_map_add(U"ĶǨḰḲḴ", U'K');
  1600. _diacritics_map_add(U"ķĸǩḱḳḵ", U'k');
  1601. _diacritics_map_add(U"ĹĻĽĿḶḸḺḼ", U'L');
  1602. _diacritics_map_add(U"ĺļľŀḷḹḻḽ", U'l');
  1603. _diacritics_map_add(U"ḾṀṂ", U'M');
  1604. _diacritics_map_add(U"ḿṁṃ", U'm');
  1605. _diacritics_map_add(U"ÑŃŅŇǸṄṆṈṊ", U'N');
  1606. _diacritics_map_add(U"ñńņňʼnǹṅṇṉṋ", U'n');
  1607. _diacritics_map_add(U"ÒÓÔÕÖŌŎŐƠǑǪǬȌȎȪȬȮȰṌṎṐṒỌỎỐỒỔỖỘỚỜỞỠỢ", U'O');
  1608. _diacritics_map_add(U"òóôõöōŏőơǒǫǭȍȏȫȭȯȱṍṏṑṓọỏốồổỗộớờởỡợ", U'o');
  1609. _diacritics_map_add(U"ṔṖ", U'P');
  1610. _diacritics_map_add(U"ṗṕ", U'p');
  1611. _diacritics_map_add(U"ŔŖŘȐȒṘṚṜṞ", U'R');
  1612. _diacritics_map_add(U"ŕŗřȑȓṙṛṝṟ", U'r');
  1613. _diacritics_map_add(U"ŚŜŞŠȘṠṢṤṦṨ", U'S');
  1614. _diacritics_map_add(U"śŝşšſșṡṣṥṧṩẛẜẝ", U's');
  1615. _diacritics_map_add(U"ŢŤȚṪṬṮṰ", U'T');
  1616. _diacritics_map_add(U"ţťțṫṭṯṱẗ", U't');
  1617. _diacritics_map_add(U"ÙÚÛÜŨŪŬŮŰŲƯǓǕǗǙǛȔȖṲṴṶṸṺỤỦỨỪỬỮỰ", U'U');
  1618. _diacritics_map_add(U"ùúûüũūŭůűųưǔǖǘǚǜȕȗṳṵṷṹṻụủứừửữự", U'u');
  1619. _diacritics_map_add(U"ṼṾ", U'V');
  1620. _diacritics_map_add(U"ṽṿ", U'v');
  1621. _diacritics_map_add(U"ŴẀẂẄẆẈ", U'W');
  1622. _diacritics_map_add(U"ŵẁẃẅẇẉẘ", U'w');
  1623. _diacritics_map_add(U"ẊẌ", U'X');
  1624. _diacritics_map_add(U"ẋẍ", U'x');
  1625. _diacritics_map_add(U"ÝŶẎỲỴỶỸỾ", U'Y');
  1626. _diacritics_map_add(U"ýÿŷẏẙỳỵỷỹỿ", U'y');
  1627. _diacritics_map_add(U"ŹŻŽẐẒẔ", U'Z');
  1628. _diacritics_map_add(U"źżžẑẓẕ", U'z');
  1629. // Greek.
  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. _diacritics_map_add(U"ώὠὡὢὣὤὥὦὧὼώᾠᾡᾢᾣᾤᾥᾦᾧῲῳῴῶῷ", U'ω');
  1646. // Cyrillic.
  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. _diacritics_map_add(U"ӹ", U'ы');
  1677. }
  1678. String TextServer::strip_diacritics(const String &p_string) const {
  1679. String result;
  1680. for (int i = 0; i < p_string.length(); i++) {
  1681. if (p_string[i] < 0x02B0 || p_string[i] > 0x036F) { // Skip combining diacritics.
  1682. if (diacritics_map.has(p_string[i])) {
  1683. result += diacritics_map[p_string[i]];
  1684. } else {
  1685. result += p_string[i];
  1686. }
  1687. }
  1688. }
  1689. return result;
  1690. }
  1691. TypedArray<Vector3i> TextServer::parse_structured_text(StructuredTextParser p_parser_type, const Array &p_args, const String &p_text) const {
  1692. TypedArray<Vector3i> ret;
  1693. switch (p_parser_type) {
  1694. case STRUCTURED_TEXT_URI: {
  1695. int prev = 0;
  1696. for (int i = 0; i < p_text.length(); i++) {
  1697. 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] == '#')) {
  1698. if (prev != i) {
  1699. ret.push_back(Vector3i(prev, i, TextServer::DIRECTION_AUTO));
  1700. }
  1701. ret.push_back(Vector3i(i, i + 1, TextServer::DIRECTION_LTR));
  1702. prev = i + 1;
  1703. }
  1704. }
  1705. if (prev != p_text.length()) {
  1706. ret.push_back(Vector3i(prev, p_text.length(), TextServer::DIRECTION_AUTO));
  1707. }
  1708. } break;
  1709. case STRUCTURED_TEXT_FILE: {
  1710. int prev = 0;
  1711. for (int i = 0; i < p_text.length(); i++) {
  1712. if ((p_text[i] == '\\') || (p_text[i] == '/') || (p_text[i] == ':')) {
  1713. if (prev != i) {
  1714. ret.push_back(Vector3i(prev, i, TextServer::DIRECTION_AUTO));
  1715. }
  1716. ret.push_back(Vector3i(i, i + 1, TextServer::DIRECTION_LTR));
  1717. prev = i + 1;
  1718. }
  1719. }
  1720. if (prev != p_text.length()) {
  1721. ret.push_back(Vector3i(prev, p_text.length(), TextServer::DIRECTION_AUTO));
  1722. }
  1723. } break;
  1724. case STRUCTURED_TEXT_EMAIL: {
  1725. bool local = true;
  1726. int prev = 0;
  1727. for (int i = 0; i < p_text.length(); i++) {
  1728. if ((p_text[i] == '@') && local) { // Add full "local" as single context.
  1729. local = false;
  1730. ret.push_back(Vector3i(prev, i, TextServer::DIRECTION_AUTO));
  1731. ret.push_back(Vector3i(i, i + 1, TextServer::DIRECTION_LTR));
  1732. prev = i + 1;
  1733. } else if (!local && (p_text[i] == '.')) { // Add each dot separated "domain" part as context.
  1734. if (prev != i) {
  1735. ret.push_back(Vector3i(prev, i, TextServer::DIRECTION_AUTO));
  1736. }
  1737. ret.push_back(Vector3i(i, i + 1, TextServer::DIRECTION_LTR));
  1738. prev = i + 1;
  1739. }
  1740. }
  1741. if (prev != p_text.length()) {
  1742. ret.push_back(Vector3i(prev, p_text.length(), TextServer::DIRECTION_AUTO));
  1743. }
  1744. } break;
  1745. case STRUCTURED_TEXT_LIST: {
  1746. if (p_args.size() == 1 && p_args[0].is_string()) {
  1747. Vector<String> tags = p_text.split(String(p_args[0]));
  1748. int prev = 0;
  1749. for (int i = 0; i < tags.size(); i++) {
  1750. if (prev != i) {
  1751. ret.push_back(Vector3i(prev, prev + tags[i].length(), TextServer::DIRECTION_INHERITED));
  1752. }
  1753. ret.push_back(Vector3i(prev + tags[i].length(), prev + tags[i].length() + 1, TextServer::DIRECTION_INHERITED));
  1754. prev = prev + tags[i].length() + 1;
  1755. }
  1756. }
  1757. } break;
  1758. case STRUCTURED_TEXT_GDSCRIPT: {
  1759. bool in_string_literal = false;
  1760. bool in_string_literal_single = false;
  1761. bool in_id = false;
  1762. int prev = 0;
  1763. for (int i = 0; i < p_text.length(); i++) {
  1764. char32_t c = p_text[i];
  1765. if (in_string_literal) {
  1766. if (c == '\\') {
  1767. i++;
  1768. continue; // Skip escaped chars.
  1769. } else if (c == '\"') {
  1770. // String literal end, push string and ".
  1771. if (prev != i) {
  1772. ret.push_back(Vector3i(prev, i, TextServer::DIRECTION_AUTO));
  1773. }
  1774. prev = i + 1;
  1775. ret.push_back(Vector3i(i, i + 1, TextServer::DIRECTION_LTR));
  1776. in_string_literal = false;
  1777. }
  1778. } else if (in_string_literal_single) {
  1779. if (c == '\\') {
  1780. i++;
  1781. continue; // Skip escaped chars.
  1782. } else if (c == '\'') {
  1783. // String literal end, push string and '.
  1784. if (prev != i) {
  1785. ret.push_back(Vector3i(prev, i, TextServer::DIRECTION_AUTO));
  1786. }
  1787. prev = i + 1;
  1788. ret.push_back(Vector3i(i, i + 1, TextServer::DIRECTION_LTR));
  1789. in_string_literal_single = false;
  1790. }
  1791. } else if (in_id) {
  1792. if (!is_unicode_identifier_continue(c)) {
  1793. // End of id, push id.
  1794. if (prev != i) {
  1795. ret.push_back(Vector3i(prev, i, TextServer::DIRECTION_AUTO));
  1796. }
  1797. prev = i;
  1798. in_id = false;
  1799. }
  1800. } else if (is_unicode_identifier_start(c)) {
  1801. // Start of new id, push prev element.
  1802. if (prev != i) {
  1803. ret.push_back(Vector3i(prev, i, TextServer::DIRECTION_AUTO));
  1804. }
  1805. prev = i;
  1806. in_id = true;
  1807. } else if (c == '\"') {
  1808. // String literal start, push prev element and ".
  1809. if (prev != i) {
  1810. ret.push_back(Vector3i(prev, i, TextServer::DIRECTION_AUTO));
  1811. }
  1812. prev = i + 1;
  1813. ret.push_back(Vector3i(i, i + 1, TextServer::DIRECTION_LTR));
  1814. in_string_literal = true;
  1815. } else if (c == '\'') {
  1816. // String literal start, push prev element and '.
  1817. if (prev != i) {
  1818. ret.push_back(Vector3i(prev, i, TextServer::DIRECTION_AUTO));
  1819. }
  1820. prev = i + 1;
  1821. ret.push_back(Vector3i(i, i + 1, TextServer::DIRECTION_LTR));
  1822. in_string_literal_single = true;
  1823. } else if (c == '#') {
  1824. // Start of comment, push prev element and #, skip the rest of the text.
  1825. if (prev != i) {
  1826. ret.push_back(Vector3i(prev, i, TextServer::DIRECTION_AUTO));
  1827. }
  1828. prev = p_text.length();
  1829. ret.push_back(Vector3i(i, p_text.length(), TextServer::DIRECTION_AUTO));
  1830. break;
  1831. }
  1832. }
  1833. if (prev < p_text.length()) {
  1834. ret.push_back(Vector3i(prev, p_text.length(), TextServer::DIRECTION_AUTO));
  1835. }
  1836. } break;
  1837. case STRUCTURED_TEXT_CUSTOM:
  1838. case STRUCTURED_TEXT_DEFAULT:
  1839. default: {
  1840. ret.push_back(Vector3i(0, p_text.length(), TextServer::DIRECTION_INHERITED));
  1841. }
  1842. }
  1843. return ret;
  1844. }
  1845. TypedArray<Dictionary> TextServer::_shaped_text_get_glyphs_wrapper(const RID &p_shaped) const {
  1846. TypedArray<Dictionary> ret;
  1847. const Glyph *glyphs = shaped_text_get_glyphs(p_shaped);
  1848. int gl_size = shaped_text_get_glyph_count(p_shaped);
  1849. for (int i = 0; i < gl_size; i++) {
  1850. Dictionary glyph;
  1851. glyph["start"] = glyphs[i].start;
  1852. glyph["end"] = glyphs[i].end;
  1853. glyph["repeat"] = glyphs[i].repeat;
  1854. glyph["count"] = glyphs[i].count;
  1855. glyph["flags"] = glyphs[i].flags;
  1856. glyph["offset"] = Vector2(glyphs[i].x_off, glyphs[i].y_off);
  1857. glyph["advance"] = glyphs[i].advance;
  1858. glyph["font_rid"] = glyphs[i].font_rid;
  1859. glyph["font_size"] = glyphs[i].font_size;
  1860. glyph["index"] = glyphs[i].index;
  1861. ret.push_back(glyph);
  1862. }
  1863. return ret;
  1864. }
  1865. TypedArray<Dictionary> TextServer::_shaped_text_sort_logical_wrapper(const RID &p_shaped) {
  1866. Array ret;
  1867. const Glyph *glyphs = shaped_text_sort_logical(p_shaped);
  1868. int gl_size = shaped_text_get_glyph_count(p_shaped);
  1869. for (int i = 0; i < gl_size; i++) {
  1870. Dictionary glyph;
  1871. glyph["start"] = glyphs[i].start;
  1872. glyph["end"] = glyphs[i].end;
  1873. glyph["repeat"] = glyphs[i].repeat;
  1874. glyph["count"] = glyphs[i].count;
  1875. glyph["flags"] = glyphs[i].flags;
  1876. glyph["offset"] = Vector2(glyphs[i].x_off, glyphs[i].y_off);
  1877. glyph["advance"] = glyphs[i].advance;
  1878. glyph["font_rid"] = glyphs[i].font_rid;
  1879. glyph["font_size"] = glyphs[i].font_size;
  1880. glyph["index"] = glyphs[i].index;
  1881. ret.push_back(glyph);
  1882. }
  1883. return ret;
  1884. }
  1885. TypedArray<Dictionary> TextServer::_shaped_text_get_ellipsis_glyphs_wrapper(const RID &p_shaped) const {
  1886. TypedArray<Dictionary> ret;
  1887. const Glyph *glyphs = shaped_text_get_ellipsis_glyphs(p_shaped);
  1888. int gl_size = shaped_text_get_ellipsis_glyph_count(p_shaped);
  1889. for (int i = 0; i < gl_size; i++) {
  1890. Dictionary glyph;
  1891. glyph["start"] = glyphs[i].start;
  1892. glyph["end"] = glyphs[i].end;
  1893. glyph["repeat"] = glyphs[i].repeat;
  1894. glyph["count"] = glyphs[i].count;
  1895. glyph["flags"] = glyphs[i].flags;
  1896. glyph["offset"] = Vector2(glyphs[i].x_off, glyphs[i].y_off);
  1897. glyph["advance"] = glyphs[i].advance;
  1898. glyph["font_rid"] = glyphs[i].font_rid;
  1899. glyph["font_size"] = glyphs[i].font_size;
  1900. glyph["index"] = glyphs[i].index;
  1901. ret.push_back(glyph);
  1902. }
  1903. return ret;
  1904. }
  1905. bool TextServer::is_valid_identifier(const String &p_string) const {
  1906. return p_string.is_valid_unicode_identifier();
  1907. }
  1908. bool TextServer::is_valid_letter(uint64_t p_unicode) const {
  1909. return is_unicode_letter(p_unicode);
  1910. }
  1911. TextServer::TextServer() {
  1912. _init_diacritics_map();
  1913. }
  1914. TextServer::~TextServer() {
  1915. }