forked from playcanvas/msdfgen
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathimport-font.cpp
203 lines (173 loc) · 6.43 KB
/
import-font.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
#include "import-font.h"
#include <cstdlib>
#include <queue>
#include <ft2build.h>
#include FT_FREETYPE_H
#ifdef _WIN32
#pragma comment(lib, "freetype.lib")
#endif
namespace msdfgen {
#define REQUIRE(cond) { if (!(cond)) return false; }
class FreetypeHandle {
friend FreetypeHandle * initializeFreetype();
friend void deinitializeFreetype(FreetypeHandle *library);
friend FontHandle * loadFont(FreetypeHandle *library, const char *filename);
FT_Library library;
};
class FontHandle {
friend FontHandle * loadFont(FreetypeHandle *library, const char *filename);
friend void destroyFont(FontHandle *font);
friend bool getFontScale(double &output, FontHandle *font);
friend bool getFontWhitespaceWidth(double &spaceAdvance, double &tabAdvance, FontHandle *font);
friend bool loadGlyph(Shape &output, FontHandle *font, int unicode, double *advance);
friend bool getKerning(double &output, FontHandle *font, int unicode1, int unicode2);
FT_Face face;
};
FreetypeHandle * initializeFreetype() {
FreetypeHandle *handle = new FreetypeHandle;
FT_Error error = FT_Init_FreeType(&handle->library);
if (error) {
delete handle;
return NULL;
}
return handle;
}
void deinitializeFreetype(FreetypeHandle *library) {
FT_Done_FreeType(library->library);
delete library;
}
FontHandle * loadFont(FreetypeHandle *library, const char *filename) {
if (!library)
return NULL;
FontHandle *handle = new FontHandle;
FT_Error error = FT_New_Face(library->library, filename, 0, &handle->face);
if (error) {
delete handle;
return NULL;
}
return handle;
}
void destroyFont(FontHandle *font) {
FT_Done_Face(font->face);
delete font;
}
bool getFontScale(double &output, FontHandle *font) {
output = font->face->units_per_EM;
return true;
}
bool getFontWhitespaceWidth(double &spaceAdvance, double &tabAdvance, FontHandle *font) {
FT_Error error = FT_Load_Char(font->face, ' ', FT_LOAD_NO_SCALE);
if (error)
return false;
spaceAdvance = font->face->glyph->advance.x/64.;
error = FT_Load_Char(font->face, '\t', FT_LOAD_NO_SCALE);
if (error)
return false;
tabAdvance = font->face->glyph->advance.x/64.;
return true;
}
bool loadGlyph(Shape &output, FontHandle *font, int unicode, double *advance) {
enum PointType {
NONE = 0,
PATH_POINT,
QUADRATIC_POINT,
CUBIC_POINT,
CUBIC_POINT2
};
if (!font)
return false;
FT_Error error = FT_Load_Char(font->face, unicode, FT_LOAD_NO_SCALE);
if (error)
return false;
double unitsPerEm;
double unitScale;
getFontScale(unitsPerEm, font);
unitScale = 2048.0 / unitsPerEm;
output.contours.clear();
output.inverseYAxis = false;
if (advance)
*advance = unitScale * font->face->glyph->advance.x/64.;
int last = -1;
// For each contour
for (int i = 0; i < font->face->glyph->outline.n_contours; ++i) {
Contour &contour = output.addContour();
int first = last+1;
int firstPathPoint = -1;
last = font->face->glyph->outline.contours[i];
PointType state = NONE;
Point2 startPoint;
Point2 controlPoint[2];
// For each point on the contour
for (int round = 0, index = first; round == 0; ++index) {
if (index > last) {
REQUIRE(firstPathPoint >= 0);
index = first;
}
// Close contour
if (index == firstPathPoint)
++round;
Point2 point(unitScale*font->face->glyph->outline.points[index].x/64., unitScale*font->face->glyph->outline.points[index].y/64.);
PointType pointType = font->face->glyph->outline.tags[index]&1 ? PATH_POINT : font->face->glyph->outline.tags[index]&2 ? CUBIC_POINT : QUADRATIC_POINT;
switch (state) {
case NONE:
if (pointType == PATH_POINT) {
firstPathPoint = index;
startPoint = point;
state = PATH_POINT;
}
break;
case PATH_POINT:
if (pointType == PATH_POINT) {
contour.addEdge(new LinearSegment(startPoint, point));
startPoint = point;
} else {
controlPoint[0] = point;
state = pointType;
}
break;
case QUADRATIC_POINT:
REQUIRE(pointType != CUBIC_POINT);
if (pointType == PATH_POINT) {
contour.addEdge(new QuadraticSegment(startPoint, controlPoint[0], point));
startPoint = point;
state = PATH_POINT;
} else {
Point2 midPoint = .5*controlPoint[0]+.5*point;
contour.addEdge(new QuadraticSegment(startPoint, controlPoint[0], midPoint));
startPoint = midPoint;
controlPoint[0] = point;
}
break;
case CUBIC_POINT:
REQUIRE(pointType == CUBIC_POINT);
controlPoint[1] = point;
state = CUBIC_POINT2;
break;
case CUBIC_POINT2:
REQUIRE(pointType != QUADRATIC_POINT);
if (pointType == PATH_POINT) {
contour.addEdge(new CubicSegment(startPoint, controlPoint[0], controlPoint[1], point));
startPoint = point;
} else {
Point2 midPoint = .5*controlPoint[1]+.5*point;
contour.addEdge(new CubicSegment(startPoint, controlPoint[0], controlPoint[1], midPoint));
startPoint = midPoint;
controlPoint[0] = point;
}
state = pointType;
break;
}
}
}
return true;
}
bool getKerning(double &output, FontHandle *font, int unicode1, int unicode2) {
FT_Vector kerning;
if (FT_Get_Kerning(font->face, FT_Get_Char_Index(font->face, unicode1), FT_Get_Char_Index(font->face, unicode2), FT_KERNING_UNSCALED, &kerning)) {
output = 0;
return false;
}
output = kerning.x/64.;
return true;
}
}