text_server.cpp 78 KB

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