TDME2 1.9.121
GUIStyledTextNode.h
Go to the documentation of this file.
1#pragma once
2
3#include <string>
4#include <vector>
5
6#include <tdme/tdme.h>
7#include <tdme/gui/fwd-tdme.h>
16
17using std::string;
18using std::vector;
19
36
37/**
38 * GUI styled text node
39 * @author Andreas Drewke
40 * @version $Id$
41 */
43 : public GUINode
44{
46
47private:
48 struct TextStyle {
50 int endIdx;
53 string url;
56 int width;
57 int height;
58 };
59
61 GUIFont* font { nullptr };
64
67
76
77 vector<TextStyle> styles;
79
80 struct Line {
81 int idx;
82 float width;
83 float height;
85 float baseLine;
87 };
88
89 string spaceString { " " };
90 string tabString3 { " " };
91 string tabString4 { " " };
92 string line;
93 vector<int> lineCharIdxs;
94 vector<Line> lineConstraints;
95
96 /**
97 * Get text style for
98 * @param lineCharIdxs line character indices
99 * @param lineCharIdx line character idx
100 * @param textStyleIdx text style to start looking up with, will also be written
101 * @return text style
102 */
103 inline TextStyle* getTextStyle(const vector<int>& lineCharIdxs, int lineCharIdx, int& textStyleIdx) {
104 if (styles.empty() == true) return nullptr;
105 TextStyle* textStyle = nullptr;
106 // find style to start with, aligned with last line start, if we do not have a start yet
107 if (textStyleIdx == -1) {
108 textStyleIdx = 0;
109 for (auto l = 0; l < styles.size(); l++) {
110 auto textStyle = &styles[l];
111 if (textStyle->startIdx > lineCharIdxs[lineCharIdx]) {
112 textStyleIdx = l - 1;
113 break;
114 }
115 }
116 }
117 // ok proceed to find correct style for character in text, based on our text style index
118 auto _textStyle = textStyleIdx < styles.size()?&styles[textStyleIdx]:nullptr;
119 if (_textStyle != nullptr && lineCharIdxs[lineCharIdx] >= _textStyle->startIdx) {
120 if (lineCharIdxs[lineCharIdx] > _textStyle->endIdx) {
121 // invalid text style, check next text style
122 textStyleIdx++;
123 _textStyle = textStyleIdx < styles.size()?&styles[textStyleIdx]:nullptr;
124 if (_textStyle != nullptr && lineCharIdxs[lineCharIdx] >= _textStyle->startIdx) {
125 if (lineCharIdxs[lineCharIdx] <= _textStyle->endIdx) {
126 // valid text style
127 textStyle = _textStyle;
128 }
129 }
130 } else
131 if (lineCharIdxs[lineCharIdx] <= _textStyle->endIdx) {
132 // valid text style
133 textStyle = _textStyle;
134 }
135 }
136 return textStyle;
137 }
138
139 /**
140 * Determine next line constraints
141 * @param i current loop index
142 * @param charEndIdx character end index
143 * @param textStyleIdx text style index to start with
144 */
145 void determineNextLineConstraints(int& i, int charEndIdx, int textStyleIdx);
146protected:
147 /**
148 * Constructor
149 * @param screenNode screen node
150 * @param parentNode parent node
151 * @param id id
152 * @param flow flow
153 * @param alignments alignments
154 * @param requestedConstraints requested constraints
155 * @param backgroundColor background color
156 * @param backgroundImage background image
157 * @param backgroundImageScale9Grid background image scale 9 grid
158 * @param backgroundImageEffectColorMul background image effect color mul
159 * @param backgroundImageEffectColorAdd background image effect color add
160 * @param border border
161 * @param padding padding
162 * @param showOn show on
163 * @param hideOn hide on
164 * @param preformatted preformatted
165 * @param font font
166 * @param color color
167 * @param text text
168 * @throws tdme::gui::GUIParserException
169 */
173 const string& id,
178 const string& backgroundImage,
182 const GUINode_Border& border,
186 bool preformatted,
187 const string& font,
188 const string& color,
189 const MutableString& text
190 );
191
192 /**
193 * Dispose styles
194 */
195 void disposeStyles();
196
197 // overridden methods
198 const string getNodeType() override;
199 bool isContentNode() override;
200
201public:
202 // overridden methods
203 int getContentWidth() override;
204 int getContentHeight() override;
205 void computeContentAlignment() override;
206 void dispose() override;
207 void render(GUIRenderer* guiRenderer) override;
208
209 /**
210 * @return text
211 */
212 inline const MutableString& getText() const {
213 return text;
214 }
215
216 /**
217 * Set text
218 * @param text text
219 */
220 void setText(const MutableString& text);
221
222 /**
223 * Unset text style
224 * @param startIdx text start index
225 * @param endIdx text end index
226 */
227 void unsetTextStyle(int startIdx, int endIdx);
228
229 /**
230 * Set text style
231 * @param startIdx text start index
232 * @param endIdx text end index
233 * @param color color
234 * @param font font
235 * @param url url
236 */
237 void setTextStyle(int startIdx, int endIdx, const GUIColor& color, const string& font = string(), const string& url = string());
238
239 /**
240 * Set text style
241 * @param startIdx text start index
242 * @param endIdx text end index
243 * @param font font
244 * @param url url
245 */
246 void setTextStyle(int startIdx, int endIdx, const string& font, const string& url = string());
247
248 /**
249 * Set image
250 * @param idx index
251 * @param image image
252 * @param url url
253 * @param width width or -1 for original image width
254 * @param height height or -1 for original image height
255 */
256 void setImage(int idx, const string& image, const string& url = string(), int width = -1, int height = -1);
257
258};
GUI parser.
Definition: GUIParser.h:39
GUI element node conditions.
GUI node base class.
Definition: GUINode.h:63
GUINodeConditions hideOn
Definition: GUINode.h:161
GUIColor backgroundImageEffectColorMul
Definition: GUINode.h:156
GUINode_Border border
Definition: GUINode.h:159
GUINode_Scale9Grid backgroundImageScale9Grid
Definition: GUINode.h:155
GUIColor backgroundImageEffectColorAdd
Definition: GUINode.h:157
GUIParentNode * parentNode
Definition: GUINode.h:147
GUINode_Padding padding
Definition: GUINode.h:158
GUIScreenNode * screenNode
Definition: GUINode.h:146
GUINode_RequestedConstraints requestedConstraints
Definition: GUINode.h:150
GUINode_Alignments alignments
Definition: GUINode.h:149
GUINodeConditions showOn
Definition: GUINode.h:160
GUINode_Flow * flow
Definition: GUINode.h:85
GUI parent node base class thats supporting child nodes.
Definition: GUIParentNode.h:43
GUI screen node that represents a screen that can be rendered via GUI system.
Definition: GUIScreenNode.h:57
const MutableString & getText() const
void dispose() override
Dispose node.
void setTextStyle(int startIdx, int endIdx, const GUIColor &color, const string &font=string(), const string &url=string())
Set text style.
void unsetTextStyle(int startIdx, int endIdx)
Unset text style.
GUIStyledTextNode(GUIScreenNode *screenNode, GUIParentNode *parentNode, const string &id, GUINode_Flow *flow, const GUINode_Alignments &alignments, const GUINode_RequestedConstraints &requestedConstraints, const GUIColor &backgroundColor, const string &backgroundImage, const GUINode_Scale9Grid &backgroundImageScale9Grid, const GUIColor &backgroundImageEffectColorMul, const GUIColor &backgroundImageEffectColorAdd, const GUINode_Border &border, const GUINode_Padding &padding, const GUINodeConditions &showOn, const GUINodeConditions &hideOn, bool preformatted, const string &font, const string &color, const MutableString &text)
Constructor.
void setText(const MutableString &text)
Set text.
void determineNextLineConstraints(int &i, int charEndIdx, int textStyleIdx)
Determine next line constraints.
TextStyle * getTextStyle(const vector< int > &lineCharIdxs, int lineCharIdx, int &textStyleIdx)
Get text style for.
void setImage(int idx, const string &image, const string &url=string(), int width=-1, int height=-1)
Set image.
void computeContentAlignment() override
Do content alignment.
void render(GUIRenderer *guiRenderer) override
Render.
GUI Font A font implementation that will parse the output of the AngelCode font tool available at:
Definition: GUIFont.h:48
Mutable string class.
Definition: MutableString.h:16
std::exception Exception
Exception base class.
Definition: Exception.h:19
GUI node border entity.
GUI node padding entity.
GUI node scale 9 grid entity.