4#include <unordered_map>
24using std::unordered_map;
49 for (
auto& charIt:
chars)
delete charIt.second;
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(
64 StringTools::substring(page, page.find(
"file=") +
string(
"file=\"").length(), page.find_last_of(
"\"")),
72 enum ParseMode { MODE_PARSEMODE, MODE_IGNORE, MODE_LINEHEIGHT, MODE_BASE };
73 ParseMode parseMode = MODE_PARSEMODE;
75 auto token = StringTools::toLowerCase(StringTools::trim(t.
nextToken()));
76 if (parseMode == MODE_PARSEMODE) {
77 if (token ==
"common") {
78 parseMode = MODE_PARSEMODE;
80 if (token ==
"lineheight") {
81 parseMode = MODE_LINEHEIGHT;
83 if (token ==
"base") {
84 parseMode = MODE_BASE;
86 parseMode = MODE_IGNORE;
89 if (parseMode == MODE_IGNORE) {
92 if (parseMode == MODE_LINEHEIGHT) {
93 font->lineHeight = Float::parse(token);
94 parseMode = MODE_PARSEMODE;
96 if (parseMode == MODE_BASE) {
97 font->baseLine = Float::parse(token);
98 parseMode = MODE_PARSEMODE;
102 while (lineIdx < lines.size()) {
103 auto line = lines[lineIdx++];
104 if (StringTools::startsWith(line,
"chars c ")) {
106 if (StringTools::startsWith(line,
"char ")) {
107 auto def = font->parseCharacter(line);
108 font->chars[def->getId()] = def;
110 if (StringTools::startsWith(line,
"kernings c ")) {
112 if (StringTools::startsWith(line,
"kerning ")) {
142 auto width = Float::parse(t.
nextToken());
144 auto height = Float::parse(t.
nextToken());
146 auto xOffset = Float::parse(t.
nextToken());
148 auto yOffset = Float::parse(t.
nextToken());
150 auto xAdvance = Float::parse(t.
nextToken());
165 textureId = Engine::getInstance()->getTextureManager()->addTexture(
texture, 0);
170 Engine::getInstance()->getTextureManager()->removeTexture(
texture->
getId());
175 if (length == 0) length = text.
size();
177 for (
auto i = offset; i < index && i < text.
size() && i < length; i++) {
178 auto characterId = text.
charAt(i);
180 if (character ==
nullptr)
continue;
181 x += character->getXAdvance();
190 if (length == 0) length = text.
size();
191 for (; index < text.
size() && index < length; index++) {
192 auto characterId = text.
charAt(index);
194 if (character ==
nullptr)
continue;
195 auto xAdvance = character->getXAdvance();
197 if (x - xAdvance / 2 > textX) {
207 for (
auto i = 0; i < text.
size(); i++) {
208 auto characterId = text.
charAt(i);
210 if (character ==
nullptr)
continue;
211 width += character->getXAdvance();
218 for (
auto i = 0; i < text.
size(); i++) {
219 auto characterId = text.
charAt(i);
221 if (character ==
nullptr)
continue;
222 x += character->getXAdvance();
223 if (x > width)
return i;
225 return text.
size() - 1;
233 float width = character->
getWidth();
237 float textureCharLeft = character->
getX();
238 float textureCharTop = character->
getY();
239 float textureCharWidth = character->
getWidth();
240 float textureCharHeight = character->
getHeight();
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
270 auto& backgroundColor = color.
getArray();
272 ((left) / (screenWidth / 2.0f)) - 1.0f,
273 ((screenHeight - top) / (screenHeight / 2.0f)) - 1.0f,
274 backgroundColor[0], backgroundColor[1], backgroundColor[2], backgroundColor[3],
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],
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],
287 ((left) / (screenWidth / 2.0f)) - 1.0f, ((screenHeight - top - height) / (screenHeight / 2.0f)) - 1.0f,
288 backgroundColor[0], backgroundColor[1], backgroundColor[2], backgroundColor[3],
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) {
302 for (
auto i = offset; i < text.
size() && i < length; i++) {
303 auto characterId = text.
charAt(i);
305 if (character ==
nullptr)
continue;
306 auto currentInSelection = i >= selectionStartIndex && i < selectionEndIndex;
307 if (currentInSelection != inSelection) {
309 inSelection = currentInSelection;
310 currentColor = inSelection ==
true?backgroundColor:color;
311 currentBackgroundColor = inSelection ==
true?color:backgroundColor;
314 currentX += character->getXAdvance();
321 for (
auto i = offset; i < text.
size() && i < length; i++) {
322 auto characterId = text.
charAt(i);
324 if (character ==
nullptr)
continue;
325 auto currentInSelection = i >= selectionStartIndex && i < selectionEndIndex;
326 if (currentInSelection != inSelection) {
329 inSelection = currentInSelection;
330 currentColor = inSelection ==
true?backgroundColor:color;
331 currentBackgroundColor = inSelection ==
true?color:backgroundColor;
334 currentX += character->getXAdvance();
const string & getId() const
int32_t getTextureHeight() const
int32_t getTextureWidth() const
array< float, 4 > & getArray() const
The definition of a single character as defined in the AngelCode file format.
GUI Font A font implementation that will parse the output of the AngelCode font tool available at:
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.
unordered_map< uint32_t, GUICharacter * > chars
GUICharacter * getCharacter(uint32_t charId)
Get character defintion.
void drawCharacter(GUIRenderer *guiRenderer, GUICharacter *character, int x, int y, const GUIColor &color=GUIColor::GUICOLOR_WHITE)
Draw character.
void drawCharacterBackground(GUIRenderer *guiRenderer, GUICharacter *character, int x, int y, int lineHeight, const GUIColor &color)
Draw background.
int getTextIndexX(const MutableString &text, int offset, int length, int index)
Get text index X of given text and index.
int getTextIndexByX(const MutableString &text, int offset, int length, int textX)
Get text index by text and X in space of text.
GUIFont()
Public constructor.
static GUIFont * parse(const string &pathName, const string &fileName)
Parse the font definition file.
GUICharacter * parseCharacter(const string &line)
Parse a single character line from the definition.
int getTextIndexXAtWidth(const MutableString &text, int width)
Get text index X at width.
int getTextWidth(const MutableString &text)
Text width.
void bindTexture(int32_t textureId)
Bind texture.
GUIScreenNode * getScreenNode()
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.
File system singleton class.
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
const string & nextToken()
void tokenize(const string &str, const string &delimiters)
Tokenize.