TDME2 1.9.121
GUIFont.h
Go to the documentation of this file.
1#pragma once
2
3#include <string>
4#include <unordered_map>
5
6#include <tdme/tdme.h>
8#include <tdme/gui/fwd-tdme.h>
15
17
18using std::string;
19using std::unordered_map;
20
28
29/**
30 * GUI Font
31 * A font implementation that will parse the output of the AngelCode font tool available at:
32 * @see http://www.angelcode.com/products/bmfont/
33 * This implementation copes with both the font display and kerning information allowing nicer
34 * looking paragraphs of text. Note that this utility only supports the text format definition
35 * file.
36 * This was found by google and its origin seems to be Slick2D (http://slick.ninjacave.com) which is under BSD license
37 * Copyright (c) 2013, Slick2D
38 * All rights reserved.
39 * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
40 * * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
41 * * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
42 * * Neither the name of the Slick2D nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
43 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS �������AS IS�������� AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
44 * @author kevin, Andreas Drewke
45 * @version $Id$
46 */
48{
49private:
50 Texture* texture { nullptr };
51 int32_t textureId { -1 };
52 unordered_map<uint32_t, GUICharacter*> chars;
53 float lineHeight { 0.0f };
54 float baseLine { 0.0f };
55
56 /**
57 * Parse a single character line from the definition
58 * @param line line The line to be parsed
59 * @return The character definition from the line
60 */
61 GUICharacter* parseCharacter(const string& line);
62
63public:
64 /**
65 * Parse the font definition file
66 * @param pathName font path name
67 * @param fileName font file name
68 * @throws tdme::os::filesystem::FileSystemException
69 */
70 static GUIFont* parse(const string& pathName, const string& fileName);
71
72 /**
73 * Public constructor
74 */
75 GUIFont();
76
77 /**
78 * Destructor
79 */
80 ~GUIFont();
81
82 /**
83 * Init
84 */
85 void initialize();
86
87 /**
88 * Dispose
89 */
90 void dispose();
91
92 /**
93 * @return texture
94 */
95 inline Texture* getTexture() {
96 return texture;
97 }
98
99 /**
100 * @return texture id
101 */
102 inline int32_t getTextureId() {
103 return textureId;
104 }
105
106 /**
107 * Get character defintion
108 * @param charId character id
109 * @return character definition
110 */
111 inline GUICharacter* getCharacter(uint32_t charId) {
112 auto charIt = chars.find(charId);
113 if (charIt != chars.end()) return charIt->second;
114 return nullptr;
115 }
116
117 /**
118 * @return line height
119 */
120 inline float getLineHeight() {
121 return lineHeight;
122 }
123
124 /**
125 * @return base line
126 */
127 inline float getBaseLine() {
128 return baseLine;
129 }
130
131 /**
132 * Get text index X of given text and index
133 * @param text text
134 * @param offset offset
135 * @param length length or 0 if full length
136 * @param index index
137 * @return text index x
138 */
139 int getTextIndexX(const MutableString& text, int offset, int length, int index);
140
141 /**
142 * Get text index by text and X in space of text
143 * @param text text
144 * @param offset offset
145 * @param length length or 0 if full length
146 * @param textX text X
147 * @return text index
148 */
149 int getTextIndexByX(const MutableString& text, int offset, int length, int textX);
150
151 /**
152 * Text width
153 * @param text text
154 * @return text width
155 */
156 int getTextWidth(const MutableString& text);
157
158 /**
159 * Get text index X at width
160 * @param text text
161 * @return text width
162 */
163 int getTextIndexXAtWidth(const MutableString& text, int width);
164
165 /**
166 * Draw character
167 * @param guiRenderer gui renderer
168 * @param character character
169 * @param x x
170 * @param y y
171 * @param color color
172 */
173 void drawCharacter(GUIRenderer* guiRenderer, GUICharacter* character, int x, int y, const GUIColor& color = GUIColor::GUICOLOR_WHITE);
174
175 /**
176 * Draw background
177 * @param guiRenderer gui renderer
178 * @param character character
179 * @param x x
180 * @param y y
181 * @param lineHeight line height
182 * @param color color
183 */
184 void drawCharacterBackground(GUIRenderer* guiRenderer, GUICharacter* character, int x, int y, int lineHeight, const GUIColor& color);
185
186 /**
187 * Draw string
188 * @param guiRenderer gui renderer
189 * @param x x
190 * @param y y
191 * @param text text
192 * @param offset offset
193 * @param length length or 0 if full length
194 * @param color color
195 * @param selectionStartIndex selection start index
196 * @param selectionEndIndex selection end index
197 * @param backgroundColor background color
198 */
199 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);
200
201};
GUI screen node that represents a screen that can be rendered via GUI system.
Definition: GUIScreenNode.h:57
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
Mutable string class.
Definition: MutableString.h:16