TDME2 1.9.121
GUIElementNode.cpp
Go to the documentation of this file.
2
3#include <algorithm>
4#include <set>
5#include <string>
6
7#include <tdme/tdme.h>
32#include <tdme/utilities/Time.h>
33
34using std::begin;
35using std::end;
36using std::find;
37using std::set;
38using std::to_string;
39
65
66string GUIElementNode::CONDITION_ALWAYS = "always";
67string GUIElementNode::CONDITION_ONMOUSEOVER = "mouseover";
68string GUIElementNode::CONDITION_CLICK = "click";
69string GUIElementNode::CONDITION_FOCUS = "focus";
70
71GUIElementNode::GUIElementNode(
72 GUIScreenNode* screenNode,
73 GUIParentNode* parentNode,
74 const string& id,
75 GUINode_Flow* flow,
76 GUIParentNode_Overflow* overflowX,
77 GUIParentNode_Overflow* overflowY,
78 const GUINode_Alignments& alignments,
79 const GUINode_RequestedConstraints& requestedConstraints,
80 const GUIColor& backgroundColor,
81 const string& backgroundImage,
82 const GUINode_Scale9Grid& backgroundImageScaleGrid,
83 const GUIColor& backgroundImageEffectColorMul,
84 const GUIColor& backgroundImageEffectColorAdd,
85 const GUINode_Border& border,
86 const GUINode_Padding& padding,
87 const GUINodeConditions& showOn,
88 const GUINodeConditions& hideOn,
89 const string& name,
90 const string& value,
91 bool selected,
92 bool disabled,
93 bool focusable,
94 bool ignoreEvents,
95 const string& onInitializeExpression,
96 const string& onMouseClickExpression,
97 const string& onMouseDoubleClickExpression,
98 const string& onMouseOverExpression,
99 const string& onMouseOutExpression,
100 const string& onChangeExpression,
101 const string& parentElementId,
102 const string& options
103 ) :
104 GUILayerNode(screenNode, parentNode, id, flow, overflowX, overflowY, alignments, requestedConstraints, backgroundColor, backgroundImage, backgroundImageScaleGrid, backgroundImageEffectColorMul, backgroundImageEffectColorAdd, border, padding, showOn, hideOn),
105 activeConditions(this)
106{
107 this->name = name;
108 this->value = value;
109 this->selected = selected;
110 this->disabled = disabled;
111 this->focusable = focusable;
112 this->ignoreEvents = ignoreEvents;
113 this->onInitializeExpression = onInitializeExpression;
114 this->onMouseClickExpression = onMouseClickExpression;
115 this->onMouseDoubleClickExpression = onMouseDoubleClickExpression;
116 this->onMouseOverExpression = onMouseOverExpression;
117 this->onMouseOutExpression = onMouseOutExpression;
118 this->onChangeExpression = onChangeExpression;
119 this->parentElementId = parentElementId;
120 this->controller = ignoreEvents == true ? static_cast< GUINodeController* >(new GUIElementIgnoreEventsController(this)) : static_cast< GUINodeController* >(new GUIElementController(this));
121 this->controller->initialize();
122 {
124 t.tokenize(StringTools::trim(options), ",");
125 while (t.hasMoreTokens() == true) this->options.push_back(StringTools::toLowerCase(StringTools::trim(t.nextToken())));
126
127 }
128}
129
131{
132 return "element";
133}
134
136{
137 return false;
138}
139
141{
142 return focusable;
143}
144
146{
147 return name;
148}
149
151{
152 return value;
153}
154
156{
157 return selected;
158}
159
161{
162 return disabled;
163}
164
167}
168
171}
172
175}
176
179}
180
183}
184
186 return onChangeExpression;
187}
188
189void GUIElementNode::executeExpression(GUIScreenNode* screenNode, const string& expression) {
190 if (StringTools::startsWith(expression, "http://") == true || StringTools::startsWith(expression, "https://") == true) {
191 Application::openBrowser(expression);
192 return;
193 }
196 t1.tokenize(expression, ";");
197 while (t1.hasMoreTokens()) {
198 t2.tokenize(t1.nextToken(), "=");
199 string command;
200 string value;
201 string nodeId;
202 string subCommand;
203 if (t2.countTokens() > 0) {
204 command = StringTools::trim(t2.nextToken());
205 if (t2.countTokens() > 1) value = StringTools::trim(t2.nextToken());
206 }
207 t2.tokenize(command, ".");
208 if (t2.countTokens() == 2) {
209 nodeId = StringTools::trim(t2.nextToken());
210 subCommand = StringTools::trim(t2.nextToken());
211 }
212 // element (controller) values
213 if (subCommand == "value") {
214 auto nodeElementNode = dynamic_cast<GUIElementNode*>(screenNode->getNodeById(nodeId));
215 auto nodeController = nodeElementNode != nullptr?nodeElementNode->getController():nullptr;
216 if (StringTools::startsWith(value, "'") == true && StringTools::endsWith(value, "'") == true) {
217 if (nodeController != nullptr) nodeController->setValue(MutableString(StringTools::substring(value, 1, value.size() - 1)));
218 } else
219 if (StringTools::endsWith(value, ".value") == true) {
220 auto nodeValueElementNode = dynamic_cast<GUIElementNode*>(screenNode->getNodeById(StringTools::substring(value, 0, value.length() - string(".value").size())));
221 auto nodeValueController = nodeValueElementNode != nullptr?nodeValueElementNode->getController():nullptr;
222 if (nodeController != nullptr && nodeValueController != nullptr) nodeController->setValue(nodeValueController->getValue());
223 } else {
224 Console::println("GUIElementController::executeExpression(): Unknown value in expression: " + value);
225 }
226 } else
227 // element conditions
228 if (subCommand == "condition") {
229 auto nodeElementNode = dynamic_cast<GUIElementNode*>(screenNode->getNodeById(nodeId));
230 if (nodeElementNode != nullptr) {
231 if (value.find('?') != string::npos &&
232 value.find(':') != string::npos &&
233 value.find(':') > value.find('?')) {
234 t2.tokenize(value, "?:");
235 string testCondition = t2.hasMoreTokens() == true?t2.nextToken():"";
236 string setOnTrueCondition = t2.hasMoreTokens() == true?t2.nextToken():"";
237 string setOnFalseCondition = t2.hasMoreTokens() == true?t2.nextToken():"";
238 if (testCondition.empty() == true ||
239 setOnTrueCondition.empty() == true ||
240 setOnFalseCondition.empty() == true) {
241 Console::println("GUIElementController::executeExpression(): = ternary operator requires the following format 'node.condition=a?b:c'");
242 } else {
243 auto nodeElementNode = dynamic_cast<GUIElementNode*>(screenNode->getNodeById(nodeId));
244 if (nodeElementNode != nullptr) {
245 if (nodeElementNode->getActiveConditions().has(testCondition) == true) {
246 nodeElementNode->getActiveConditions().removeAll();
247 nodeElementNode->getActiveConditions().add(setOnTrueCondition);
248 } else {
249 nodeElementNode->getActiveConditions().removeAll();
250 nodeElementNode->getActiveConditions().add(setOnFalseCondition);
251 }
252 }
253 }
254 } else {
255 nodeElementNode->getActiveConditions().removeAll();
256 nodeElementNode->getActiveConditions().add(value);
257 }
258 }
259 } else
260 if (subCommand == "condition-") {
261 auto nodeElementNode = dynamic_cast<GUIElementNode*>(screenNode->getNodeById(nodeId));
262 if (nodeElementNode != nullptr) nodeElementNode->getActiveConditions().remove(value);
263 } else
264 if (subCommand == "condition+") {
265 auto nodeElementNode = dynamic_cast<GUIElementNode*>(screenNode->getNodeById(nodeId));
266 if (nodeElementNode != nullptr) nodeElementNode->getActiveConditions().add(value);
267 } else
268 if (subCommand == "condition!") {
269 auto nodeElementNode = dynamic_cast<GUIElementNode*>(screenNode->getNodeById(nodeId));
270 if (nodeElementNode != nullptr) {
271 if (nodeElementNode->getActiveConditions().has(value) == true) {
272 nodeElementNode->getActiveConditions().remove(value);
273 } else {
274 nodeElementNode->getActiveConditions().add(value);
275 }
276 }
277 } else
278 if (subCommand == "condition?") {
279 t2.tokenize(value, "?:");
280 string testCondition = t2.hasMoreTokens() == true?t2.nextToken():"";
281 string setOnTrueCondition = t2.hasMoreTokens() == true?t2.nextToken():"";
282 string setOnFalseCondition = t2.hasMoreTokens() == true?t2.nextToken():"";
283 if (value.find('?') == string::npos ||
284 value.find(':') == string::npos ||
285 value.find(':') < value.find('?') ||
286 testCondition.empty() == true ||
287 setOnTrueCondition.empty() == true ||
288 setOnFalseCondition.empty() == true) {
289 Console::println("GUIElementController::executeExpression(): ?= ternary operator requires the following format 'node.condition?=a?b:c'");
290 }
291 auto nodeElementNode = dynamic_cast<GUIElementNode*>(screenNode->getNodeById(nodeId));
292 if (nodeElementNode != nullptr) {
293 if (nodeElementNode->getActiveConditions().has(testCondition) == true) {
294 nodeElementNode->getActiveConditions().remove(setOnFalseCondition);
295 nodeElementNode->getActiveConditions().add(setOnTrueCondition);
296 } else {
297 nodeElementNode->getActiveConditions().remove(setOnTrueCondition);
298 nodeElementNode->getActiveConditions().add(setOnFalseCondition);
299 }
300 }
301 } else
302 // image node specific data
303 if (subCommand == "maskmaxvalue") {
304 auto imageNode = dynamic_cast<GUIImageNode*>(screenNode->getNodeById(nodeId));
305 if (imageNode != nullptr) {
306 if (StringTools::endsWith(value, ".value") == true) {
307 auto nodeValueElementNode = dynamic_cast<GUIElementNode*>(screenNode->getNodeById(StringTools::substring(value, 0, value.length() - string(".value").size())));
308 auto nodeValueController = nodeValueElementNode != nullptr?nodeValueElementNode->getController():nullptr;
309 if (nodeValueController != nullptr) imageNode->setMaskMaxValue(Float::parse(nodeValueController->getValue().getString()));
310 } else {
311 imageNode->setMaskMaxValue(Float::parse(value));
312 }
313 }
314 } else
315 if (StringTools::startsWith(command,"delay(") == true &&
316 StringTools::endsWith(command,")") == true) {
317 int64_t delay = Integer::parse(StringTools::substring(command, command.find('(') + 1, command.rfind(')')));
318 while(t1.hasMoreTokens() == true) value+= t1.nextToken() + ";";
319 screenNode->addTimedExpression(Time::getCurrentMillis() + delay, value);
320 } else {
321 Console::println("GUIElementController::executeExpression(): Unknown sub command in expression: " + subCommand);
322 }
323 }
324}
325
328}
329
331 return parentElementId;
332}
333
334bool GUIElementNode::hasOption(const string& option) {
335 return find(begin(options), end(options), option) != end(options);
336}
337
338const string GUIElementNode::getOptionValue(const string& option) {
340 for (auto& v: options) {
341 t.tokenize(v, "=");
342 if (t.hasMoreTokens() == false) continue;
343 auto optionName = StringTools::trim(t.nextToken());
344 if (optionName != option) continue;
345 if (t.hasMoreTokens() == false) continue;
346 return StringTools::trim(t.nextToken());
347 }
348 return string();
349}
350
352{
353 return activeConditions;
354}
355
357{
358 if (ignoreEvents == true)
359 return;
360
361 if (conditionsMet == false)
362 return;
363
364 vector<GUINode*> childControllerNodes;
365 getChildControllerNodes(childControllerNodes, true);
366 if (controller != nullptr) {
368 }
369 if (event->isProcessed() == false) {
370 for (auto childControllerNode: childControllerNodes) {
371 childControllerNode->getController()->handleKeyboardEvent(event);
372 if (event->isProcessed() == true) break;
373 }
374 }
375}
Application base class, please make sure to allocate application on heap to have correct application ...
Definition: Application.h:37
const string getNodeType() override
const string & getOnMouseClickExpression()
void executeOnChangeExpression()
Execute on change expression.
const string & getOnInitializeExpression()
const string & getOnMouseDoubleClickExpression()
GUINodeConditions activeConditions
const string getOptionValue(const string &option)
bool hasOption(const string &option)
static void executeExpression(GUIScreenNode *screenNode, const string &expression)
Execute expression.
void handleKeyboardEvent(GUIKeyboardEvent *event)
Handle keyboard event.
GUINodeConditions & getActiveConditions()
GUI element node conditions.
bool add(const string &condition)
Add a condition.
bool remove(const string &condition)
Remove a condition.
GUI node controller base class.
virtual void setValue(const MutableString &value)=0
Set value.
virtual void initialize()=0
Initialize controller after element has been created.
virtual void handleKeyboardEvent(GUIKeyboardEvent *event)=0
Handle keyboard event.
GUI node base class.
Definition: GUINode.h:63
GUINodeController * controller
Definition: GUINode.h:162
GUIScreenNode * screenNode
Definition: GUINode.h:146
GUIScreenNode * getScreenNode()
Definition: GUINode.h:315
GUINodeController * getController()
Definition: GUINode.h:586
GUI parent node base class thats supporting child nodes.
Definition: GUIParentNode.h:43
void getChildControllerNodes(vector< GUINode * > &childControllerNodes, bool requireConditionsMet=false)
Get child controller nodes.
GUI screen node that represents a screen that can be rendered via GUI system.
Definition: GUIScreenNode.h:57
void addTimedExpression(int64_t time, const string &expression)
Add a timed expression.
GUINode * getNodeById(const string &nodeId)
Get GUI node by id.
Console class.
Definition: Console.h:26
Float class.
Definition: Float.h:23
Integer class.
Definition: Integer.h:26
Mutable string class.
Definition: MutableString.h:16
String tokenizer class.
void tokenize(const string &str, const string &delimiters)
Tokenize.
String tools class.
Definition: StringTools.h:20
Time utility class.
Definition: Time.h:21
GUI node border entity.
GUI node padding entity.
GUI node scale 9 grid entity.