Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
godotengine
GitHub Repository: godotengine/godot
Path: blob/master/modules/text_server_fb/thorvg_svg_in_ot.h
10277 views
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
31
#pragma once
32
33
#ifdef GDEXTENSION
34
// Headers for building as GDExtension plug-in.
35
36
#include <godot_cpp/core/mutex_lock.hpp>
37
#include <godot_cpp/godot.hpp>
38
#include <godot_cpp/templates/hash_map.hpp>
39
40
using namespace godot;
41
42
#elif defined(GODOT_MODULE)
43
// Headers for building as built-in module.
44
45
#include "core/os/mutex.h"
46
#include "core/templates/hash_map.h"
47
#include "core/typedefs.h"
48
49
#include "modules/modules_enabled.gen.h" // For svg, freetype.
50
#endif
51
52
#ifdef MODULE_SVG_ENABLED
53
#ifdef MODULE_FREETYPE_ENABLED
54
55
#include <freetype/freetype.h>
56
#include <freetype/otsvg.h>
57
#include <ft2build.h>
58
#include <thorvg.h>
59
60
struct GL_State {
61
bool ready = false;
62
float x = 0;
63
float y = 0;
64
float w = 0;
65
float h = 0;
66
CharString xml_code;
67
tvg::Matrix m;
68
};
69
70
struct TVG_NodeCache {
71
uint64_t document_offset;
72
uint64_t body_offset;
73
};
74
75
struct TVG_DocumentCache {
76
String xml_body;
77
double embox_x;
78
double embox_y;
79
HashMap<int64_t, Vector<TVG_NodeCache>> node_caches;
80
};
81
82
struct TVG_State {
83
Mutex mutex;
84
HashMap<uint32_t, GL_State> glyph_map;
85
HashMap<FT_Byte *, TVG_DocumentCache> document_map;
86
};
87
88
FT_Error tvg_svg_in_ot_init(FT_Pointer *p_state);
89
void tvg_svg_in_ot_free(FT_Pointer *p_state);
90
FT_Error tvg_svg_in_ot_preset_slot(FT_GlyphSlot p_slot, FT_Bool p_cache, FT_Pointer *p_state);
91
FT_Error tvg_svg_in_ot_render(FT_GlyphSlot p_slot, FT_Pointer *p_state);
92
93
SVG_RendererHooks *get_tvg_svg_in_ot_hooks();
94
95
#endif // MODULE_FREETYPE_ENABLED
96
#endif // MODULE_SVG_ENABLED
97
98