TDME2 1.9.121
GUIFont.cpp
Go to the documentation of this file.
2
3#include <string>
4#include <unordered_map>
5#include <vector>
6
7#include <tdme/tdme.h>
11#include <tdme/engine/Engine.h>
14#include <tdme/math/Math.h>
22
23using std::string;
24using std::unordered_map;
25using std::vector;
26
42
43GUIFont::GUIFont()
44{
45}
46
48{
49 for (auto& charIt: chars) delete charIt.second;
50 if (texture != nullptr) texture->releaseReference();
51}
52
53GUIFont* GUIFont::parse(const string& pathName, const string& fileName)
54{
55 int lineIdx = 0;
56 auto font = new GUIFont();
57 vector<string> lines;
58 FileSystem::getInstance()->getContentAsStringArray(pathName, fileName, lines);
59 auto info = lines[lineIdx++];
60 auto common = lines[lineIdx++];
61 auto page = lines[lineIdx++];
62 font->texture = TextureReader::read(
63 pathName,
64 StringTools::substring(page, page.find("file=") + string("file=\"").length(), page.find_last_of("\"")),
65 false,
66 false
67 );
68 // parse "common" line which contains line height and base line
69 {
71 t.tokenize(common, "= ");
72 enum ParseMode { MODE_PARSEMODE, MODE_IGNORE, MODE_LINEHEIGHT, MODE_BASE };
73 ParseMode parseMode = MODE_PARSEMODE;
74 while (t.hasMoreTokens()) {
75 auto token = StringTools::toLowerCase(StringTools::trim(t.nextToken()));
76 if (parseMode == MODE_PARSEMODE) {
77 if (token == "common") {
78 parseMode = MODE_PARSEMODE;
79 } else
80 if (token == "lineheight") {
81 parseMode = MODE_LINEHEIGHT;
82 } else
83 if (token == "base") {
84 parseMode = MODE_BASE;
85 } else {
86 parseMode = MODE_IGNORE;
87 }
88 } else
89 if (parseMode == MODE_IGNORE) {
90 // no op
91 } else
92 if (parseMode == MODE_LINEHEIGHT) {
93 font->lineHeight = Float::parse(token);
94 parseMode = MODE_PARSEMODE;
95 } else
96 if (parseMode == MODE_BASE) {
97 font->baseLine = Float::parse(token);
98 parseMode = MODE_PARSEMODE;
99 }
100 }
101 }
102 while (lineIdx < lines.size()) {
103 auto line = lines[lineIdx++];
104 if (StringTools::startsWith(line, "chars c ")) {
105 } else
106 if (StringTools::startsWith(line, "char ")) {
107 auto def = font->parseCharacter(line);
108 font->chars[def->getId()] = def;
109 } else
110 if (StringTools::startsWith(line, "kernings c ")) {
111 } else
112 if (StringTools::startsWith(line, "kerning ")) {
113 /*
114 // TODO: not yet supported in the moment
115 StringTokenizer t;
116 t.tokenize(line, " =");
117 t.nextToken();
118 t.nextToken();
119 auto first = Float::parseInt(t.nextToken());
120 t.nextToken();
121 auto second = Float::parseInt(t.nextToken());
122 t.nextToken();
123 auto offset = Float::parseInt(t.nextToken());
124 */
125 }
126 }
127 return font;
128}
129
131{
133 t.tokenize(line, " =");
134 t.nextToken();
135 t.nextToken();
136 auto id = Float::parse(t.nextToken());
137 t.nextToken();
138 auto x = Float::parse(t.nextToken());
139 t.nextToken();
140 auto y = Float::parse(t.nextToken());
141 t.nextToken();
142 auto width = Float::parse(t.nextToken());
143 t.nextToken();
144 auto height = Float::parse(t.nextToken());
145 t.nextToken();
146 auto xOffset = Float::parse(t.nextToken());
147 t.nextToken();
148 auto yOffset = Float::parse(t.nextToken());
149 t.nextToken();
150 auto xAdvance = Float::parse(t.nextToken());
151 return new GUICharacter(
152 id,
153 x,
154 y,
155 width,
156 height,
157 xOffset,
158 yOffset,
159 xAdvance
160 );
161}
162
164{
165 textureId = Engine::getInstance()->getTextureManager()->addTexture(texture, 0);
166}
167
169{
170 Engine::getInstance()->getTextureManager()->removeTexture(texture->getId());
171}
172
173int GUIFont::getTextIndexX(const MutableString& text, int offset, int length, int index)
174{
175 if (length == 0) length = text.size();
176 auto x = 0;
177 for (auto i = offset; i < index && i < text.size() && i < length; i++) {
178 auto characterId = text.charAt(i);
179 auto character = getCharacter(characterId);
180 if (character == nullptr) continue;
181 x += character->getXAdvance();
182 }
183 return x;
184}
185
186int GUIFont::getTextIndexByX(const MutableString& text, int offset, int length, int textX)
187{
188 auto x = 0;
189 auto index = offset;
190 if (length == 0) length = text.size();
191 for (; index < text.size() && index < length; index++) {
192 auto characterId = text.charAt(index);
193 auto character = getCharacter(characterId);
194 if (character == nullptr) continue;
195 auto xAdvance = character->getXAdvance();
196 x += xAdvance;
197 if (x - xAdvance / 2 > textX) {
198 return index;
199 }
200 }
201 return index;
202}
203
205{
206 auto width = 0;
207 for (auto i = 0; i < text.size(); i++) {
208 auto characterId = text.charAt(i);
209 auto character = getCharacter(characterId);
210 if (character == nullptr) continue;
211 width += character->getXAdvance();
212 }
213 return width;
214}
215
216int GUIFont::getTextIndexXAtWidth(const MutableString& text, int width) {
217 auto x = 0;
218 for (auto i = 0; i < text.size(); i++) {
219 auto characterId = text.charAt(i);
220 auto character = getCharacter(characterId);
221 if (character == nullptr) continue;
222 x += character->getXAdvance();
223 if (x > width) return i;
224 }
225 return text.size() - 1;
226}
227
228void GUIFont::drawCharacter(GUIRenderer* guiRenderer, GUICharacter* character, int x, int y, const GUIColor& color) {
229 float screenWidth = guiRenderer->getScreenNode()->getScreenWidth();
230 float screenHeight = guiRenderer->getScreenNode()->getScreenHeight();
231 float left = x + character->getXOffset();
232 float top = y + character->getYOffset();
233 float width = character->getWidth();
234 float height = character->getHeight();
235 float textureWidth = texture->getTextureWidth();
236 float textureHeight = texture->getTextureHeight();
237 float textureCharLeft = character->getX();
238 float textureCharTop = character->getY();
239 float textureCharWidth = character->getWidth();
240 float textureCharHeight = character->getHeight();
241 auto& fontColor = color.getArray();
242 guiRenderer->addQuad(
243 ((left) / (screenWidth / 2.0f)) - 1.0f,
244 ((screenHeight - top) / (screenHeight / 2.0f)) - 1.0f,
245 fontColor[0], fontColor[1], fontColor[2], fontColor[3],
246 textureCharLeft / textureWidth, textureCharTop / textureHeight,
247 ((left + width) / (screenWidth / 2.0f)) - 1.0f,
248 ((screenHeight - top) / (screenHeight / 2.0f)) - 1.0f,
249 fontColor[0], fontColor[1], fontColor[2], fontColor[3],
250 (textureCharLeft + textureCharWidth) / textureWidth, textureCharTop / textureHeight,
251 ((left + width) / (screenWidth / 2.0f)) - 1.0f,
252 ((screenHeight - top - height) / (screenHeight / 2.0f)) - 1.0f,
253 fontColor[0], fontColor[1], fontColor[2], fontColor[3],
254 (textureCharLeft + textureCharWidth) / textureWidth,
255 (textureCharTop + textureCharHeight) / textureHeight,
256 ((left) / (screenWidth / 2.0f)) - 1.0f, ((screenHeight - top - height) / (screenHeight / 2.0f)) - 1.0f,
257 fontColor[0], fontColor[1], fontColor[2], fontColor[3],
258 (textureCharLeft) / textureWidth,
259 (textureCharTop + textureCharHeight) / textureHeight
260 );
261}
262
263void GUIFont::drawCharacterBackground(GUIRenderer* guiRenderer, GUICharacter* character, int x, int y, int lineHeight, const GUIColor& color) {
264 float screenWidth = guiRenderer->getScreenNode()->getScreenWidth();
265 float screenHeight = guiRenderer->getScreenNode()->getScreenHeight();
266 float left = x;
267 float top = y;
268 float width = character->getXAdvance();
269 float height = lineHeight;
270 auto& backgroundColor = color.getArray();
271 guiRenderer->addQuad(
272 ((left) / (screenWidth / 2.0f)) - 1.0f,
273 ((screenHeight - top) / (screenHeight / 2.0f)) - 1.0f,
274 backgroundColor[0], backgroundColor[1], backgroundColor[2], backgroundColor[3],
275 0.0f,
276 1.0f,
277 ((left + width) / (screenWidth / 2.0f)) - 1.0f,
278 ((screenHeight - top) / (screenHeight / 2.0f)) - 1.0f,
279 backgroundColor[0], backgroundColor[1], backgroundColor[2], backgroundColor[3],
280 1.0f,
281 1.0f,
282 ((left + width) / (screenWidth / 2.0f)) - 1.0f,
283 ((screenHeight - top - height) / (screenHeight / 2.0f)) - 1.0f,
284 backgroundColor[0], backgroundColor[1], backgroundColor[2], backgroundColor[3],
285 1.0f,
286 0.0f,
287 ((left) / (screenWidth / 2.0f)) - 1.0f, ((screenHeight - top - height) / (screenHeight / 2.0f)) - 1.0f,
288 backgroundColor[0], backgroundColor[1], backgroundColor[2], backgroundColor[3],
289 0.0f,
290 0.0f
291 );
292}
293
294void GUIFont::drawString(GUIRenderer* guiRenderer, int x, int y, const MutableString& text, int offset, int length, const GUIColor& color, int selectionStartIndex, int selectionEndIndex, const GUIColor& backgroundColor)
295{
296 if (length == 0) length = text.size();
297 auto inSelection = false;
298 auto currentColor = color;
299 auto currentBackgroundColor = backgroundColor;
300 if (selectionStartIndex != -1 && selectionEndIndex != -1) {
301 auto currentX = x;
302 for (auto i = offset; i < text.size() && i < length; i++) {
303 auto characterId = text.charAt(i);
304 auto character = getCharacter(characterId);
305 if (character == nullptr) continue;
306 auto currentInSelection = i >= selectionStartIndex && i < selectionEndIndex;
307 if (currentInSelection != inSelection) {
308 guiRenderer->render();
309 inSelection = currentInSelection;
310 currentColor = inSelection == true?backgroundColor:color;
311 currentBackgroundColor = inSelection == true?color:backgroundColor;
312 }
313 drawCharacterBackground(guiRenderer, character, currentX, y, lineHeight, currentBackgroundColor);
314 currentX += character->getXAdvance();
315 }
316 guiRenderer->render();
317 }
318 guiRenderer->render();
319 guiRenderer->bindTexture(textureId);
320 auto currentX = x;
321 for (auto i = offset; i < text.size() && i < length; i++) {
322 auto characterId = text.charAt(i);
323 auto character = getCharacter(characterId);
324 if (character == nullptr) continue;
325 auto currentInSelection = i >= selectionStartIndex && i < selectionEndIndex;
326 if (currentInSelection != inSelection) {
327 guiRenderer->setFontColor(currentColor);
328 guiRenderer->render();
329 inSelection = currentInSelection;
330 currentColor = inSelection == true?backgroundColor:color;
331 currentBackgroundColor = inSelection == true?color:backgroundColor;
332 }
333 drawCharacter(guiRenderer, character, currentX, y);
334 currentX += character->getXAdvance();
335 }
336 guiRenderer->setFontColor(currentColor);
337 guiRenderer->render();
338 guiRenderer->bindTexture(0);
339}
Engine main class.
Definition: Engine.h:122
const string & getId() const
Definition: Texture.h:60
array< float, 4 > & getArray() const
Definition: Color4Base.h:219
The definition of a single character as defined in the AngelCode file format.
Definition: GUICharacter.h:11
GUI Font A font implementation that will parse the output of the AngelCode font tool available at:
Definition: GUIFont.h:48
void drawString(GUIRenderer *guiRenderer, int x, int y, const MutableString &text, int offset, int length, const GUIColor &color, int selectionStartIndex=-1, int selectionEndIndex=-1, const GUIColor &backgroundColor=GUIColor::GUICOLOR_TRANSPARENT)
Draw string.
Definition: GUIFont.cpp:294
unordered_map< uint32_t, GUICharacter * > chars
Definition: GUIFont.h:52
GUICharacter * getCharacter(uint32_t charId)
Get character defintion.
Definition: GUIFont.h:111
void drawCharacter(GUIRenderer *guiRenderer, GUICharacter *character, int x, int y, const GUIColor &color=GUIColor::GUICOLOR_WHITE)
Draw character.
Definition: GUIFont.cpp:228
void drawCharacterBackground(GUIRenderer *guiRenderer, GUICharacter *character, int x, int y, int lineHeight, const GUIColor &color)
Draw background.
Definition: GUIFont.cpp:263
int getTextIndexX(const MutableString &text, int offset, int length, int index)
Get text index X of given text and index.
Definition: GUIFont.cpp:173
int getTextIndexByX(const MutableString &text, int offset, int length, int textX)
Get text index by text and X in space of text.
Definition: GUIFont.cpp:186
GUIFont()
Public constructor.
Definition: GUIFont.cpp:43
static GUIFont * parse(const string &pathName, const string &fileName)
Parse the font definition file.
Definition: GUIFont.cpp:53
GUICharacter * parseCharacter(const string &line)
Parse a single character line from the definition.
Definition: GUIFont.cpp:130
int getTextIndexXAtWidth(const MutableString &text, int width)
Get text index X at width.
Definition: GUIFont.cpp:216
int getTextWidth(const MutableString &text)
Text width.
Definition: GUIFont.cpp:204
void bindTexture(int32_t textureId)
Bind texture.
GUIScreenNode * getScreenNode()
Definition: GUIRenderer.h:135
void addQuad(float x1, float y1, float colorR1, float colorG1, float colorB1, float colorA1, float tu1, float tv1, float x2, float y2, float colorR2, float colorG2, float colorB2, float colorA2, float tu2, float tv2, float x3, float y3, float colorR3, float colorG3, float colorB3, float colorA3, float tu3, float tv3, float x4, float y4, float colorR4, float colorG4, float colorB4, float colorA4, float tu4, float tv4)
Add quad Note: quad vertices order 1 2 +-—+ | | | | +-—+ 4 3.
void setFontColor(const GUIColor &color)
Set effect color mul.
Definition: GUIRenderer.h:154
Standard math functions.
Definition: Math.h:21
File system singleton class.
Definition: FileSystem.h:14
Float class.
Definition: Float.h:23
Integer class.
Definition: Integer.h:26
Mutable string class.
Definition: MutableString.h:16
char charAt(int32_t idx) const
Get char at index.
void releaseReference()
releases a reference, thus decrementing the counter and delete it if reference counter is zero
Definition: Reference.cpp:20
String tokenizer class.
void tokenize(const string &str, const string &delimiters)
Tokenize.
String tools class.
Definition: StringTools.h:20