thorvg_svg_in_ot.h 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. /**************************************************************************/
  2. /* thorvg_svg_in_ot.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 THORVG_SVG_IN_OT_H
  31. #define THORVG_SVG_IN_OT_H
  32. #ifdef GDEXTENSION
  33. // Headers for building as GDExtension plug-in.
  34. #include <godot_cpp/core/mutex_lock.hpp>
  35. #include <godot_cpp/godot.hpp>
  36. #include <godot_cpp/templates/hash_map.hpp>
  37. using namespace godot;
  38. #elif defined(GODOT_MODULE)
  39. // Headers for building as built-in module.
  40. #include "core/os/mutex.h"
  41. #include "core/templates/hash_map.h"
  42. #include "core/typedefs.h"
  43. #include "modules/modules_enabled.gen.h" // For svg, freetype.
  44. #endif
  45. #ifdef MODULE_SVG_ENABLED
  46. #ifdef MODULE_FREETYPE_ENABLED
  47. #include <freetype/freetype.h>
  48. #include <freetype/otsvg.h>
  49. #include <ft2build.h>
  50. #include <thorvg.h>
  51. struct GL_State {
  52. bool ready = false;
  53. float x = 0;
  54. float y = 0;
  55. float w = 0;
  56. float h = 0;
  57. CharString xml_code;
  58. tvg::Matrix m;
  59. };
  60. struct TVG_NodeCache {
  61. uint64_t document_offset;
  62. uint64_t body_offset;
  63. };
  64. struct TVG_DocumentCache {
  65. String xml_body;
  66. double embox_x;
  67. double embox_y;
  68. HashMap<int64_t, Vector<TVG_NodeCache>> node_caches;
  69. };
  70. struct TVG_State {
  71. Mutex mutex;
  72. HashMap<uint32_t, GL_State> glyph_map;
  73. HashMap<FT_Byte *, TVG_DocumentCache> document_map;
  74. };
  75. FT_Error tvg_svg_in_ot_init(FT_Pointer *p_state);
  76. void tvg_svg_in_ot_free(FT_Pointer *p_state);
  77. FT_Error tvg_svg_in_ot_preset_slot(FT_GlyphSlot p_slot, FT_Bool p_cache, FT_Pointer *p_state);
  78. FT_Error tvg_svg_in_ot_render(FT_GlyphSlot p_slot, FT_Pointer *p_state);
  79. SVG_RendererHooks *get_tvg_svg_in_ot_hooks();
  80. #endif // MODULE_FREETYPE_ENABLED
  81. #endif // MODULE_SVG_ENABLED
  82. #endif // THORVG_SVG_IN_OT_H