text_server_fb.h 30 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802
  1. /**************************************************************************/
  2. /* text_server_fb.h */
  3. /**************************************************************************/
  4. /* This file is part of: */
  5. /* GODOT ENGINE */
  6. /* https://godotengine.org */
  7. /**************************************************************************/
  8. /* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
  9. /* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
  10. /* */
  11. /* Permission is hereby granted, free of charge, to any person obtaining */
  12. /* a copy of this software and associated documentation files (the */
  13. /* "Software"), to deal in the Software without restriction, including */
  14. /* without limitation the rights to use, copy, modify, merge, publish, */
  15. /* distribute, sublicense, and/or sell copies of the Software, and to */
  16. /* permit persons to whom the Software is furnished to do so, subject to */
  17. /* the following conditions: */
  18. /* */
  19. /* The above copyright notice and this permission notice shall be */
  20. /* included in all copies or substantial portions of the Software. */
  21. /* */
  22. /* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, */
  23. /* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF */
  24. /* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. */
  25. /* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY */
  26. /* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, */
  27. /* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */
  28. /* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
  29. /**************************************************************************/
  30. #ifndef TEXT_SERVER_FB_H
  31. #define TEXT_SERVER_FB_H
  32. /*************************************************************************/
  33. /* Fallback Text Server provides simplified TS functionality, without */
  34. /* BiDi, shaping and advanced font features support. */
  35. /*************************************************************************/
  36. #ifdef GDEXTENSION
  37. // Headers for building as GDExtension plug-in.
  38. #include <godot_cpp/godot.hpp>
  39. #include <godot_cpp/core/class_db.hpp>
  40. #include <godot_cpp/core/ext_wrappers.gen.inc>
  41. #include <godot_cpp/core/mutex_lock.hpp>
  42. #include <godot_cpp/variant/array.hpp>
  43. #include <godot_cpp/variant/dictionary.hpp>
  44. #include <godot_cpp/variant/packed_int32_array.hpp>
  45. #include <godot_cpp/variant/packed_string_array.hpp>
  46. #include <godot_cpp/variant/packed_vector2_array.hpp>
  47. #include <godot_cpp/variant/rect2.hpp>
  48. #include <godot_cpp/variant/rid.hpp>
  49. #include <godot_cpp/variant/string.hpp>
  50. #include <godot_cpp/variant/typed_array.hpp>
  51. #include <godot_cpp/variant/vector2.hpp>
  52. #include <godot_cpp/variant/vector2i.hpp>
  53. #include <godot_cpp/classes/text_server.hpp>
  54. #include <godot_cpp/classes/text_server_extension.hpp>
  55. #include <godot_cpp/classes/text_server_manager.hpp>
  56. #include <godot_cpp/classes/caret_info.hpp>
  57. #include <godot_cpp/classes/global_constants_binds.hpp>
  58. #include <godot_cpp/classes/glyph.hpp>
  59. #include <godot_cpp/classes/image.hpp>
  60. #include <godot_cpp/classes/image_texture.hpp>
  61. #include <godot_cpp/classes/ref.hpp>
  62. #include <godot_cpp/classes/worker_thread_pool.hpp>
  63. #include <godot_cpp/templates/hash_map.hpp>
  64. #include <godot_cpp/templates/hash_set.hpp>
  65. #include <godot_cpp/templates/rid_owner.hpp>
  66. #include <godot_cpp/templates/vector.hpp>
  67. using namespace godot;
  68. #else
  69. // Headers for building as built-in module.
  70. #include "core/extension/ext_wrappers.gen.inc"
  71. #include "core/object/worker_thread_pool.h"
  72. #include "core/templates/hash_map.h"
  73. #include "core/templates/rid_owner.h"
  74. #include "scene/resources/image_texture.h"
  75. #include "servers/text/text_server_extension.h"
  76. #include "modules/modules_enabled.gen.h" // For freetype, msdfgen, svg.
  77. #endif
  78. // Thirdparty headers.
  79. #ifdef MODULE_FREETYPE_ENABLED
  80. #include <ft2build.h>
  81. #include FT_FREETYPE_H
  82. #include FT_TRUETYPE_TABLES_H
  83. #include FT_STROKER_H
  84. #include FT_ADVANCES_H
  85. #include FT_MULTIPLE_MASTERS_H
  86. #include FT_BBOX_H
  87. #include FT_MODULE_H
  88. #include FT_CONFIG_OPTIONS_H
  89. #if !defined(FT_CONFIG_OPTION_USE_BROTLI) && !defined(_MSC_VER)
  90. #warning FreeType is configured without Brotli support, built-in fonts will not be available.
  91. #endif
  92. #endif
  93. /*************************************************************************/
  94. class TextServerFallback : public TextServerExtension {
  95. GDCLASS(TextServerFallback, TextServerExtension);
  96. _THREAD_SAFE_CLASS_
  97. HashMap<StringName, int32_t> feature_sets;
  98. HashMap<int32_t, StringName> feature_sets_inv;
  99. void _insert_feature_sets();
  100. _FORCE_INLINE_ void _insert_feature(const StringName &p_name, int32_t p_tag);
  101. // Font cache data.
  102. #ifdef MODULE_FREETYPE_ENABLED
  103. mutable FT_Library ft_library = nullptr;
  104. #endif
  105. const int rect_range = 1;
  106. struct FontTexturePosition {
  107. int32_t index = -1;
  108. int32_t x = 0;
  109. int32_t y = 0;
  110. FontTexturePosition() {}
  111. FontTexturePosition(int32_t p_id, int32_t p_x, int32_t p_y) :
  112. index(p_id), x(p_x), y(p_y) {}
  113. };
  114. struct Shelf {
  115. int32_t x = 0;
  116. int32_t y = 0;
  117. int32_t w = 0;
  118. int32_t h = 0;
  119. FontTexturePosition alloc_shelf(int32_t p_id, int32_t p_w, int32_t p_h) {
  120. if (p_w > w || p_h > h) {
  121. return FontTexturePosition(-1, 0, 0);
  122. }
  123. int32_t xx = x;
  124. x += p_w;
  125. w -= p_w;
  126. return FontTexturePosition(p_id, xx, y);
  127. }
  128. Shelf() {}
  129. Shelf(int32_t p_x, int32_t p_y, int32_t p_w, int32_t p_h) :
  130. x(p_x), y(p_y), w(p_w), h(p_h) {}
  131. };
  132. struct ShelfPackTexture {
  133. int32_t texture_w = 1024;
  134. int32_t texture_h = 1024;
  135. Image::Format format;
  136. PackedByteArray imgdata;
  137. Ref<ImageTexture> texture;
  138. bool dirty = true;
  139. List<Shelf> shelves;
  140. FontTexturePosition pack_rect(int32_t p_id, int32_t p_h, int32_t p_w) {
  141. int32_t y = 0;
  142. int32_t waste = 0;
  143. Shelf *best_shelf = nullptr;
  144. int32_t best_waste = std::numeric_limits<std::int32_t>::max();
  145. for (Shelf &E : shelves) {
  146. y += E.h;
  147. if (p_w > E.w) {
  148. continue;
  149. }
  150. if (p_h == E.h) {
  151. return E.alloc_shelf(p_id, p_w, p_h);
  152. }
  153. if (p_h > E.h) {
  154. continue;
  155. }
  156. if (p_h < E.h) {
  157. waste = (E.h - p_h) * p_w;
  158. if (waste < best_waste) {
  159. best_waste = waste;
  160. best_shelf = &E;
  161. }
  162. }
  163. }
  164. if (best_shelf) {
  165. return best_shelf->alloc_shelf(p_id, p_w, p_h);
  166. }
  167. if (p_h <= (texture_h - y) && p_w <= texture_w) {
  168. List<Shelf>::Element *E = shelves.push_back(Shelf(0, y, texture_w, p_h));
  169. return E->get().alloc_shelf(p_id, p_w, p_h);
  170. }
  171. return FontTexturePosition(-1, 0, 0);
  172. }
  173. ShelfPackTexture() {}
  174. ShelfPackTexture(int32_t p_w, int32_t p_h) :
  175. texture_w(p_w), texture_h(p_h) {}
  176. };
  177. struct FontGlyph {
  178. bool found = false;
  179. int texture_idx = -1;
  180. Rect2 rect;
  181. Rect2 uv_rect;
  182. Vector2 advance;
  183. };
  184. struct FontForSizeFallback {
  185. double ascent = 0.0;
  186. double descent = 0.0;
  187. double underline_position = 0.0;
  188. double underline_thickness = 0.0;
  189. double scale = 1.0;
  190. double oversampling = 1.0;
  191. Vector2i size;
  192. Vector<ShelfPackTexture> textures;
  193. HashMap<int32_t, FontGlyph> glyph_map;
  194. HashMap<Vector2i, Vector2> kerning_map;
  195. #ifdef MODULE_FREETYPE_ENABLED
  196. FT_Face face = nullptr;
  197. FT_StreamRec stream;
  198. #endif
  199. ~FontForSizeFallback() {
  200. #ifdef MODULE_FREETYPE_ENABLED
  201. if (face != nullptr) {
  202. FT_Done_Face(face);
  203. }
  204. #endif
  205. }
  206. };
  207. struct FontFallback {
  208. Mutex mutex;
  209. TextServer::FontAntialiasing antialiasing = TextServer::FONT_ANTIALIASING_GRAY;
  210. bool mipmaps = false;
  211. bool msdf = false;
  212. int msdf_range = 14;
  213. int msdf_source_size = 48;
  214. int fixed_size = 0;
  215. bool force_autohinter = false;
  216. bool allow_system_fallback = true;
  217. TextServer::Hinting hinting = TextServer::HINTING_LIGHT;
  218. TextServer::SubpixelPositioning subpixel_positioning = TextServer::SUBPIXEL_POSITIONING_AUTO;
  219. Dictionary variation_coordinates;
  220. double oversampling = 0.0;
  221. double embolden = 0.0;
  222. Transform2D transform;
  223. BitField<TextServer::FontStyle> style_flags = 0;
  224. String font_name;
  225. String style_name;
  226. int weight = 400;
  227. int stretch = 100;
  228. HashMap<Vector2i, FontForSizeFallback *, VariantHasher, VariantComparator> cache;
  229. bool face_init = false;
  230. Dictionary supported_varaitions;
  231. Dictionary feature_overrides;
  232. // Language/script support override.
  233. HashMap<String, bool> language_support_overrides;
  234. HashMap<String, bool> script_support_overrides;
  235. PackedByteArray data;
  236. const uint8_t *data_ptr;
  237. size_t data_size;
  238. int face_index = 0;
  239. ~FontFallback() {
  240. for (const KeyValue<Vector2i, FontForSizeFallback *> &E : cache) {
  241. memdelete(E.value);
  242. }
  243. cache.clear();
  244. }
  245. };
  246. _FORCE_INLINE_ FontTexturePosition find_texture_pos_for_glyph(FontForSizeFallback *p_data, int p_color_size, Image::Format p_image_format, int p_width, int p_height, bool p_msdf) const;
  247. #ifdef MODULE_MSDFGEN_ENABLED
  248. _FORCE_INLINE_ FontGlyph rasterize_msdf(FontFallback *p_font_data, FontForSizeFallback *p_data, int p_pixel_range, int p_rect_margin, FT_Outline *outline, const Vector2 &advance) const;
  249. #endif
  250. #ifdef MODULE_FREETYPE_ENABLED
  251. _FORCE_INLINE_ FontGlyph rasterize_bitmap(FontForSizeFallback *p_data, int p_rect_margin, FT_Bitmap bitmap, int yofs, int xofs, const Vector2 &advance, bool p_bgra) const;
  252. #endif
  253. _FORCE_INLINE_ bool _ensure_glyph(FontFallback *p_font_data, const Vector2i &p_size, int32_t p_glyph) const;
  254. _FORCE_INLINE_ bool _ensure_cache_for_size(FontFallback *p_font_data, const Vector2i &p_size) const;
  255. _FORCE_INLINE_ void _font_clear_cache(FontFallback *p_font_data);
  256. static void _generateMTSDF_threaded(void *p_td, uint32_t p_y);
  257. _FORCE_INLINE_ Vector2i _get_size(const FontFallback *p_font_data, int p_size) const {
  258. if (p_font_data->msdf) {
  259. return Vector2i(p_font_data->msdf_source_size, 0);
  260. } else if (p_font_data->fixed_size > 0) {
  261. return Vector2i(p_font_data->fixed_size, 0);
  262. } else {
  263. return Vector2i(p_size, 0);
  264. }
  265. }
  266. _FORCE_INLINE_ Vector2i _get_size_outline(const FontFallback *p_font_data, const Vector2i &p_size) const {
  267. if (p_font_data->msdf) {
  268. return Vector2i(p_font_data->msdf_source_size, 0);
  269. } else if (p_font_data->fixed_size > 0) {
  270. return Vector2i(p_font_data->fixed_size, MIN(p_size.y, 1));
  271. } else {
  272. return p_size;
  273. }
  274. }
  275. _FORCE_INLINE_ int _font_get_weight_by_name(const String &p_sty_name) const {
  276. String sty_name = p_sty_name.replace(" ", "").replace("-", "");
  277. if (sty_name.find("thin") >= 0 || sty_name.find("hairline") >= 0) {
  278. return 100;
  279. } else if (sty_name.find("extralight") >= 0 || sty_name.find("ultralight") >= 0) {
  280. return 200;
  281. } else if (sty_name.find("light") >= 0) {
  282. return 300;
  283. } else if (sty_name.find("semilight") >= 0) {
  284. return 350;
  285. } else if (sty_name.find("regular") >= 0) {
  286. return 400;
  287. } else if (sty_name.find("medium") >= 0) {
  288. return 500;
  289. } else if (sty_name.find("semibold") >= 0 || sty_name.find("demibold") >= 0) {
  290. return 600;
  291. } else if (sty_name.find("bold") >= 0) {
  292. return 700;
  293. } else if (sty_name.find("extrabold") >= 0 || sty_name.find("ultrabold") >= 0) {
  294. return 800;
  295. } else if (sty_name.find("black") >= 0 || sty_name.find("heavy") >= 0) {
  296. return 900;
  297. } else if (sty_name.find("extrablack") >= 0 || sty_name.find("ultrablack") >= 0) {
  298. return 950;
  299. }
  300. return 400;
  301. }
  302. _FORCE_INLINE_ int _font_get_stretch_by_name(const String &p_sty_name) const {
  303. String sty_name = p_sty_name.replace(" ", "").replace("-", "");
  304. if (sty_name.find("ultracondensed") >= 0) {
  305. return 50;
  306. } else if (sty_name.find("extracondensed") >= 0) {
  307. return 63;
  308. } else if (sty_name.find("condensed") >= 0) {
  309. return 75;
  310. } else if (sty_name.find("semicondensed") >= 0) {
  311. return 87;
  312. } else if (sty_name.find("semiexpanded") >= 0) {
  313. return 113;
  314. } else if (sty_name.find("expanded") >= 0) {
  315. return 125;
  316. } else if (sty_name.find("extraexpanded") >= 0) {
  317. return 150;
  318. } else if (sty_name.find("ultraexpanded") >= 0) {
  319. return 200;
  320. }
  321. return 100;
  322. }
  323. _FORCE_INLINE_ bool _is_ital_style(const String &p_sty_name) const {
  324. return (p_sty_name.find("italic") >= 0) || (p_sty_name.find("oblique") >= 0);
  325. }
  326. // Shaped text cache data.
  327. struct TrimData {
  328. int trim_pos = -1;
  329. int ellipsis_pos = -1;
  330. Vector<Glyph> ellipsis_glyph_buf;
  331. };
  332. struct ShapedTextDataFallback {
  333. Mutex mutex;
  334. /* Source data */
  335. RID parent; // Substring parent ShapedTextData.
  336. int start = 0; // Substring start offset in the parent string.
  337. int end = 0; // Substring end offset in the parent string.
  338. String text;
  339. String custom_punct;
  340. TextServer::Direction direction = DIRECTION_LTR; // Desired text direction.
  341. TextServer::Orientation orientation = ORIENTATION_HORIZONTAL;
  342. struct Span {
  343. int start = -1;
  344. int end = -1;
  345. Array fonts;
  346. int font_size = 0;
  347. Variant embedded_key;
  348. String language;
  349. Dictionary features;
  350. Variant meta;
  351. };
  352. Vector<Span> spans;
  353. struct EmbeddedObject {
  354. int pos = 0;
  355. InlineAlignment inline_align = INLINE_ALIGNMENT_CENTER;
  356. Rect2 rect;
  357. double baseline = 0;
  358. };
  359. HashMap<Variant, EmbeddedObject, VariantHasher, VariantComparator> objects;
  360. /* Shaped data */
  361. TextServer::Direction para_direction = DIRECTION_LTR; // Detected text direction.
  362. bool valid = false; // String is shaped.
  363. bool line_breaks_valid = false; // Line and word break flags are populated (and virtual zero width spaces inserted).
  364. bool justification_ops_valid = false; // Virtual elongation glyphs are added to the string.
  365. bool sort_valid = false;
  366. bool text_trimmed = false;
  367. bool preserve_invalid = true; // Draw hex code box instead of missing characters.
  368. bool preserve_control = false; // Draw control characters.
  369. double ascent = 0.0; // Ascent for horizontal layout, 1/2 of width for vertical.
  370. double descent = 0.0; // Descent for horizontal layout, 1/2 of width for vertical.
  371. double width = 0.0; // Width for horizontal layout, height for vertical.
  372. double width_trimmed = 0.0;
  373. int extra_spacing[4] = { 0, 0, 0, 0 };
  374. double upos = 0.0;
  375. double uthk = 0.0;
  376. TrimData overrun_trim_data;
  377. bool fit_width_minimum_reached = false;
  378. Vector<Glyph> glyphs;
  379. Vector<Glyph> glyphs_logical;
  380. };
  381. // Common data.
  382. double oversampling = 1.0;
  383. mutable RID_PtrOwner<FontFallback> font_owner;
  384. mutable RID_PtrOwner<ShapedTextDataFallback> shaped_owner;
  385. struct SystemFontKey {
  386. String font_name;
  387. TextServer::FontAntialiasing antialiasing = TextServer::FONT_ANTIALIASING_GRAY;
  388. bool italic = false;
  389. bool mipmaps = false;
  390. bool msdf = false;
  391. bool force_autohinter = false;
  392. int weight = 400;
  393. int stretch = 100;
  394. int msdf_range = 14;
  395. int msdf_source_size = 48;
  396. int fixed_size = 0;
  397. TextServer::Hinting hinting = TextServer::HINTING_LIGHT;
  398. TextServer::SubpixelPositioning subpixel_positioning = TextServer::SUBPIXEL_POSITIONING_AUTO;
  399. Dictionary variation_coordinates;
  400. double oversampling = 0.0;
  401. double embolden = 0.0;
  402. Transform2D transform;
  403. bool operator==(const SystemFontKey &p_b) const {
  404. return (font_name == p_b.font_name) && (antialiasing == p_b.antialiasing) && (italic == p_b.italic) && (mipmaps == p_b.mipmaps) && (msdf == p_b.msdf) && (force_autohinter == p_b.force_autohinter) && (weight == p_b.weight) && (stretch == p_b.stretch) && (msdf_range == p_b.msdf_range) && (msdf_source_size == p_b.msdf_source_size) && (fixed_size == p_b.fixed_size) && (hinting == p_b.hinting) && (subpixel_positioning == p_b.subpixel_positioning) && (variation_coordinates == p_b.variation_coordinates) && (oversampling == p_b.oversampling) && (embolden == p_b.embolden) && (transform == p_b.transform);
  405. }
  406. SystemFontKey(const String &p_font_name, bool p_italic, int p_weight, int p_stretch, RID p_font, const TextServerFallback *p_fb) {
  407. font_name = p_font_name;
  408. italic = p_italic;
  409. weight = p_weight;
  410. stretch = p_stretch;
  411. antialiasing = p_fb->_font_get_antialiasing(p_font);
  412. mipmaps = p_fb->_font_get_generate_mipmaps(p_font);
  413. msdf = p_fb->_font_is_multichannel_signed_distance_field(p_font);
  414. msdf_range = p_fb->_font_get_msdf_pixel_range(p_font);
  415. msdf_source_size = p_fb->_font_get_msdf_size(p_font);
  416. fixed_size = p_fb->_font_get_fixed_size(p_font);
  417. force_autohinter = p_fb->_font_is_force_autohinter(p_font);
  418. hinting = p_fb->_font_get_hinting(p_font);
  419. subpixel_positioning = p_fb->_font_get_subpixel_positioning(p_font);
  420. variation_coordinates = p_fb->_font_get_variation_coordinates(p_font);
  421. oversampling = p_fb->_font_get_oversampling(p_font);
  422. embolden = p_fb->_font_get_embolden(p_font);
  423. transform = p_fb->_font_get_transform(p_font);
  424. }
  425. };
  426. struct SystemFontCacheRec {
  427. RID rid;
  428. int index = 0;
  429. };
  430. struct SystemFontCache {
  431. Vector<SystemFontCacheRec> var;
  432. int max_var = 0;
  433. };
  434. struct SystemFontKeyHasher {
  435. _FORCE_INLINE_ static uint32_t hash(const SystemFontKey &p_a) {
  436. uint32_t hash = p_a.font_name.hash();
  437. hash = hash_murmur3_one_32(p_a.variation_coordinates.hash(), hash);
  438. hash = hash_murmur3_one_32(p_a.weight, hash);
  439. hash = hash_murmur3_one_32(p_a.stretch, hash);
  440. hash = hash_murmur3_one_32(p_a.msdf_range, hash);
  441. hash = hash_murmur3_one_32(p_a.msdf_source_size, hash);
  442. hash = hash_murmur3_one_32(p_a.fixed_size, hash);
  443. hash = hash_murmur3_one_double(p_a.oversampling, hash);
  444. hash = hash_murmur3_one_double(p_a.embolden, hash);
  445. hash = hash_murmur3_one_real(p_a.transform[0].x, hash);
  446. hash = hash_murmur3_one_real(p_a.transform[0].y, hash);
  447. hash = hash_murmur3_one_real(p_a.transform[1].x, hash);
  448. hash = hash_murmur3_one_real(p_a.transform[1].y, hash);
  449. return hash_fmix32(hash_murmur3_one_32(((int)p_a.mipmaps) | ((int)p_a.msdf << 1) | ((int)p_a.italic << 2) | ((int)p_a.force_autohinter << 3) | ((int)p_a.hinting << 4) | ((int)p_a.subpixel_positioning << 8) | ((int)p_a.antialiasing << 12), hash));
  450. }
  451. };
  452. mutable HashMap<SystemFontKey, SystemFontCache, SystemFontKeyHasher> system_fonts;
  453. mutable HashMap<String, PackedByteArray> system_font_data;
  454. void _realign(ShapedTextDataFallback *p_sd) const;
  455. Mutex ft_mutex;
  456. protected:
  457. static void _bind_methods(){};
  458. void full_copy(ShapedTextDataFallback *p_shaped);
  459. void invalidate(ShapedTextDataFallback *p_shaped);
  460. public:
  461. MODBIND1RC(bool, has_feature, Feature);
  462. MODBIND0RC(String, get_name);
  463. MODBIND0RC(int64_t, get_features);
  464. MODBIND1(free_rid, const RID &);
  465. MODBIND1R(bool, has, const RID &);
  466. MODBIND1R(bool, load_support_data, const String &);
  467. MODBIND0RC(String, get_support_data_filename);
  468. MODBIND0RC(String, get_support_data_info);
  469. MODBIND1RC(bool, save_support_data, const String &);
  470. MODBIND1RC(bool, is_locale_right_to_left, const String &);
  471. MODBIND1RC(int64_t, name_to_tag, const String &);
  472. MODBIND1RC(String, tag_to_name, int64_t);
  473. /* Font interface */
  474. MODBIND0R(RID, create_font);
  475. MODBIND2(font_set_data, const RID &, const PackedByteArray &);
  476. MODBIND3(font_set_data_ptr, const RID &, const uint8_t *, int64_t);
  477. MODBIND2(font_set_face_index, const RID &, int64_t);
  478. MODBIND1RC(int64_t, font_get_face_index, const RID &);
  479. MODBIND1RC(int64_t, font_get_face_count, const RID &);
  480. MODBIND2(font_set_style, const RID &, BitField<FontStyle>);
  481. MODBIND1RC(BitField<FontStyle>, font_get_style, const RID &);
  482. MODBIND2(font_set_style_name, const RID &, const String &);
  483. MODBIND1RC(String, font_get_style_name, const RID &);
  484. MODBIND2(font_set_weight, const RID &, int64_t);
  485. MODBIND1RC(int64_t, font_get_weight, const RID &);
  486. MODBIND2(font_set_stretch, const RID &, int64_t);
  487. MODBIND1RC(int64_t, font_get_stretch, const RID &);
  488. MODBIND2(font_set_name, const RID &, const String &);
  489. MODBIND1RC(String, font_get_name, const RID &);
  490. MODBIND2(font_set_antialiasing, const RID &, TextServer::FontAntialiasing);
  491. MODBIND1RC(TextServer::FontAntialiasing, font_get_antialiasing, const RID &);
  492. MODBIND2(font_set_generate_mipmaps, const RID &, bool);
  493. MODBIND1RC(bool, font_get_generate_mipmaps, const RID &);
  494. MODBIND2(font_set_multichannel_signed_distance_field, const RID &, bool);
  495. MODBIND1RC(bool, font_is_multichannel_signed_distance_field, const RID &);
  496. MODBIND2(font_set_msdf_pixel_range, const RID &, int64_t);
  497. MODBIND1RC(int64_t, font_get_msdf_pixel_range, const RID &);
  498. MODBIND2(font_set_msdf_size, const RID &, int64_t);
  499. MODBIND1RC(int64_t, font_get_msdf_size, const RID &);
  500. MODBIND2(font_set_fixed_size, const RID &, int64_t);
  501. MODBIND1RC(int64_t, font_get_fixed_size, const RID &);
  502. MODBIND2(font_set_allow_system_fallback, const RID &, bool);
  503. MODBIND1RC(bool, font_is_allow_system_fallback, const RID &);
  504. MODBIND2(font_set_force_autohinter, const RID &, bool);
  505. MODBIND1RC(bool, font_is_force_autohinter, const RID &);
  506. MODBIND2(font_set_subpixel_positioning, const RID &, SubpixelPositioning);
  507. MODBIND1RC(SubpixelPositioning, font_get_subpixel_positioning, const RID &);
  508. MODBIND2(font_set_embolden, const RID &, double);
  509. MODBIND1RC(double, font_get_embolden, const RID &);
  510. MODBIND2(font_set_transform, const RID &, const Transform2D &);
  511. MODBIND1RC(Transform2D, font_get_transform, const RID &);
  512. MODBIND2(font_set_variation_coordinates, const RID &, const Dictionary &);
  513. MODBIND1RC(Dictionary, font_get_variation_coordinates, const RID &);
  514. MODBIND2(font_set_hinting, const RID &, TextServer::Hinting);
  515. MODBIND1RC(TextServer::Hinting, font_get_hinting, const RID &);
  516. MODBIND2(font_set_oversampling, const RID &, double);
  517. MODBIND1RC(double, font_get_oversampling, const RID &);
  518. MODBIND1RC(TypedArray<Vector2i>, font_get_size_cache_list, const RID &);
  519. MODBIND1(font_clear_size_cache, const RID &);
  520. MODBIND2(font_remove_size_cache, const RID &, const Vector2i &);
  521. MODBIND3(font_set_ascent, const RID &, int64_t, double);
  522. MODBIND2RC(double, font_get_ascent, const RID &, int64_t);
  523. MODBIND3(font_set_descent, const RID &, int64_t, double);
  524. MODBIND2RC(double, font_get_descent, const RID &, int64_t);
  525. MODBIND3(font_set_underline_position, const RID &, int64_t, double);
  526. MODBIND2RC(double, font_get_underline_position, const RID &, int64_t);
  527. MODBIND3(font_set_underline_thickness, const RID &, int64_t, double);
  528. MODBIND2RC(double, font_get_underline_thickness, const RID &, int64_t);
  529. MODBIND3(font_set_scale, const RID &, int64_t, double);
  530. MODBIND2RC(double, font_get_scale, const RID &, int64_t);
  531. MODBIND2RC(int64_t, font_get_texture_count, const RID &, const Vector2i &);
  532. MODBIND2(font_clear_textures, const RID &, const Vector2i &);
  533. MODBIND3(font_remove_texture, const RID &, const Vector2i &, int64_t);
  534. MODBIND4(font_set_texture_image, const RID &, const Vector2i &, int64_t, const Ref<Image> &);
  535. MODBIND3RC(Ref<Image>, font_get_texture_image, const RID &, const Vector2i &, int64_t);
  536. MODBIND4(font_set_texture_offsets, const RID &, const Vector2i &, int64_t, const PackedInt32Array &);
  537. MODBIND3RC(PackedInt32Array, font_get_texture_offsets, const RID &, const Vector2i &, int64_t);
  538. MODBIND2RC(PackedInt32Array, font_get_glyph_list, const RID &, const Vector2i &);
  539. MODBIND2(font_clear_glyphs, const RID &, const Vector2i &);
  540. MODBIND3(font_remove_glyph, const RID &, const Vector2i &, int64_t);
  541. MODBIND3RC(Vector2, font_get_glyph_advance, const RID &, int64_t, int64_t);
  542. MODBIND4(font_set_glyph_advance, const RID &, int64_t, int64_t, const Vector2 &);
  543. MODBIND3RC(Vector2, font_get_glyph_offset, const RID &, const Vector2i &, int64_t);
  544. MODBIND4(font_set_glyph_offset, const RID &, const Vector2i &, int64_t, const Vector2 &);
  545. MODBIND3RC(Vector2, font_get_glyph_size, const RID &, const Vector2i &, int64_t);
  546. MODBIND4(font_set_glyph_size, const RID &, const Vector2i &, int64_t, const Vector2 &);
  547. MODBIND3RC(Rect2, font_get_glyph_uv_rect, const RID &, const Vector2i &, int64_t);
  548. MODBIND4(font_set_glyph_uv_rect, const RID &, const Vector2i &, int64_t, const Rect2 &);
  549. MODBIND3RC(int64_t, font_get_glyph_texture_idx, const RID &, const Vector2i &, int64_t);
  550. MODBIND4(font_set_glyph_texture_idx, const RID &, const Vector2i &, int64_t, int64_t);
  551. MODBIND3RC(RID, font_get_glyph_texture_rid, const RID &, const Vector2i &, int64_t);
  552. MODBIND3RC(Size2, font_get_glyph_texture_size, const RID &, const Vector2i &, int64_t);
  553. MODBIND3RC(Dictionary, font_get_glyph_contours, const RID &, int64_t, int64_t);
  554. MODBIND2RC(TypedArray<Vector2i>, font_get_kerning_list, const RID &, int64_t);
  555. MODBIND2(font_clear_kerning_map, const RID &, int64_t);
  556. MODBIND3(font_remove_kerning, const RID &, int64_t, const Vector2i &);
  557. MODBIND4(font_set_kerning, const RID &, int64_t, const Vector2i &, const Vector2 &);
  558. MODBIND3RC(Vector2, font_get_kerning, const RID &, int64_t, const Vector2i &);
  559. MODBIND4RC(int64_t, font_get_glyph_index, const RID &, int64_t, int64_t, int64_t);
  560. MODBIND3RC(int64_t, font_get_char_from_glyph_index, const RID &, int64_t, int64_t);
  561. MODBIND2RC(bool, font_has_char, const RID &, int64_t);
  562. MODBIND1RC(String, font_get_supported_chars, const RID &);
  563. MODBIND4(font_render_range, const RID &, const Vector2i &, int64_t, int64_t);
  564. MODBIND3(font_render_glyph, const RID &, const Vector2i &, int64_t);
  565. MODBIND6C(font_draw_glyph, const RID &, const RID &, int64_t, const Vector2 &, int64_t, const Color &);
  566. MODBIND7C(font_draw_glyph_outline, const RID &, const RID &, int64_t, int64_t, const Vector2 &, int64_t, const Color &);
  567. MODBIND2RC(bool, font_is_language_supported, const RID &, const String &);
  568. MODBIND3(font_set_language_support_override, const RID &, const String &, bool);
  569. MODBIND2R(bool, font_get_language_support_override, const RID &, const String &);
  570. MODBIND2(font_remove_language_support_override, const RID &, const String &);
  571. MODBIND1R(PackedStringArray, font_get_language_support_overrides, const RID &);
  572. MODBIND2RC(bool, font_is_script_supported, const RID &, const String &);
  573. MODBIND3(font_set_script_support_override, const RID &, const String &, bool);
  574. MODBIND2R(bool, font_get_script_support_override, const RID &, const String &);
  575. MODBIND2(font_remove_script_support_override, const RID &, const String &);
  576. MODBIND1R(PackedStringArray, font_get_script_support_overrides, const RID &);
  577. MODBIND2(font_set_opentype_feature_overrides, const RID &, const Dictionary &);
  578. MODBIND1RC(Dictionary, font_get_opentype_feature_overrides, const RID &);
  579. MODBIND1RC(Dictionary, font_supported_feature_list, const RID &);
  580. MODBIND1RC(Dictionary, font_supported_variation_list, const RID &);
  581. MODBIND0RC(double, font_get_global_oversampling);
  582. MODBIND1(font_set_global_oversampling, double);
  583. /* Shaped text buffer interface */
  584. MODBIND2R(RID, create_shaped_text, Direction, Orientation);
  585. MODBIND1(shaped_text_clear, const RID &);
  586. MODBIND2(shaped_text_set_direction, const RID &, Direction);
  587. MODBIND1RC(Direction, shaped_text_get_direction, const RID &);
  588. MODBIND1RC(Direction, shaped_text_get_inferred_direction, const RID &);
  589. MODBIND2(shaped_text_set_bidi_override, const RID &, const Array &);
  590. MODBIND2(shaped_text_set_custom_punctuation, const RID &, const String &);
  591. MODBIND1RC(String, shaped_text_get_custom_punctuation, const RID &);
  592. MODBIND2(shaped_text_set_orientation, const RID &, Orientation);
  593. MODBIND1RC(Orientation, shaped_text_get_orientation, const RID &);
  594. MODBIND2(shaped_text_set_preserve_invalid, const RID &, bool);
  595. MODBIND1RC(bool, shaped_text_get_preserve_invalid, const RID &);
  596. MODBIND2(shaped_text_set_preserve_control, const RID &, bool);
  597. MODBIND1RC(bool, shaped_text_get_preserve_control, const RID &);
  598. MODBIND3(shaped_text_set_spacing, const RID &, SpacingType, int64_t);
  599. MODBIND2RC(int64_t, shaped_text_get_spacing, const RID &, SpacingType);
  600. MODBIND7R(bool, shaped_text_add_string, const RID &, const String &, const TypedArray<RID> &, int64_t, const Dictionary &, const String &, const Variant &);
  601. MODBIND6R(bool, shaped_text_add_object, const RID &, const Variant &, const Size2 &, InlineAlignment, int64_t, double);
  602. MODBIND5R(bool, shaped_text_resize_object, const RID &, const Variant &, const Size2 &, InlineAlignment, double);
  603. MODBIND1RC(int64_t, shaped_get_span_count, const RID &);
  604. MODBIND2RC(Variant, shaped_get_span_meta, const RID &, int64_t);
  605. MODBIND5(shaped_set_span_update_font, const RID &, int64_t, const TypedArray<RID> &, int64_t, const Dictionary &);
  606. MODBIND3RC(RID, shaped_text_substr, const RID &, int64_t, int64_t);
  607. MODBIND1RC(RID, shaped_text_get_parent, const RID &);
  608. MODBIND3R(double, shaped_text_fit_to_width, const RID &, double, BitField<TextServer::JustificationFlag>);
  609. MODBIND2R(double, shaped_text_tab_align, const RID &, const PackedFloat32Array &);
  610. MODBIND1R(bool, shaped_text_shape, const RID &);
  611. MODBIND1R(bool, shaped_text_update_breaks, const RID &);
  612. MODBIND1R(bool, shaped_text_update_justification_ops, const RID &);
  613. MODBIND1RC(int64_t, shaped_text_get_trim_pos, const RID &);
  614. MODBIND1RC(int64_t, shaped_text_get_ellipsis_pos, const RID &);
  615. MODBIND1RC(const Glyph *, shaped_text_get_ellipsis_glyphs, const RID &);
  616. MODBIND1RC(int64_t, shaped_text_get_ellipsis_glyph_count, const RID &);
  617. MODBIND3(shaped_text_overrun_trim_to_width, const RID &, double, BitField<TextServer::TextOverrunFlag>);
  618. MODBIND1RC(bool, shaped_text_is_ready, const RID &);
  619. MODBIND1RC(const Glyph *, shaped_text_get_glyphs, const RID &);
  620. MODBIND1R(const Glyph *, shaped_text_sort_logical, const RID &);
  621. MODBIND1RC(int64_t, shaped_text_get_glyph_count, const RID &);
  622. MODBIND1RC(Vector2i, shaped_text_get_range, const RID &);
  623. MODBIND1RC(Array, shaped_text_get_objects, const RID &);
  624. MODBIND2RC(Rect2, shaped_text_get_object_rect, const RID &, const Variant &);
  625. MODBIND1RC(Size2, shaped_text_get_size, const RID &);
  626. MODBIND1RC(double, shaped_text_get_ascent, const RID &);
  627. MODBIND1RC(double, shaped_text_get_descent, const RID &);
  628. MODBIND1RC(double, shaped_text_get_width, const RID &);
  629. MODBIND1RC(double, shaped_text_get_underline_position, const RID &);
  630. MODBIND1RC(double, shaped_text_get_underline_thickness, const RID &);
  631. MODBIND3RC(PackedInt32Array, string_get_word_breaks, const String &, const String &, int64_t);
  632. MODBIND2RC(String, string_to_upper, const String &, const String &);
  633. MODBIND2RC(String, string_to_lower, const String &, const String &);
  634. MODBIND0(cleanup);
  635. TextServerFallback();
  636. ~TextServerFallback();
  637. };
  638. #endif // TEXT_SERVER_FB_H