TDME2 1.9.121
GUIParser.cpp
Go to the documentation of this file.
2
3#include <string>
4#include <unordered_map>
5
6#include <tdme/tdme.h>
75
76#include <ext/tinyxml/tinyxml.h>
77
78using std::string;
79using std::to_string;
80using std::unordered_map;
81
149
153
154#define AVOID_NULLPTR_STRING(arg) (arg == nullptr?"":arg)
155
156map<string, GUIElement*>* GUIParser::elements = new map<string, GUIElement*>();
157Properties* GUIParser::engineThemeProperties = new Properties();
158Properties* GUIParser::projectThemeProperties = new Properties();
159
160GUIScreenNode* GUIParser::parse(const string& pathName, const string& fileName, const unordered_map<string, string>& parameters)
161{
162 return parse(FileSystem::getInstance()->getContentAsString(pathName, fileName), parameters, pathName, fileName);
163}
164
165GUIScreenNode* GUIParser::parse(const string& xml, const unordered_map<string, string>& parameters, const string& pathName, const string& fileName)
166{
167 auto applicationRootPath = Tools::getApplicationRootPathName(pathName);
168 auto applicationSubPathName = Tools::getApplicationSubPathName(pathName);
169 auto themeProperties = applicationSubPathName == "project"?projectThemeProperties:engineThemeProperties;
170
171 // replace with parameters
172 auto newXML = xml;
173 for (auto& parameterIt: parameters) {
174 newXML = StringTools::replace(newXML, "{$" + parameterIt.first + "}", escapeQuotes(parameterIt.second));
175 }
176 // replace with theme properties
177 for (auto& themePropertyIt: themeProperties->getProperties()) {
178 newXML = StringTools::replace(newXML, "{$" + themePropertyIt.first + "}", escapeQuotes(themePropertyIt.second));
179 }
180
181 //
182 TiXmlDocument xmlDocument;
183 xmlDocument.Parse(newXML.c_str());
184 if (xmlDocument.Error() == true) {
185 string message = string("GUIParser::parse(): Could not parse XML. Error='") + string(xmlDocument.ErrorDesc()) + "':\n\n" + newXML;
186 Console::println(message);
187 throw GUIParserException(message);
188 }
189 TiXmlElement* xmlRoot = xmlDocument.RootElement();
190 GUIScreenNode* guiScreenNode = nullptr;
191 if (string(xmlRoot->Value()) != string("screen")) {
192 throw GUIParserException("XML root node must be <screen>");
193 }
194
195 //
196 guiScreenNode = new GUIScreenNode(
197 (pathName.empty() == false?pathName + "/":"") + fileName,
198 applicationRootPath.empty() == true?".":FileSystem::getInstance()->getCanonicalPath(applicationRootPath, ""),
199 applicationSubPathName,
200 string(AVOID_NULLPTR_STRING(xmlRoot->Attribute("id"))),
201 GUINode::createFlow(string(AVOID_NULLPTR_STRING(xmlRoot->Attribute("flow")))),
202 GUIParentNode::createOverflow(string(AVOID_NULLPTR_STRING(xmlRoot->Attribute("overflow-x")))),
203 GUIParentNode::createOverflow(string(AVOID_NULLPTR_STRING(xmlRoot->Attribute("overflow-y")))),
204 GUINode::createAlignments(
205 string(AVOID_NULLPTR_STRING(xmlRoot->Attribute("horizontal-align"))),
206 string(AVOID_NULLPTR_STRING(xmlRoot->Attribute("vertical-align")))
207 ),
208 GUINode::createRequestedConstraints(
209 string(AVOID_NULLPTR_STRING(xmlRoot->Attribute("left"))),
210 string(AVOID_NULLPTR_STRING(xmlRoot->Attribute("top"))),
211 string(AVOID_NULLPTR_STRING(xmlRoot->Attribute("width"))),
212 string(AVOID_NULLPTR_STRING(xmlRoot->Attribute("height"))),
213 parseFactor(nullptr, StringTools::trim(string(AVOID_NULLPTR_STRING(xmlRoot->Attribute("factor")))))
214 ),
215 GUINode::getRequestedColor(string(AVOID_NULLPTR_STRING(xmlRoot->Attribute("background-color"))), GUIColor::GUICOLOR_TRANSPARENT),
216 "",
217 GUINode::createScale9Grid(
218 string(AVOID_NULLPTR_STRING(xmlRoot->Attribute("background-image-scale9"))),
219 string(AVOID_NULLPTR_STRING(xmlRoot->Attribute("background-image-scale9-left"))),
220 string(AVOID_NULLPTR_STRING(xmlRoot->Attribute("background-image-scale9-top"))),
221 string(AVOID_NULLPTR_STRING(xmlRoot->Attribute("background-image-scale9-right"))),
222 string(AVOID_NULLPTR_STRING(xmlRoot->Attribute("background-image-scale9-bottom")))
223 ),
224 GUINode::getRequestedColor(string(AVOID_NULLPTR_STRING(xmlRoot->Attribute("background-image-effect-color-mul"))), GUIColor::GUICOLOR_EFFECT_COLOR_MUL),
225 GUINode::getRequestedColor(string(AVOID_NULLPTR_STRING(xmlRoot->Attribute("background-image-effect-color-add"))), GUIColor::GUICOLOR_EFFECT_COLOR_ADD),
226 GUINode::createBorder(
227 string(AVOID_NULLPTR_STRING(xmlRoot->Attribute("border"))),
228 string(AVOID_NULLPTR_STRING(xmlRoot->Attribute("border-left"))),
229 string(AVOID_NULLPTR_STRING(xmlRoot->Attribute("border-top"))),
230 string(AVOID_NULLPTR_STRING(xmlRoot->Attribute("border-right"))),
231 string(AVOID_NULLPTR_STRING(xmlRoot->Attribute("border-bottom"))),
232 string(AVOID_NULLPTR_STRING(xmlRoot->Attribute("border-color"))),
233 string(AVOID_NULLPTR_STRING(xmlRoot->Attribute("border-color-left"))),
234 string(AVOID_NULLPTR_STRING(xmlRoot->Attribute("border-color-top"))),
235 string(AVOID_NULLPTR_STRING(xmlRoot->Attribute("border-color-right"))),
236 string(AVOID_NULLPTR_STRING(xmlRoot->Attribute("border-color-bottom")))
237 ),
238 GUINode::createPadding(
239 string(AVOID_NULLPTR_STRING(xmlRoot->Attribute("padding"))),
240 string(AVOID_NULLPTR_STRING(xmlRoot->Attribute("padding-left"))),
241 string(AVOID_NULLPTR_STRING(xmlRoot->Attribute("padding-top"))),
242 string(AVOID_NULLPTR_STRING(xmlRoot->Attribute("padding-right"))),
243 string(AVOID_NULLPTR_STRING(xmlRoot->Attribute("padding-bottom")))
244 ),
245 GUIScreenNode::createSizeConstraints(
246 string(AVOID_NULLPTR_STRING(xmlRoot->Attribute("min-width"))),
247 string(AVOID_NULLPTR_STRING(xmlRoot->Attribute("min-height"))),
248 string(AVOID_NULLPTR_STRING(xmlRoot->Attribute("max-width"))),
249 string(AVOID_NULLPTR_STRING(xmlRoot->Attribute("max-height")))
250 ),
251 GUINode::createConditions(string(AVOID_NULLPTR_STRING(xmlRoot->Attribute("show-on")))),
252 GUINode::createConditions(string(AVOID_NULLPTR_STRING(xmlRoot->Attribute("hide-on")))),
253 StringTools::equalsIgnoreCase(StringTools::trim(string(AVOID_NULLPTR_STRING(xmlRoot->Attribute("scrollable")))), "true"),
254 StringTools::equalsIgnoreCase(StringTools::trim(string(AVOID_NULLPTR_STRING(xmlRoot->Attribute("popup")))), "true")
255 );
256 // workaround for having GUINode constructor to be called before GUIScreenNode constructor
257 // so GUIScreenNode::applicationRootPath is not available at GUIScreenNode::GUINode construction time
258 guiScreenNode->setBackgroundImage(string(AVOID_NULLPTR_STRING(xmlRoot->Attribute("background-image"))));
259 parseGUINode(guiScreenNode, string(), xmlRoot, nullptr);
260 guiScreenNode->setConditionsMet();
261
262 //
263 vector<GUINode*> childControllerNodes;
264 guiScreenNode->getChildControllerNodes(childControllerNodes);
265 for (auto node: childControllerNodes) {
266 node->getController()->onSubTreeChange();
267 }
268
269 //
270 return guiScreenNode;
271}
272
273void GUIParser::parse(GUIParentNode* parentNode, const string& pathName, const string& fileName)
274{
275 string xml = FileSystem::getInstance()->getContentAsString(pathName, fileName);
276 parse(parentNode, xml);
277}
278
279void GUIParser::parse(GUIParentNode* parentNode, const string& xml)
280{
281 //
282 auto themeProperties = parentNode->getScreenNode()->getApplicationSubPathName() == "project"?projectThemeProperties:engineThemeProperties;
283 // replace with parameters
284 auto newXML = xml;
285 // replace with theme properties
286 for (auto& themePropertyIt: themeProperties->getProperties()) {
287 newXML = StringTools::replace(newXML, "{$" + themePropertyIt.first + "}", escapeQuotes(themePropertyIt.second));
288 }
289
290 TiXmlDocument xmlDocument;
291 xmlDocument.Parse((string("<gui-element>") + newXML + string("</gui-element>")).c_str());
292 if (xmlDocument.Error() == true) {
293 auto message = "GUIParser::parse(): Could not parse XML. Error='" + string(xmlDocument.ErrorDesc()) + "':\n\n" + newXML;
294 Console::println(message);
295 throw GUIParserException(message);
296 }
297 TiXmlElement* xmlNode = xmlDocument.RootElement();
298 parseGUINode(parentNode, string(), xmlNode, nullptr);
299}
300
301void GUIParser::parseEffect(GUINode* guiNode, const string& effectPrefix, bool requiresCondition, TiXmlElement* node) {
302 GUIEffect* effect = nullptr;
303 auto type = string(AVOID_NULLPTR_STRING(node->Attribute("type")));
304 if (type == "color") {
305 effect = new GUIColorEffect(guiNode);
306 static_cast<GUIColorEffect*>(effect)->setPersistant(StringTools::equalsIgnoreCase(StringTools::trim(string(AVOID_NULLPTR_STRING(node->Attribute("persistant")))), "true"));
307 static_cast<GUIColorEffect*>(effect)->setColorMul(GUIColor(AVOID_NULLPTR_STRING(node->Attribute("effect-color-mul"))));
308 static_cast<GUIColorEffect*>(effect)->setColorAdd(GUIColor(AVOID_NULLPTR_STRING(node->Attribute("effect-color-add"))));
309 static_cast<GUIColorEffect*>(effect)->setStartColorMul(GUIColor(AVOID_NULLPTR_STRING(node->Attribute("start-effect-color-mul"))));
310 static_cast<GUIColorEffect*>(effect)->setStartColorAdd(GUIColor(AVOID_NULLPTR_STRING(node->Attribute("start-effect-color-add"))));
311 static_cast<GUIColorEffect*>(effect)->setTimeTotal(Float::parse(node->Attribute("time")));
312 static_cast<GUIColorEffect*>(effect)->setRepeat(node->Attribute("repeat") == nullptr?0:Integer::parse(node->Attribute("repeat")));
313 static_cast<GUIColorEffect*>(effect)->setYoyo(node->Attribute("yoyo") == nullptr?false:StringTools::toLowerCase(StringTools::trim(node->Attribute("yoyo"))) == "true");
314 guiNode->addEffect(
315 effectPrefix + (requiresCondition == true?string(".") + type + ".on." + AVOID_NULLPTR_STRING(node->Attribute("on")):string()),
316 effect
317 );
318 } else
319 if (type == "position") {
320 effect = new GUIPositionEffect(guiNode);
321 static_cast<GUIPositionEffect*>(effect)->setPersistant(StringTools::equalsIgnoreCase(StringTools::trim(string(AVOID_NULLPTR_STRING(node->Attribute("persistant")))), "true"));
322 static_cast<GUIPositionEffect*>(effect)->setPositionX(Integer::parse(AVOID_NULLPTR_STRING(node->Attribute("effect-position-x"))));
323 static_cast<GUIPositionEffect*>(effect)->setPositionY(Integer::parse(AVOID_NULLPTR_STRING(node->Attribute("effect-position-y"))));
324 static_cast<GUIPositionEffect*>(effect)->setStartPositionX(Integer::parse(AVOID_NULLPTR_STRING(node->Attribute("start-effect-position-x"))));
325 static_cast<GUIPositionEffect*>(effect)->setStartPositionY(Integer::parse(AVOID_NULLPTR_STRING(node->Attribute("start-effect-position-y"))));
326 static_cast<GUIPositionEffect*>(effect)->setTimeTotal(Float::parse(node->Attribute("time")));
327 static_cast<GUIPositionEffect*>(effect)->setRepeat(node->Attribute("repeat") == nullptr?0:Integer::parse(node->Attribute("repeat")));
328 static_cast<GUIPositionEffect*>(effect)->setYoyo(node->Attribute("yoyo") == nullptr?false:StringTools::toLowerCase(StringTools::trim(node->Attribute("yoyo"))) == "true");
329 guiNode->addEffect(
330 effectPrefix + (requiresCondition == true?string(".") + type + ".on." + AVOID_NULLPTR_STRING(node->Attribute("on")):string()),
331 effect
332 );
333 }
334 auto action = string(AVOID_NULLPTR_STRING(node->Attribute("action")));
335 if (effect != nullptr && action.empty() == false) {
336 class EffectAction: public virtual Action
337 {
338 public:
339 EffectAction(GUIScreenNode* guiScreenNode, const string& expression): guiScreenNode(guiScreenNode), expression(expression) {
340 }
341 void performAction() override {
342 GUIElementNode::executeExpression(guiScreenNode, expression);
343 }
344 private:
345 GUIScreenNode* guiScreenNode;
346 string expression;
347 };
348 effect->setAction(new EffectAction(guiNode->getScreenNode(), action));
349 }
350}
351
352void GUIParser::parseEffects(GUINode* guiNode, TiXmlElement* xmlParentNode) {
353 for (auto* node = xmlParentNode->FirstChildElement(); node != nullptr; node = node->NextSiblingElement()) {
354 string nodeTagName = string(node->Value());
355 if (nodeTagName == "effect-in") {
356 parseEffect(guiNode, "tdme.xmleffect.in", true, node);
357 } else
358 if (nodeTagName == "effect-out") {
359 parseEffect(guiNode, "tdme.xmleffect.out", true, node);
360 } else
361 if (nodeTagName == "effect-default") {
362 parseEffect(guiNode, "tdme.xmleffect.default", false, node);
363 }
364 }
365}
366
367void GUIParser::parseGUINode(GUIParentNode* guiParentNode, const string& parentElementId, TiXmlElement* xmlParentNode, GUIElement* guiElement)
368{
369 auto themeProperties = guiParentNode->getScreenNode()->getApplicationSubPathName() == "project"?projectThemeProperties:engineThemeProperties;
370 GUINodeController* guiElementController = nullptr;
371 auto guiElementControllerInstalled = false;
372 parseEffects(guiParentNode, xmlParentNode);
373 for (auto* node = xmlParentNode->FirstChildElement(); node != nullptr; node = node->NextSiblingElement()) {
374 {
375 string nodeTagName = string(node->Value());
376 if (nodeTagName == "effect-in") {
377 parseEffect(guiParentNode, "tdme.xmleffect.in", true, node);
378 } else
379 if (nodeTagName == "effect-out") {
380 parseEffect(guiParentNode, "tdme.xmleffect.out", true, node);
381 } else
382 if (nodeTagName == "effect-default") {
383 parseEffect(guiParentNode, "tdme.xmleffect.default", false, node);
384 } else
385 if (nodeTagName == "panel") {
386 auto guiPanelNode = new GUIPanelNode(
387 guiParentNode->getScreenNode(),
388 guiParentNode,
389 string(node->Attribute("id") == nullptr?guiParentNode->getScreenNode()->allocateNodeId():node->Attribute("id")),
390 GUINode::createFlow(string(AVOID_NULLPTR_STRING(node->Attribute("flow")))),
391 GUIParentNode::createOverflow(string(AVOID_NULLPTR_STRING(node->Attribute("overflow-x")))),
392 GUIParentNode::createOverflow(string(AVOID_NULLPTR_STRING(node->Attribute("overflow-y")))),
393 GUINode::createAlignments(
394 string(AVOID_NULLPTR_STRING(node->Attribute("horizontal-align"))),
395 string(AVOID_NULLPTR_STRING(node->Attribute("vertical-align")))
396 ),
397 GUIParentNode::createRequestedConstraints(
398 string(AVOID_NULLPTR_STRING(node->Attribute("left"))),
399 string(AVOID_NULLPTR_STRING(node->Attribute("top"))),
400 string(AVOID_NULLPTR_STRING(node->Attribute("width"))),
401 string(AVOID_NULLPTR_STRING(node->Attribute("height"))),
402 parseFactor(guiParentNode, StringTools::trim(string(AVOID_NULLPTR_STRING(node->Attribute("factor")))))
403 ),
404 GUINode::getRequestedColor(string(AVOID_NULLPTR_STRING(node->Attribute("background-color"))), GUIColor(themeProperties->get("color.panel", "#F0F0F0"))),
405 string(AVOID_NULLPTR_STRING(node->Attribute("background-image"))),
406 GUINode::createScale9Grid(
407 string(AVOID_NULLPTR_STRING(node->Attribute("background-image-scale9"))),
408 string(AVOID_NULLPTR_STRING(node->Attribute("background-image-scale9-left"))),
409 string(AVOID_NULLPTR_STRING(node->Attribute("background-image-scale9-top"))),
410 string(AVOID_NULLPTR_STRING(node->Attribute("background-image-scale9-right"))),
411 string(AVOID_NULLPTR_STRING(node->Attribute("background-image-scale9-bottom")))
412 ),
413 GUINode::getRequestedColor(string(AVOID_NULLPTR_STRING(node->Attribute("background-image-effect-color-mul"))), GUIColor::GUICOLOR_EFFECT_COLOR_MUL),
414 GUINode::getRequestedColor(string(AVOID_NULLPTR_STRING(node->Attribute("background-image-effect-color-add"))), GUIColor::GUICOLOR_EFFECT_COLOR_ADD),
415 GUINode::createBorder(
416 string(AVOID_NULLPTR_STRING(node->Attribute("border"))),
417 string(AVOID_NULLPTR_STRING(node->Attribute("border-left"))),
418 string(AVOID_NULLPTR_STRING(node->Attribute("border-top"))),
419 string(AVOID_NULLPTR_STRING(node->Attribute("border-right"))),
420 string(AVOID_NULLPTR_STRING(node->Attribute("border-bottom"))),
421 string(AVOID_NULLPTR_STRING(node->Attribute("border-color"))),
422 string(AVOID_NULLPTR_STRING(node->Attribute("border-color-left"))),
423 string(AVOID_NULLPTR_STRING(node->Attribute("border-color-top"))),
424 string(AVOID_NULLPTR_STRING(node->Attribute("border-color-right"))),
425 string(AVOID_NULLPTR_STRING(node->Attribute("border-color-bottom")))
426 ),
427 GUINode::createPadding(
428 string(AVOID_NULLPTR_STRING(node->Attribute("padding"))),
429 string(AVOID_NULLPTR_STRING(node->Attribute("padding-left"))),
430 string(AVOID_NULLPTR_STRING(node->Attribute("padding-top"))),
431 string(AVOID_NULLPTR_STRING(node->Attribute("padding-right"))),
432 string(AVOID_NULLPTR_STRING(node->Attribute("padding-bottom")))
433 ),
434 GUINode::createConditions(string(AVOID_NULLPTR_STRING(node->Attribute("show-on")))),
435 GUINode::createConditions(string(AVOID_NULLPTR_STRING(node->Attribute("hide-on")))),
436 GUILayoutNode::createAlignment(string(AVOID_NULLPTR_STRING(node->Attribute("alignment"))))
437 );
438 guiParentNode->addSubNode(guiPanelNode);
439 if (guiElement != nullptr && guiElementControllerInstalled == false) {
440 guiElementController = guiElement->createController(guiPanelNode);
441 if (guiElementController != nullptr) {
442 guiPanelNode->setController(guiElementController);
443 }
444 guiElementControllerInstalled = true;
445 }
446 parseGUINode(guiPanelNode, string(), node, nullptr);
447 } else
448 if (nodeTagName == "layer") {
449 auto guiLayerNode = new GUILayerNode(
450 guiParentNode->getScreenNode(),
451 guiParentNode,
452 string(node->Attribute("id") == nullptr?guiParentNode->getScreenNode()->allocateNodeId():node->Attribute("id")),
453 GUINode::createFlow(string(AVOID_NULLPTR_STRING(node->Attribute("flow")))),
454 GUIParentNode::createOverflow(string(AVOID_NULLPTR_STRING(node->Attribute("overflow-x")))),
455 GUIParentNode::createOverflow(string(AVOID_NULLPTR_STRING(node->Attribute("overflow-y")))),
456 GUIElementNode::createAlignments(
457 string(AVOID_NULLPTR_STRING(node->Attribute("horizontal-align"))),
458 string(AVOID_NULLPTR_STRING(node->Attribute("vertical-align")))
459 ),
460 GUIParentNode::createRequestedConstraints(
461 string(AVOID_NULLPTR_STRING(node->Attribute("left"))),
462 string(AVOID_NULLPTR_STRING(node->Attribute("top"))),
463 string(AVOID_NULLPTR_STRING(node->Attribute("width"))),
464 string(AVOID_NULLPTR_STRING(node->Attribute("height"))),
465 parseFactor(guiParentNode, StringTools::trim(string(AVOID_NULLPTR_STRING(node->Attribute("factor")))))
466 ),
467 GUINode::getRequestedColor(string(AVOID_NULLPTR_STRING(node->Attribute("background-color"))), GUIColor::GUICOLOR_TRANSPARENT),
468 string(AVOID_NULLPTR_STRING(node->Attribute("background-image"))),
469 GUINode::createScale9Grid(
470 string(AVOID_NULLPTR_STRING(node->Attribute("background-image-scale9"))),
471 string(AVOID_NULLPTR_STRING(node->Attribute("background-image-scale9-left"))),
472 string(AVOID_NULLPTR_STRING(node->Attribute("background-image-scale9-top"))),
473 string(AVOID_NULLPTR_STRING(node->Attribute("background-image-scale9-right"))),
474 string(AVOID_NULLPTR_STRING(node->Attribute("background-image-scale9-bottom")))
475 ),
476 GUINode::getRequestedColor(string(AVOID_NULLPTR_STRING(node->Attribute("background-image-effect-color-mul"))), GUIColor::GUICOLOR_EFFECT_COLOR_MUL),
477 GUINode::getRequestedColor(string(AVOID_NULLPTR_STRING(node->Attribute("background-image-effect-color-add"))), GUIColor::GUICOLOR_EFFECT_COLOR_ADD),
478 GUINode::createBorder(
479 string(AVOID_NULLPTR_STRING(node->Attribute("border"))),
480 string(AVOID_NULLPTR_STRING(node->Attribute("border-left"))),
481 string(AVOID_NULLPTR_STRING(node->Attribute("border-top"))),
482 string(AVOID_NULLPTR_STRING(node->Attribute("border-right"))),
483 string(AVOID_NULLPTR_STRING(node->Attribute("border-bottom"))),
484 string(AVOID_NULLPTR_STRING(node->Attribute("border-color"))),
485 string(AVOID_NULLPTR_STRING(node->Attribute("border-color-left"))),
486 string(AVOID_NULLPTR_STRING(node->Attribute("border-color-top"))),
487 string(AVOID_NULLPTR_STRING(node->Attribute("border-color-right"))),
488 string(AVOID_NULLPTR_STRING(node->Attribute("border-color-bottom")))
489 ),
490 GUINode::createPadding(
491 string(AVOID_NULLPTR_STRING(node->Attribute("padding"))),
492 string(AVOID_NULLPTR_STRING(node->Attribute("padding-left"))),
493 string(AVOID_NULLPTR_STRING(node->Attribute("padding-top"))),
494 string(AVOID_NULLPTR_STRING(node->Attribute("padding-right"))),
495 string(AVOID_NULLPTR_STRING(node->Attribute("padding-bottom")))
496 ),
497 GUINode::createConditions(string(AVOID_NULLPTR_STRING(node->Attribute("show-on")))),
498 GUINode::createConditions(string(AVOID_NULLPTR_STRING(node->Attribute("hide-on"))))
499 );
500 guiParentNode->addSubNode(guiLayerNode);
501 if (guiElement != nullptr && guiElementControllerInstalled == false) {
502 guiElementController = guiElement->createController(guiLayerNode);
503 if (guiElementController != nullptr) {
504 guiLayerNode->setController(guiElementController);
505 }
506 guiElementControllerInstalled = true;
507 }
508 parseGUINode(guiLayerNode, string(), node, nullptr);
509 } else
510 if (nodeTagName == "layout") {
511 auto guiLayoutNode = new GUILayoutNode(
512 guiParentNode->getScreenNode(),
513 guiParentNode,
514 string(node->Attribute("id") == nullptr?guiParentNode->getScreenNode()->allocateNodeId():node->Attribute("id")),
515 GUINode::createFlow(string(AVOID_NULLPTR_STRING(node->Attribute("flow")))),
516 GUIParentNode::createOverflow(string(AVOID_NULLPTR_STRING(node->Attribute("overflow-x")))),
517 GUIParentNode::createOverflow(string(AVOID_NULLPTR_STRING(node->Attribute("overflow-y")))),
518 GUINode::createAlignments(
519 string(AVOID_NULLPTR_STRING(node->Attribute("horizontal-align"))),
520 string(AVOID_NULLPTR_STRING(node->Attribute("vertical-align")))
521 ),
522 GUIParentNode::createRequestedConstraints(
523 string(AVOID_NULLPTR_STRING(node->Attribute("left"))),
524 string(AVOID_NULLPTR_STRING(node->Attribute("top"))),
525 string(AVOID_NULLPTR_STRING(node->Attribute("width"))),
526 string(AVOID_NULLPTR_STRING(node->Attribute("height"))),
527 parseFactor(guiParentNode, StringTools::trim(string(AVOID_NULLPTR_STRING(node->Attribute("factor")))))
528 ),
529 GUINode::getRequestedColor(string(AVOID_NULLPTR_STRING(node->Attribute("background-color"))), GUIColor::GUICOLOR_TRANSPARENT),
530 string(AVOID_NULLPTR_STRING(node->Attribute("background-image"))),
531 GUINode::createScale9Grid(
532 string(AVOID_NULLPTR_STRING(node->Attribute("background-image-scale9"))),
533 string(AVOID_NULLPTR_STRING(node->Attribute("background-image-scale9-left"))),
534 string(AVOID_NULLPTR_STRING(node->Attribute("background-image-scale9-top"))),
535 string(AVOID_NULLPTR_STRING(node->Attribute("background-image-scale9-right"))),
536 string(AVOID_NULLPTR_STRING(node->Attribute("background-image-scale9-bottom")))
537 ),
538 GUINode::getRequestedColor(string(AVOID_NULLPTR_STRING(node->Attribute("background-image-effect-color-mul"))), GUIColor::GUICOLOR_EFFECT_COLOR_MUL),
539 GUINode::getRequestedColor(string(AVOID_NULLPTR_STRING(node->Attribute("background-image-effect-color-add"))), GUIColor::GUICOLOR_EFFECT_COLOR_ADD),
540 GUINode::createBorder(
541 string(AVOID_NULLPTR_STRING(node->Attribute("border"))),
542 string(AVOID_NULLPTR_STRING(node->Attribute("border-left"))),
543 string(AVOID_NULLPTR_STRING(node->Attribute("border-top"))),
544 string(AVOID_NULLPTR_STRING(node->Attribute("border-right"))),
545 string(AVOID_NULLPTR_STRING(node->Attribute("border-bottom"))),
546 string(AVOID_NULLPTR_STRING(node->Attribute("border-color"))),
547 string(AVOID_NULLPTR_STRING(node->Attribute("border-color-left"))),
548 string(AVOID_NULLPTR_STRING(node->Attribute("border-color-top"))),
549 string(AVOID_NULLPTR_STRING(node->Attribute("border-color-right"))),
550 string(AVOID_NULLPTR_STRING(node->Attribute("border-color-bottom")))
551 ),
552 GUINode::createPadding(
553 string(AVOID_NULLPTR_STRING(node->Attribute("padding"))),
554 string(AVOID_NULLPTR_STRING(node->Attribute("padding-left"))),
555 string(AVOID_NULLPTR_STRING(node->Attribute("padding-top"))),
556 string(AVOID_NULLPTR_STRING(node->Attribute("padding-right"))),
557 string(AVOID_NULLPTR_STRING(node->Attribute("padding-bottom")))
558 ),
559 GUINode::createConditions(string(AVOID_NULLPTR_STRING(node->Attribute("show-on")))),
560 GUINode::createConditions(string(AVOID_NULLPTR_STRING(node->Attribute("hide-on")))),
561 GUILayoutNode::createAlignment(string(AVOID_NULLPTR_STRING(node->Attribute("alignment"))))
562 );
563 guiParentNode->addSubNode(guiLayoutNode);
564 if (guiElement != nullptr && guiElementControllerInstalled == false) {
565 guiElementController = guiElement->createController(guiLayoutNode);
566 if (guiElementController != nullptr) {
567 guiLayoutNode->setController(guiElementController);
568 }
569 guiElementControllerInstalled = true;
570 }
571 parseGUINode(guiLayoutNode, string(), node, nullptr);
572 } else
573 if (nodeTagName == "space") {
574 auto guiSpaceNode = new GUISpaceNode(
575 guiParentNode->getScreenNode(),
576 guiParentNode,
577 string(node->Attribute("id") == nullptr?guiParentNode->getScreenNode()->allocateNodeId():node->Attribute("id")),
578 GUINode::createFlow(string(AVOID_NULLPTR_STRING(node->Attribute("flow")))),
579 GUINode::createAlignments(
580 string(AVOID_NULLPTR_STRING(node->Attribute("horizontal-align"))),
581 string(AVOID_NULLPTR_STRING(node->Attribute("vertical-align")))
582 ),
583 GUIParentNode::createRequestedConstraints(
584 string(AVOID_NULLPTR_STRING(node->Attribute("left"))),
585 string(AVOID_NULLPTR_STRING(node->Attribute("top"))),
586 string(AVOID_NULLPTR_STRING(node->Attribute("width"))),
587 string(AVOID_NULLPTR_STRING(node->Attribute("height"))),
588 parseFactor(guiParentNode, StringTools::trim(string(AVOID_NULLPTR_STRING(node->Attribute("factor")))))
589 ),
590 GUINode::getRequestedColor(string(AVOID_NULLPTR_STRING(node->Attribute("background-color"))), GUIColor::GUICOLOR_TRANSPARENT),
591 string(AVOID_NULLPTR_STRING(node->Attribute("background-image"))),
592 GUINode::createScale9Grid(
593 string(AVOID_NULLPTR_STRING(node->Attribute("background-image-scale9"))),
594 string(AVOID_NULLPTR_STRING(node->Attribute("background-image-scale9-left"))),
595 string(AVOID_NULLPTR_STRING(node->Attribute("background-image-scale9-top"))),
596 string(AVOID_NULLPTR_STRING(node->Attribute("background-image-scale9-right"))),
597 string(AVOID_NULLPTR_STRING(node->Attribute("background-image-scale9-bottom")))
598 ),
599 GUINode::getRequestedColor(string(AVOID_NULLPTR_STRING(node->Attribute("background-image-effect-color-mul"))), GUIColor::GUICOLOR_EFFECT_COLOR_MUL),
600 GUINode::getRequestedColor(string(AVOID_NULLPTR_STRING(node->Attribute("background-image-effect-color-add"))), GUIColor::GUICOLOR_EFFECT_COLOR_ADD),
601 GUINode::createBorder(
602 string(AVOID_NULLPTR_STRING(node->Attribute("border"))),
603 string(AVOID_NULLPTR_STRING(node->Attribute("border-left"))),
604 string(AVOID_NULLPTR_STRING(node->Attribute("border-top"))),
605 string(AVOID_NULLPTR_STRING(node->Attribute("border-right"))),
606 string(AVOID_NULLPTR_STRING(node->Attribute("border-bottom"))),
607 string(AVOID_NULLPTR_STRING(node->Attribute("border-color"))),
608 string(AVOID_NULLPTR_STRING(node->Attribute("border-color-left"))),
609 string(AVOID_NULLPTR_STRING(node->Attribute("border-color-top"))),
610 string(AVOID_NULLPTR_STRING(node->Attribute("border-color-right"))),
611 string(AVOID_NULLPTR_STRING(node->Attribute("border-color-bottom")))
612 ),
613 GUINode::createPadding(
614 string(AVOID_NULLPTR_STRING(node->Attribute("padding"))),
615 string(AVOID_NULLPTR_STRING(node->Attribute("padding-left"))),
616 string(AVOID_NULLPTR_STRING(node->Attribute("padding-top"))),
617 string(AVOID_NULLPTR_STRING(node->Attribute("padding-right"))),
618 string(AVOID_NULLPTR_STRING(node->Attribute("padding-bottom")))
619 ),
620 GUINode::createConditions(string(AVOID_NULLPTR_STRING(node->Attribute("show-on")))),
621 GUINode::createConditions(string(AVOID_NULLPTR_STRING(node->Attribute("hide-on"))))
622 );
623 guiParentNode->addSubNode(guiSpaceNode);
624 if (guiElement != nullptr && guiElementControllerInstalled == false) {
625 guiElementController = guiElement->createController(guiSpaceNode);
626 if (guiElementController != nullptr) {
627 guiSpaceNode->setController(guiElementController);
628 }
629 guiElementControllerInstalled = true;
630 }
631 parseEffects(guiSpaceNode, node);
632 } else
633 if (nodeTagName == "element") {
634 auto guiElementNode = new GUIElementNode(
635 guiParentNode->getScreenNode(),
636 guiParentNode,
637 string(node->Attribute("id") == nullptr?guiParentNode->getScreenNode()->allocateNodeId():node->Attribute("id")),
638 GUINode::createFlow(string(AVOID_NULLPTR_STRING(node->Attribute("flow")))),
639 GUIParentNode::createOverflow(string(AVOID_NULLPTR_STRING(node->Attribute("overflow-x")))),
640 GUIParentNode::createOverflow(string(AVOID_NULLPTR_STRING(node->Attribute("overflow-y")))),
641 GUIElementNode::createAlignments(
642 string(AVOID_NULLPTR_STRING(node->Attribute("horizontal-align"))),
643 string(AVOID_NULLPTR_STRING(node->Attribute("vertical-align")))
644 ),
645 GUIParentNode::createRequestedConstraints(
646 string(AVOID_NULLPTR_STRING(node->Attribute("left"))),
647 string(AVOID_NULLPTR_STRING(node->Attribute("top"))),
648 string(AVOID_NULLPTR_STRING(node->Attribute("width"))),
649 string(AVOID_NULLPTR_STRING(node->Attribute("height"))),
650 parseFactor(guiParentNode, StringTools::trim(string(AVOID_NULLPTR_STRING(node->Attribute("factor")))))
651 ),
652 GUINode::getRequestedColor(string(AVOID_NULLPTR_STRING(node->Attribute("background-color"))), GUIColor::GUICOLOR_TRANSPARENT),
653 string(AVOID_NULLPTR_STRING(node->Attribute("background-image"))),
654 GUINode::createScale9Grid(
655 string(AVOID_NULLPTR_STRING(node->Attribute("background-image-scale9"))),
656 string(AVOID_NULLPTR_STRING(node->Attribute("background-image-scale9-left"))),
657 string(AVOID_NULLPTR_STRING(node->Attribute("background-image-scale9-top"))),
658 string(AVOID_NULLPTR_STRING(node->Attribute("background-image-scale9-right"))),
659 string(AVOID_NULLPTR_STRING(node->Attribute("background-image-scale9-bottom")))
660 ),
661 GUINode::getRequestedColor(string(AVOID_NULLPTR_STRING(node->Attribute("background-image-effect-color-mul"))), GUIColor::GUICOLOR_EFFECT_COLOR_MUL),
662 GUINode::getRequestedColor(string(AVOID_NULLPTR_STRING(node->Attribute("background-image-effect-color-add"))), GUIColor::GUICOLOR_EFFECT_COLOR_ADD),
663 GUINode::createBorder(
664 string(AVOID_NULLPTR_STRING(node->Attribute("border"))),
665 string(AVOID_NULLPTR_STRING(node->Attribute("border-left"))),
666 string(AVOID_NULLPTR_STRING(node->Attribute("border-top"))),
667 string(AVOID_NULLPTR_STRING(node->Attribute("border-right"))),
668 string(AVOID_NULLPTR_STRING(node->Attribute("border-bottom"))),
669 string(AVOID_NULLPTR_STRING(node->Attribute("border-color"))),
670 string(AVOID_NULLPTR_STRING(node->Attribute("border-color-left"))),
671 string(AVOID_NULLPTR_STRING(node->Attribute("border-color-top"))),
672 string(AVOID_NULLPTR_STRING(node->Attribute("border-color-right"))),
673 string(AVOID_NULLPTR_STRING(node->Attribute("border-color-bottom")))
674 ),
675 GUINode::createPadding(
676 string(AVOID_NULLPTR_STRING(node->Attribute("padding"))),
677 string(AVOID_NULLPTR_STRING(node->Attribute("padding-left"))),
678 string(AVOID_NULLPTR_STRING(node->Attribute("padding-top"))),
679 string(AVOID_NULLPTR_STRING(node->Attribute("padding-right"))),
680 string(AVOID_NULLPTR_STRING(node->Attribute("padding-bottom")))
681 ),
682 GUINode::createConditions(string(AVOID_NULLPTR_STRING(node->Attribute("show-on")))),
683 GUINode::createConditions(string(AVOID_NULLPTR_STRING(node->Attribute("hide-on")))),
684 unescapeQuotes(string(AVOID_NULLPTR_STRING(node->Attribute("name")))),
685 unescapeQuotes(string(AVOID_NULLPTR_STRING(node->Attribute("value")))),
686 StringTools::equalsIgnoreCase(StringTools::trim(string(AVOID_NULLPTR_STRING(node->Attribute("selected")))), "true"),
687 StringTools::equalsIgnoreCase(StringTools::trim(string(AVOID_NULLPTR_STRING(node->Attribute("disabled")))), "true"),
688 StringTools::equalsIgnoreCase(StringTools::trim(string(AVOID_NULLPTR_STRING(node->Attribute("focusable")))), "true"),
689 StringTools::equalsIgnoreCase(StringTools::trim(string(AVOID_NULLPTR_STRING(node->Attribute("ignore-events")))), "true"),
690 string(AVOID_NULLPTR_STRING(node->Attribute("on-initialize"))),
691 string(AVOID_NULLPTR_STRING(node->Attribute("on-mouse-click"))),
692 string(AVOID_NULLPTR_STRING(node->Attribute("on-mouse-doubleclick"))),
693 string(AVOID_NULLPTR_STRING(node->Attribute("on-mouse-over"))),
694 string(AVOID_NULLPTR_STRING(node->Attribute("on-mouse-out"))),
695 string(AVOID_NULLPTR_STRING(node->Attribute("on-change"))),
696 parentElementId,
697 string(AVOID_NULLPTR_STRING(node->Attribute("options")))
698 );
699 guiParentNode->addSubNode(guiElementNode);
700 if (guiElement != nullptr && guiElementControllerInstalled == false) {
701 guiElementController = guiElement->createController(guiElementNode);
702 if (guiElementController != nullptr) {
703 guiElementNode->setController(guiElementController);
704 }
705 guiElementControllerInstalled = true;
706 }
707 parseGUINode(guiElementNode, guiElementNode->getId(), node, nullptr);
708 } else
709 if (nodeTagName == "image") {
710 auto guiImageNode = new GUIImageNode(
711 guiParentNode->getScreenNode(),
712 guiParentNode,
713 string(node->Attribute("id") == nullptr?guiParentNode->getScreenNode()->allocateNodeId():node->Attribute("id")),
714 GUINode::createFlow(string(AVOID_NULLPTR_STRING(node->Attribute("flow")))),
715 GUINode::createAlignments(
716 string(AVOID_NULLPTR_STRING(node->Attribute("horizontal-align"))),
717 string(AVOID_NULLPTR_STRING(node->Attribute("vertical-align")))
718 ),
719 GUIParentNode::createRequestedConstraints(
720 string(AVOID_NULLPTR_STRING(node->Attribute("left"))),
721 string(AVOID_NULLPTR_STRING(node->Attribute("top"))),
722 string(AVOID_NULLPTR_STRING(node->Attribute("width"))),
723 string(AVOID_NULLPTR_STRING(node->Attribute("height"))),
724 parseFactor(guiParentNode, StringTools::trim(string(AVOID_NULLPTR_STRING(node->Attribute("factor")))))
725 ),
726 GUINode::getRequestedColor(string(AVOID_NULLPTR_STRING(node->Attribute("background-color"))), GUIColor::GUICOLOR_TRANSPARENT),
727 string(AVOID_NULLPTR_STRING(node->Attribute("background-image"))),
728 GUINode::createScale9Grid(
729 string(AVOID_NULLPTR_STRING(node->Attribute("background-image-scale9"))),
730 string(AVOID_NULLPTR_STRING(node->Attribute("background-image-scale9-left"))),
731 string(AVOID_NULLPTR_STRING(node->Attribute("background-image-scale9-top"))),
732 string(AVOID_NULLPTR_STRING(node->Attribute("background-image-scale9-right"))),
733 string(AVOID_NULLPTR_STRING(node->Attribute("background-image-scale9-bottom")))
734 ),
735 GUINode::getRequestedColor(string(AVOID_NULLPTR_STRING(node->Attribute("background-image-effect-color-mul"))), GUIColor::GUICOLOR_EFFECT_COLOR_MUL),
736 GUINode::getRequestedColor(string(AVOID_NULLPTR_STRING(node->Attribute("background-image-effect-color-add"))), GUIColor::GUICOLOR_EFFECT_COLOR_ADD),
737 GUINode::createBorder(
738 string(AVOID_NULLPTR_STRING(node->Attribute("border"))),
739 string(AVOID_NULLPTR_STRING(node->Attribute("border-left"))),
740 string(AVOID_NULLPTR_STRING(node->Attribute("border-top"))),
741 string(AVOID_NULLPTR_STRING(node->Attribute("border-right"))),
742 string(AVOID_NULLPTR_STRING(node->Attribute("border-bottom"))),
743 string(AVOID_NULLPTR_STRING(node->Attribute("border-color"))),
744 string(AVOID_NULLPTR_STRING(node->Attribute("border-color-left"))),
745 string(AVOID_NULLPTR_STRING(node->Attribute("border-color-top"))),
746 string(AVOID_NULLPTR_STRING(node->Attribute("border-color-right"))),
747 string(AVOID_NULLPTR_STRING(node->Attribute("border-color-bottom")))
748 ),
749 GUINode::createPadding(
750 string(AVOID_NULLPTR_STRING(node->Attribute("padding"))),
751 string(AVOID_NULLPTR_STRING(node->Attribute("padding-left"))),
752 string(AVOID_NULLPTR_STRING(node->Attribute("padding-top"))),
753 string(AVOID_NULLPTR_STRING(node->Attribute("padding-right"))),
754 string(AVOID_NULLPTR_STRING(node->Attribute("padding-bottom")))
755 ),
756 GUINode::createConditions(string(AVOID_NULLPTR_STRING(node->Attribute("show-on")))),
757 GUINode::createConditions(string(AVOID_NULLPTR_STRING(node->Attribute("hide-on")))),
758 StringTools::trim(unescapeQuotes(string(AVOID_NULLPTR_STRING(node->Attribute("src"))))),
759 GUIImageNode::createRequestedDimensionConstraints(
760 StringTools::trim(string(AVOID_NULLPTR_STRING(node->Attribute("horizontal-scale")))),
761 StringTools::trim(string(AVOID_NULLPTR_STRING(node->Attribute("vertical-scale"))))
762 ),
763 node->Attribute("mirror-x") == nullptr?false:StringTools::toLowerCase(StringTools::trim(node->Attribute("mirror-x"))) == "true",
764 node->Attribute("mirror-y") == nullptr?false:StringTools::toLowerCase(StringTools::trim(node->Attribute("mirror-y"))) == "true",
765 GUINode::getRequestedColor(string(AVOID_NULLPTR_STRING(node->Attribute("effect-color-mul"))), GUIColor::GUICOLOR_EFFECT_COLOR_MUL),
766 GUINode::getRequestedColor(string(AVOID_NULLPTR_STRING(node->Attribute("effect-color-add"))), GUIColor::GUICOLOR_EFFECT_COLOR_ADD),
767 GUINode::createScale9Grid(
768 string(AVOID_NULLPTR_STRING(node->Attribute("scale9"))),
769 string(AVOID_NULLPTR_STRING(node->Attribute("scale9-left"))),
770 string(AVOID_NULLPTR_STRING(node->Attribute("scale9-top"))),
771 string(AVOID_NULLPTR_STRING(node->Attribute("scale9-right"))),
772 string(AVOID_NULLPTR_STRING(node->Attribute("scale9-bottom")))
773 ),
774 GUIImageNode::createClipping(
775 string(AVOID_NULLPTR_STRING(node->Attribute("clipping"))),
776 string(AVOID_NULLPTR_STRING(node->Attribute("clipping-left"))),
777 string(AVOID_NULLPTR_STRING(node->Attribute("clipping-top"))),
778 string(AVOID_NULLPTR_STRING(node->Attribute("clipping-right"))),
779 string(AVOID_NULLPTR_STRING(node->Attribute("clipping-bottom")))
780 ),
781 StringTools::trim(unescapeQuotes(string(AVOID_NULLPTR_STRING(node->Attribute("mask"))))),
782 Float::parse(string(AVOID_NULLPTR_STRING(node->Attribute("mask-max-value")))),
783 node->Attribute("rotation") != nullptr?Float::parse(node->Attribute("rotation")):0.0f
784 );
785 guiParentNode->addSubNode(guiImageNode);
786 if (guiElement != nullptr && guiElementControllerInstalled == false) {
787 guiElementController = guiElement->createController(guiImageNode);
788 if (guiElementController != nullptr) {
789 guiImageNode->setController(guiElementController);
790 }
791 guiElementControllerInstalled = true;
792 }
793 parseEffects(guiImageNode, node);
794 } else
795 if (nodeTagName == "frame-buffer") {
796 auto guiFrameBufferNode = new GUIFrameBufferNode(
797 guiParentNode->getScreenNode(),
798 guiParentNode,
799 string(node->Attribute("id") == nullptr?guiParentNode->getScreenNode()->allocateNodeId():node->Attribute("id")),
800 GUINode::createFlow(string(AVOID_NULLPTR_STRING(node->Attribute("flow")))),
801 GUINode::createAlignments(
802 string(AVOID_NULLPTR_STRING(node->Attribute("horizontal-align"))),
803 string(AVOID_NULLPTR_STRING(node->Attribute("vertical-align")))
804 ),
805 GUIParentNode::createRequestedConstraints(
806 string(AVOID_NULLPTR_STRING(node->Attribute("left"))),
807 string(AVOID_NULLPTR_STRING(node->Attribute("top"))),
808 string(AVOID_NULLPTR_STRING(node->Attribute("width"))),
809 string(AVOID_NULLPTR_STRING(node->Attribute("height"))),
810 parseFactor(guiParentNode, StringTools::trim(string(AVOID_NULLPTR_STRING(node->Attribute("factor")))))
811 ),
812 GUINode::getRequestedColor(string(AVOID_NULLPTR_STRING(node->Attribute("background-color"))), GUIColor::GUICOLOR_TRANSPARENT),
813 string(AVOID_NULLPTR_STRING(node->Attribute("background-image"))),
814 GUINode::createScale9Grid(
815 string(AVOID_NULLPTR_STRING(node->Attribute("background-image-scale9"))),
816 string(AVOID_NULLPTR_STRING(node->Attribute("background-image-scale9-left"))),
817 string(AVOID_NULLPTR_STRING(node->Attribute("background-image-scale9-top"))),
818 string(AVOID_NULLPTR_STRING(node->Attribute("background-image-scale9-right"))),
819 string(AVOID_NULLPTR_STRING(node->Attribute("background-image-scale9-bottom")))
820 ),
821 GUINode::getRequestedColor(string(AVOID_NULLPTR_STRING(node->Attribute("background-image-effect-color-mul"))), GUIColor::GUICOLOR_EFFECT_COLOR_MUL),
822 GUINode::getRequestedColor(string(AVOID_NULLPTR_STRING(node->Attribute("background-image-effect-color-add"))), GUIColor::GUICOLOR_EFFECT_COLOR_ADD),
823 GUINode::createBorder(
824 string(AVOID_NULLPTR_STRING(node->Attribute("border"))),
825 string(AVOID_NULLPTR_STRING(node->Attribute("border-left"))),
826 string(AVOID_NULLPTR_STRING(node->Attribute("border-top"))),
827 string(AVOID_NULLPTR_STRING(node->Attribute("border-right"))),
828 string(AVOID_NULLPTR_STRING(node->Attribute("border-bottom"))),
829 string(AVOID_NULLPTR_STRING(node->Attribute("border-color"))),
830 string(AVOID_NULLPTR_STRING(node->Attribute("border-color-left"))),
831 string(AVOID_NULLPTR_STRING(node->Attribute("border-color-top"))),
832 string(AVOID_NULLPTR_STRING(node->Attribute("border-color-right"))),
833 string(AVOID_NULLPTR_STRING(node->Attribute("border-color-bottom")))
834 ),
835 GUINode::createPadding(
836 string(AVOID_NULLPTR_STRING(node->Attribute("padding"))),
837 string(AVOID_NULLPTR_STRING(node->Attribute("padding-left"))),
838 string(AVOID_NULLPTR_STRING(node->Attribute("padding-top"))),
839 string(AVOID_NULLPTR_STRING(node->Attribute("padding-right"))),
840 string(AVOID_NULLPTR_STRING(node->Attribute("padding-bottom")))
841 ),
842 GUINode::createConditions(string(AVOID_NULLPTR_STRING(node->Attribute("show-on")))),
843 GUINode::createConditions(string(AVOID_NULLPTR_STRING(node->Attribute("hide-on")))),
844 nullptr,
845 GUIFrameBufferNode::createRequestedDimensionConstraints(
846 StringTools::trim(string(AVOID_NULLPTR_STRING(node->Attribute("horizontal-scale")))),
847 StringTools::trim(string(AVOID_NULLPTR_STRING(node->Attribute("vertical-scale"))))
848 ),
849 node->Attribute("mirror-x") == nullptr?false:StringTools::toLowerCase(StringTools::trim(node->Attribute("mirror-x"))) == "true",
850 node->Attribute("mirror-y") == nullptr?false:StringTools::toLowerCase(StringTools::trim(node->Attribute("mirror-y"))) == "true",
851 GUINode::getRequestedColor(string(AVOID_NULLPTR_STRING(node->Attribute("effect-color-mul"))), GUIColor::GUICOLOR_EFFECT_COLOR_MUL),
852 GUINode::getRequestedColor(string(AVOID_NULLPTR_STRING(node->Attribute("effect-color-add"))), GUIColor::GUICOLOR_EFFECT_COLOR_ADD),
853 GUINode::createScale9Grid(
854 string(AVOID_NULLPTR_STRING(node->Attribute("scale9"))),
855 string(AVOID_NULLPTR_STRING(node->Attribute("scale9-left"))),
856 string(AVOID_NULLPTR_STRING(node->Attribute("scale9-top"))),
857 string(AVOID_NULLPTR_STRING(node->Attribute("scale9-right"))),
858 string(AVOID_NULLPTR_STRING(node->Attribute("scale9-bottom")))
859 ),
860 GUIFrameBufferNode::createClipping(
861 string(AVOID_NULLPTR_STRING(node->Attribute("clipping"))),
862 string(AVOID_NULLPTR_STRING(node->Attribute("clipping-left"))),
863 string(AVOID_NULLPTR_STRING(node->Attribute("clipping-top"))),
864 string(AVOID_NULLPTR_STRING(node->Attribute("clipping-right"))),
865 string(AVOID_NULLPTR_STRING(node->Attribute("clipping-bottom")))
866 ),
867 StringTools::trim(unescapeQuotes(string(AVOID_NULLPTR_STRING(node->Attribute("mask"))))),
868 Float::parse(string(AVOID_NULLPTR_STRING(node->Attribute("mask-max-value"))))
869 );
870 guiParentNode->addSubNode(guiFrameBufferNode);
871 if (guiElement != nullptr && guiElementControllerInstalled == false) {
872 guiElementController = guiElement->createController(guiFrameBufferNode);
873 if (guiElementController != nullptr) {
874 guiFrameBufferNode->setController(guiElementController);
875 }
876 guiElementControllerInstalled = true;
877 }
878 parseEffects(guiFrameBufferNode, node);
879 } else
880 if (nodeTagName == "texture") {
881 auto guiTextureNode = new GUITextureNode(
882 guiParentNode->getScreenNode(),
883 guiParentNode,
884 string(node->Attribute("id") == nullptr?guiParentNode->getScreenNode()->allocateNodeId():node->Attribute("id")),
885 GUINode::createFlow(string(AVOID_NULLPTR_STRING(node->Attribute("flow")))),
886 GUINode::createAlignments(
887 string(AVOID_NULLPTR_STRING(node->Attribute("horizontal-align"))),
888 string(AVOID_NULLPTR_STRING(node->Attribute("vertical-align")))
889 ),
890 GUIParentNode::createRequestedConstraints(
891 string(AVOID_NULLPTR_STRING(node->Attribute("left"))),
892 string(AVOID_NULLPTR_STRING(node->Attribute("top"))),
893 string(AVOID_NULLPTR_STRING(node->Attribute("width"))),
894 string(AVOID_NULLPTR_STRING(node->Attribute("height"))),
895 parseFactor(guiParentNode, StringTools::trim(string(AVOID_NULLPTR_STRING(node->Attribute("factor")))))
896 ),
897 GUINode::getRequestedColor(string(AVOID_NULLPTR_STRING(node->Attribute("background-color"))), GUIColor::GUICOLOR_TRANSPARENT),
898 string(AVOID_NULLPTR_STRING(node->Attribute("background-image"))),
899 GUINode::createScale9Grid(
900 string(AVOID_NULLPTR_STRING(node->Attribute("background-image-scale9"))),
901 string(AVOID_NULLPTR_STRING(node->Attribute("background-image-scale9-left"))),
902 string(AVOID_NULLPTR_STRING(node->Attribute("background-image-scale9-top"))),
903 string(AVOID_NULLPTR_STRING(node->Attribute("background-image-scale9-right"))),
904 string(AVOID_NULLPTR_STRING(node->Attribute("background-image-scale9-bottom")))
905 ),
906 GUINode::getRequestedColor(string(AVOID_NULLPTR_STRING(node->Attribute("background-image-effect-color-mul"))), GUIColor::GUICOLOR_EFFECT_COLOR_MUL),
907 GUINode::getRequestedColor(string(AVOID_NULLPTR_STRING(node->Attribute("background-image-effect-color-add"))), GUIColor::GUICOLOR_EFFECT_COLOR_ADD),
908 GUINode::createBorder(
909 string(AVOID_NULLPTR_STRING(node->Attribute("border"))),
910 string(AVOID_NULLPTR_STRING(node->Attribute("border-left"))),
911 string(AVOID_NULLPTR_STRING(node->Attribute("border-top"))),
912 string(AVOID_NULLPTR_STRING(node->Attribute("border-right"))),
913 string(AVOID_NULLPTR_STRING(node->Attribute("border-bottom"))),
914 string(AVOID_NULLPTR_STRING(node->Attribute("border-color"))),
915 string(AVOID_NULLPTR_STRING(node->Attribute("border-color-left"))),
916 string(AVOID_NULLPTR_STRING(node->Attribute("border-color-top"))),
917 string(AVOID_NULLPTR_STRING(node->Attribute("border-color-right"))),
918 string(AVOID_NULLPTR_STRING(node->Attribute("border-color-bottom")))
919 ),
920 GUINode::createPadding(
921 string(AVOID_NULLPTR_STRING(node->Attribute("padding"))),
922 string(AVOID_NULLPTR_STRING(node->Attribute("padding-left"))),
923 string(AVOID_NULLPTR_STRING(node->Attribute("padding-top"))),
924 string(AVOID_NULLPTR_STRING(node->Attribute("padding-right"))),
925 string(AVOID_NULLPTR_STRING(node->Attribute("padding-bottom")))
926 ),
927 GUINode::createConditions(string(AVOID_NULLPTR_STRING(node->Attribute("show-on")))),
928 GUINode::createConditions(string(AVOID_NULLPTR_STRING(node->Attribute("hide-on")))),
929 nullptr,
930 GUITextureNode::createRequestedDimensionConstraints(
931 StringTools::trim(string(AVOID_NULLPTR_STRING(node->Attribute("horizontal-scale")))),
932 StringTools::trim(string(AVOID_NULLPTR_STRING(node->Attribute("vertical-scale"))))
933 ),
934 node->Attribute("mirror-x") == nullptr?false:StringTools::toLowerCase(StringTools::trim(node->Attribute("mirror-x"))) == "true",
935 node->Attribute("mirror-y") == nullptr?false:StringTools::toLowerCase(StringTools::trim(node->Attribute("mirror-y"))) == "true",
936 GUINode::getRequestedColor(string(AVOID_NULLPTR_STRING(node->Attribute("effect-color-mul"))), GUIColor::GUICOLOR_EFFECT_COLOR_MUL),
937 GUINode::getRequestedColor(string(AVOID_NULLPTR_STRING(node->Attribute("effect-color-add"))), GUIColor::GUICOLOR_EFFECT_COLOR_ADD),
938 GUINode::createScale9Grid(
939 string(AVOID_NULLPTR_STRING(node->Attribute("scale9"))),
940 string(AVOID_NULLPTR_STRING(node->Attribute("scale9-left"))),
941 string(AVOID_NULLPTR_STRING(node->Attribute("scale9-top"))),
942 string(AVOID_NULLPTR_STRING(node->Attribute("scale9-right"))),
943 string(AVOID_NULLPTR_STRING(node->Attribute("scale9-bottom")))
944 ),
945 GUITextureNode::createClipping(
946 string(AVOID_NULLPTR_STRING(node->Attribute("clipping"))),
947 string(AVOID_NULLPTR_STRING(node->Attribute("clipping-left"))),
948 string(AVOID_NULLPTR_STRING(node->Attribute("clipping-top"))),
949 string(AVOID_NULLPTR_STRING(node->Attribute("clipping-right"))),
950 string(AVOID_NULLPTR_STRING(node->Attribute("clipping-bottom")))
951 ),
952 StringTools::trim(unescapeQuotes(string(AVOID_NULLPTR_STRING(node->Attribute("mask"))))),
953 Float::parse(string(AVOID_NULLPTR_STRING(node->Attribute("mask-max-value"))))
954 );
955 guiParentNode->addSubNode(guiTextureNode);
956 if (guiElement != nullptr && guiElementControllerInstalled == false) {
957 guiElementController = guiElement->createController(guiTextureNode);
958 if (guiElementController != nullptr) {
959 guiTextureNode->setController(guiElementController);
960 }
961 guiElementControllerInstalled = true;
962 }
963 parseEffects(guiTextureNode, node);
964 } else
965 if (nodeTagName == "gradient") {
966 auto guiGradientNode = new GUIGradientNode(
967 guiParentNode->getScreenNode(),
968 guiParentNode,
969 string(node->Attribute("id") == nullptr?guiParentNode->getScreenNode()->allocateNodeId():node->Attribute("id")),
970 GUINode::createFlow(string(AVOID_NULLPTR_STRING(node->Attribute("flow")))),
971 GUINode::createAlignments(
972 string(AVOID_NULLPTR_STRING(node->Attribute("horizontal-align"))),
973 string(AVOID_NULLPTR_STRING(node->Attribute("vertical-align")))
974 ),
975 GUIParentNode::createRequestedConstraints(
976 string(AVOID_NULLPTR_STRING(node->Attribute("left"))),
977 string(AVOID_NULLPTR_STRING(node->Attribute("top"))),
978 string(AVOID_NULLPTR_STRING(node->Attribute("width"))),
979 string(AVOID_NULLPTR_STRING(node->Attribute("height"))),
980 parseFactor(guiParentNode, StringTools::trim(string(AVOID_NULLPTR_STRING(node->Attribute("factor")))))
981 ),
982 GUINode::getRequestedColor(string(AVOID_NULLPTR_STRING(node->Attribute("background-color"))), GUIColor::GUICOLOR_TRANSPARENT),
983 string(AVOID_NULLPTR_STRING(node->Attribute("background-image"))),
984 GUINode::createScale9Grid(
985 string(AVOID_NULLPTR_STRING(node->Attribute("background-image-scale9"))),
986 string(AVOID_NULLPTR_STRING(node->Attribute("background-image-scale9-left"))),
987 string(AVOID_NULLPTR_STRING(node->Attribute("background-image-scale9-top"))),
988 string(AVOID_NULLPTR_STRING(node->Attribute("background-image-scale9-right"))),
989 string(AVOID_NULLPTR_STRING(node->Attribute("background-image-scale9-bottom")))
990 ),
991 GUINode::getRequestedColor(string(AVOID_NULLPTR_STRING(node->Attribute("background-image-effect-color-mul"))), GUIColor::GUICOLOR_EFFECT_COLOR_MUL),
992 GUINode::getRequestedColor(string(AVOID_NULLPTR_STRING(node->Attribute("background-image-effect-color-add"))), GUIColor::GUICOLOR_EFFECT_COLOR_ADD),
993 GUINode::createBorder(
994 string(AVOID_NULLPTR_STRING(node->Attribute("border"))),
995 string(AVOID_NULLPTR_STRING(node->Attribute("border-left"))),
996 string(AVOID_NULLPTR_STRING(node->Attribute("border-top"))),
997 string(AVOID_NULLPTR_STRING(node->Attribute("border-right"))),
998 string(AVOID_NULLPTR_STRING(node->Attribute("border-bottom"))),
999 string(AVOID_NULLPTR_STRING(node->Attribute("border-color"))),
1000 string(AVOID_NULLPTR_STRING(node->Attribute("border-color-left"))),
1001 string(AVOID_NULLPTR_STRING(node->Attribute("border-color-top"))),
1002 string(AVOID_NULLPTR_STRING(node->Attribute("border-color-right"))),
1003 string(AVOID_NULLPTR_STRING(node->Attribute("border-color-bottom")))
1004 ),
1005 GUINode::createPadding(
1006 string(AVOID_NULLPTR_STRING(node->Attribute("padding"))),
1007 string(AVOID_NULLPTR_STRING(node->Attribute("padding-left"))),
1008 string(AVOID_NULLPTR_STRING(node->Attribute("padding-top"))),
1009 string(AVOID_NULLPTR_STRING(node->Attribute("padding-right"))),
1010 string(AVOID_NULLPTR_STRING(node->Attribute("padding-bottom")))
1011 ),
1012 GUINode::createConditions(string(AVOID_NULLPTR_STRING(node->Attribute("show-on")))),
1013 GUINode::createConditions(string(AVOID_NULLPTR_STRING(node->Attribute("hide-on")))),
1014 GUINode::getRequestedColor(string(AVOID_NULLPTR_STRING(node->Attribute("effect-color-mul"))), GUIColor::GUICOLOR_EFFECT_COLOR_MUL),
1015 GUINode::getRequestedColor(string(AVOID_NULLPTR_STRING(node->Attribute("effect-color-add"))), GUIColor::GUICOLOR_EFFECT_COLOR_ADD),
1016 GUIGradientNode::createClipping(
1017 string(AVOID_NULLPTR_STRING(node->Attribute("clipping"))),
1018 string(AVOID_NULLPTR_STRING(node->Attribute("clipping-left"))),
1019 string(AVOID_NULLPTR_STRING(node->Attribute("clipping-top"))),
1020 string(AVOID_NULLPTR_STRING(node->Attribute("clipping-right"))),
1021 string(AVOID_NULLPTR_STRING(node->Attribute("clipping-bottom")))
1022 ),
1023 StringTools::trim(unescapeQuotes(string(AVOID_NULLPTR_STRING(node->Attribute("mask"))))),
1024 Float::parse(string(AVOID_NULLPTR_STRING(node->Attribute("mask-max-value")))),
1025 GUIGradientNode::createGradient(string(AVOID_NULLPTR_STRING(node->Attribute("colors"))), string(AVOID_NULLPTR_STRING(node->Attribute("rotation"))))
1026 );
1027 guiParentNode->addSubNode(guiGradientNode);
1028 if (guiElement != nullptr && guiElementControllerInstalled == false) {
1029 guiElementController = guiElement->createController(guiGradientNode);
1030 if (guiElementController != nullptr) {
1031 guiGradientNode->setController(guiElementController);
1032 }
1033 guiElementControllerInstalled = true;
1034 }
1035 parseEffects(guiGradientNode, node);
1036 } else
1037 if (nodeTagName == "text") {
1038 auto guiTextNode = new GUITextNode(
1039 guiParentNode->getScreenNode(),
1040 guiParentNode,
1041 string(node->Attribute("id") == nullptr?guiParentNode->getScreenNode()->allocateNodeId():node->Attribute("id")),
1042 GUINode::createFlow(string(AVOID_NULLPTR_STRING(node->Attribute("flow")))),
1043 GUINode::createAlignments(
1044 string(AVOID_NULLPTR_STRING(node->Attribute("horizontal-align"))),
1045 string(AVOID_NULLPTR_STRING(node->Attribute("vertical-align")))
1046 ),
1047 GUIParentNode::createRequestedConstraints(
1048 string(AVOID_NULLPTR_STRING(node->Attribute("left"))),
1049 string(AVOID_NULLPTR_STRING(node->Attribute("top"))),
1050 string(AVOID_NULLPTR_STRING(node->Attribute("width"))),
1051 string(AVOID_NULLPTR_STRING(node->Attribute("height"))),
1052 parseFactor(guiParentNode, StringTools::trim(string(AVOID_NULLPTR_STRING(node->Attribute("factor")))))
1053 ),
1054 GUINode::getRequestedColor(string(AVOID_NULLPTR_STRING(node->Attribute("background-color"))), GUIColor::GUICOLOR_TRANSPARENT),
1055 string(AVOID_NULLPTR_STRING(node->Attribute("background-image"))),
1056 GUINode::createScale9Grid(
1057 string(AVOID_NULLPTR_STRING(node->Attribute("background-image-scale9"))),
1058 string(AVOID_NULLPTR_STRING(node->Attribute("background-image-scale9-left"))),
1059 string(AVOID_NULLPTR_STRING(node->Attribute("background-image-scale9-top"))),
1060 string(AVOID_NULLPTR_STRING(node->Attribute("background-image-scale9-right"))),
1061 string(AVOID_NULLPTR_STRING(node->Attribute("background-image-scale9-bottom")))
1062 ),
1063 GUINode::getRequestedColor(string(AVOID_NULLPTR_STRING(node->Attribute("background-image-effect-color-mul"))), GUIColor::GUICOLOR_EFFECT_COLOR_MUL),
1064 GUINode::getRequestedColor(string(AVOID_NULLPTR_STRING(node->Attribute("background-image-effect-color-add"))), GUIColor::GUICOLOR_EFFECT_COLOR_ADD),
1065 GUINode::createBorder(
1066 string(AVOID_NULLPTR_STRING(node->Attribute("border"))),
1067 string(AVOID_NULLPTR_STRING(node->Attribute("border-left"))),
1068 string(AVOID_NULLPTR_STRING(node->Attribute("border-top"))),
1069 string(AVOID_NULLPTR_STRING(node->Attribute("border-right"))),
1070 string(AVOID_NULLPTR_STRING(node->Attribute("border-bottom"))),
1071 string(AVOID_NULLPTR_STRING(node->Attribute("border-color"))),
1072 string(AVOID_NULLPTR_STRING(node->Attribute("border-color-left"))),
1073 string(AVOID_NULLPTR_STRING(node->Attribute("border-color-top"))),
1074 string(AVOID_NULLPTR_STRING(node->Attribute("border-color-right"))),
1075 string(AVOID_NULLPTR_STRING(node->Attribute("border-color-bottom")))
1076 ),
1077 GUINode::createPadding(
1078 string(AVOID_NULLPTR_STRING(node->Attribute("padding"))),
1079 string(AVOID_NULLPTR_STRING(node->Attribute("padding-left"))),
1080 string(AVOID_NULLPTR_STRING(node->Attribute("padding-top"))),
1081 string(AVOID_NULLPTR_STRING(node->Attribute("padding-right"))),
1082 string(AVOID_NULLPTR_STRING(node->Attribute("padding-bottom")))
1083 ),
1084 GUINode::createConditions(string(AVOID_NULLPTR_STRING(node->Attribute("show-on")))),
1085 GUINode::createConditions(string(AVOID_NULLPTR_STRING(node->Attribute("hide-on")))),
1086 StringTools::trim(string(AVOID_NULLPTR_STRING(node->Attribute("font")))),
1087 string(AVOID_NULLPTR_STRING(node->Attribute("color"))),
1088 MutableString(unescapeQuotes(string(StringTools::trim(AVOID_NULLPTR_STRING(node->Attribute("text"))))))
1089 );
1090 guiParentNode->addSubNode(guiTextNode);
1091 if (guiElement != nullptr && guiElementControllerInstalled == false) {
1092 guiElementController = guiElement->createController(guiTextNode);
1093 if (guiElementController != nullptr) {
1094 guiTextNode->setController(guiElementController);
1095 }
1096 guiElementControllerInstalled = true;
1097 }
1098 parseEffects(guiTextNode, node);
1099 } else
1100 if (nodeTagName == "styled-text") {
1101 auto guiTextNode = new GUIStyledTextNode(
1102 guiParentNode->getScreenNode(),
1103 guiParentNode,
1104 string(node->Attribute("id") == nullptr?guiParentNode->getScreenNode()->allocateNodeId():node->Attribute("id")),
1105 GUINode::createFlow(string(AVOID_NULLPTR_STRING(node->Attribute("flow")))),
1106 GUINode::createAlignments(
1107 string(AVOID_NULLPTR_STRING(node->Attribute("horizontal-align"))),
1108 string(AVOID_NULLPTR_STRING(node->Attribute("vertical-align")))
1109 ),
1110 GUIParentNode::createRequestedConstraints(
1111 string(AVOID_NULLPTR_STRING(node->Attribute("left"))),
1112 string(AVOID_NULLPTR_STRING(node->Attribute("top"))),
1113 string(AVOID_NULLPTR_STRING(node->Attribute("width"))),
1114 string(AVOID_NULLPTR_STRING(node->Attribute("height"))),
1115 parseFactor(guiParentNode, StringTools::trim(string(AVOID_NULLPTR_STRING(node->Attribute("factor")))))
1116 ),
1117 GUINode::getRequestedColor(string(AVOID_NULLPTR_STRING(node->Attribute("background-color"))), GUIColor::GUICOLOR_TRANSPARENT),
1118 string(AVOID_NULLPTR_STRING(node->Attribute("background-image"))),
1119 GUINode::createScale9Grid(
1120 string(AVOID_NULLPTR_STRING(node->Attribute("background-image-scale9"))),
1121 string(AVOID_NULLPTR_STRING(node->Attribute("background-image-scale9-left"))),
1122 string(AVOID_NULLPTR_STRING(node->Attribute("background-image-scale9-top"))),
1123 string(AVOID_NULLPTR_STRING(node->Attribute("background-image-scale9-right"))),
1124 string(AVOID_NULLPTR_STRING(node->Attribute("background-image-scale9-bottom")))
1125 ),
1126 GUINode::getRequestedColor(string(AVOID_NULLPTR_STRING(node->Attribute("background-image-effect-color-mul"))), GUIColor::GUICOLOR_EFFECT_COLOR_MUL),
1127 GUINode::getRequestedColor(string(AVOID_NULLPTR_STRING(node->Attribute("background-image-effect-color-add"))), GUIColor::GUICOLOR_EFFECT_COLOR_ADD),
1128 GUINode::createBorder(
1129 string(AVOID_NULLPTR_STRING(node->Attribute("border"))),
1130 string(AVOID_NULLPTR_STRING(node->Attribute("border-left"))),
1131 string(AVOID_NULLPTR_STRING(node->Attribute("border-top"))),
1132 string(AVOID_NULLPTR_STRING(node->Attribute("border-right"))),
1133 string(AVOID_NULLPTR_STRING(node->Attribute("border-bottom"))),
1134 string(AVOID_NULLPTR_STRING(node->Attribute("border-color"))),
1135 string(AVOID_NULLPTR_STRING(node->Attribute("border-color-left"))),
1136 string(AVOID_NULLPTR_STRING(node->Attribute("border-color-top"))),
1137 string(AVOID_NULLPTR_STRING(node->Attribute("border-color-right"))),
1138 string(AVOID_NULLPTR_STRING(node->Attribute("border-color-bottom")))
1139 ),
1140 GUINode::createPadding(
1141 string(AVOID_NULLPTR_STRING(node->Attribute("padding"))),
1142 string(AVOID_NULLPTR_STRING(node->Attribute("padding-left"))),
1143 string(AVOID_NULLPTR_STRING(node->Attribute("padding-top"))),
1144 string(AVOID_NULLPTR_STRING(node->Attribute("padding-right"))),
1145 string(AVOID_NULLPTR_STRING(node->Attribute("padding-bottom")))
1146 ),
1147 GUINode::createConditions(string(AVOID_NULLPTR_STRING(node->Attribute("show-on")))),
1148 GUINode::createConditions(string(AVOID_NULLPTR_STRING(node->Attribute("hide-on")))),
1149 node->Attribute("preformatted") == nullptr?false:StringTools::toLowerCase(StringTools::trim(node->Attribute("preformatted"))) == "true",
1150 StringTools::trim(string(AVOID_NULLPTR_STRING(node->Attribute("font")))),
1151 string(AVOID_NULLPTR_STRING(node->Attribute("color"))),
1152 MutableString(unescapeQuotes(StringTools::trim(AVOID_NULLPTR_STRING(node->GetText()))))
1153 );
1154 guiParentNode->addSubNode(guiTextNode);
1155 if (guiElement != nullptr && guiElementControllerInstalled == false) {
1156 guiElementController = guiElement->createController(guiTextNode);
1157 if (guiElementController != nullptr) {
1158 guiTextNode->setController(guiElementController);
1159 }
1160 guiElementControllerInstalled = true;
1161 }
1162 parseEffects(guiTextNode, node);
1163 } else
1164 if (nodeTagName == "table") {
1165 auto guiTableNode = new GUITableNode(
1166 guiParentNode->getScreenNode(),
1167 guiParentNode,
1168 string(node->Attribute("id") == nullptr?guiParentNode->getScreenNode()->allocateNodeId():node->Attribute("id")),
1169 GUINode::createFlow(string(AVOID_NULLPTR_STRING(node->Attribute("flow")))),
1170 GUIParentNode::createOverflow(string(AVOID_NULLPTR_STRING(node->Attribute("overflow-x")))),
1171 GUIParentNode::createOverflow(string(AVOID_NULLPTR_STRING(node->Attribute("overflow-y")))),
1172 GUINode::createAlignments(
1173 string(AVOID_NULLPTR_STRING(node->Attribute("horizontal-align"))),
1174 string(AVOID_NULLPTR_STRING(node->Attribute("vertical-align")))
1175 ),
1176 GUIParentNode::createRequestedConstraints(
1177 string(AVOID_NULLPTR_STRING(node->Attribute("left"))),
1178 string(AVOID_NULLPTR_STRING(node->Attribute("top"))),
1179 string(AVOID_NULLPTR_STRING(node->Attribute("width"))),
1180 string(AVOID_NULLPTR_STRING(node->Attribute("height"))),
1181 parseFactor(guiParentNode, StringTools::trim(string(AVOID_NULLPTR_STRING(node->Attribute("factor")))))
1182 ),
1183 GUINode::getRequestedColor(string(AVOID_NULLPTR_STRING(node->Attribute("background-color"))), GUIColor::GUICOLOR_TRANSPARENT),
1184 string(AVOID_NULLPTR_STRING(node->Attribute("background-image"))),
1185 GUINode::createScale9Grid(
1186 string(AVOID_NULLPTR_STRING(node->Attribute("background-image-scale9"))),
1187 string(AVOID_NULLPTR_STRING(node->Attribute("background-image-scale9-left"))),
1188 string(AVOID_NULLPTR_STRING(node->Attribute("background-image-scale9-top"))),
1189 string(AVOID_NULLPTR_STRING(node->Attribute("background-image-scale9-right"))),
1190 string(AVOID_NULLPTR_STRING(node->Attribute("background-image-scale9-bottom")))
1191 ),
1192 GUINode::getRequestedColor(string(AVOID_NULLPTR_STRING(node->Attribute("background-image-effect-color-mul"))), GUIColor::GUICOLOR_EFFECT_COLOR_MUL),
1193 GUINode::getRequestedColor(string(AVOID_NULLPTR_STRING(node->Attribute("background-image-effect-color-add"))), GUIColor::GUICOLOR_EFFECT_COLOR_ADD),
1194 GUINode::createBorder(
1195 string(AVOID_NULLPTR_STRING(node->Attribute("border"))),
1196 string(AVOID_NULLPTR_STRING(node->Attribute("border-left"))),
1197 string(AVOID_NULLPTR_STRING(node->Attribute("border-top"))),
1198 string(AVOID_NULLPTR_STRING(node->Attribute("border-right"))),
1199 string(AVOID_NULLPTR_STRING(node->Attribute("border-bottom"))),
1200 string(AVOID_NULLPTR_STRING(node->Attribute("border-color"))),
1201 string(AVOID_NULLPTR_STRING(node->Attribute("border-color-left"))),
1202 string(AVOID_NULLPTR_STRING(node->Attribute("border-color-top"))),
1203 string(AVOID_NULLPTR_STRING(node->Attribute("border-color-right"))),
1204 string(AVOID_NULLPTR_STRING(node->Attribute("border-color-bottom")))
1205 ),
1206 GUINode::createPadding(
1207 string(AVOID_NULLPTR_STRING(node->Attribute("padding"))),
1208 string(AVOID_NULLPTR_STRING(node->Attribute("padding-left"))),
1209 string(AVOID_NULLPTR_STRING(node->Attribute("padding-top"))),
1210 string(AVOID_NULLPTR_STRING(node->Attribute("padding-right"))),
1211 string(AVOID_NULLPTR_STRING(node->Attribute("padding-bottom")))
1212 ),
1213 GUINode::createConditions(string(AVOID_NULLPTR_STRING(node->Attribute("show-on")))),
1214 GUINode::createConditions(string(AVOID_NULLPTR_STRING(node->Attribute("hide-on"))))
1215 );
1216 guiParentNode->addSubNode(guiTableNode);
1217 if (guiElement != nullptr && guiElementControllerInstalled == false) {
1218 guiElementController = guiElement->createController(guiTableNode);
1219 if (guiElementController != nullptr) {
1220 guiTableNode->setController(guiElementController);
1221 }
1222 guiElementControllerInstalled = true;
1223 }
1224 parseGUINode(guiTableNode, string(), node, nullptr);
1225 } else
1226 if (nodeTagName == "table-cell") {
1227 auto guiTableCellNode = new GUITableCellNode(
1228 guiParentNode->getScreenNode(),
1229 guiParentNode,
1230 string(node->Attribute("id") == nullptr?guiParentNode->getScreenNode()->allocateNodeId():node->Attribute("id")),
1231 GUINode::createFlow(string(AVOID_NULLPTR_STRING(node->Attribute("flow")))),
1232 GUIParentNode::createOverflow(string(AVOID_NULLPTR_STRING(node->Attribute("overflow-x")))),
1233 GUIParentNode::createOverflow(string(AVOID_NULLPTR_STRING(node->Attribute("overflow-y")))),
1234 GUINode::createAlignments(
1235 string(AVOID_NULLPTR_STRING(node->Attribute("horizontal-align"))),
1236 string(AVOID_NULLPTR_STRING(node->Attribute("vertical-align")))
1237 ),
1238 GUITableCellNode::createRequestedConstraints(
1239 string(AVOID_NULLPTR_STRING(node->Attribute("left"))),
1240 string(AVOID_NULLPTR_STRING(node->Attribute("top"))),
1241 string(AVOID_NULLPTR_STRING(node->Attribute("width"))),
1242 string(AVOID_NULLPTR_STRING(node->Attribute("height"))),
1243 parseFactor(guiParentNode, StringTools::trim(string(AVOID_NULLPTR_STRING(node->Attribute("factor")))))
1244 ),
1245 GUINode::getRequestedColor(string(AVOID_NULLPTR_STRING(node->Attribute("background-color"))), GUIColor::GUICOLOR_TRANSPARENT),
1246 string(AVOID_NULLPTR_STRING(node->Attribute("background-image"))),
1247 GUINode::createScale9Grid(
1248 string(AVOID_NULLPTR_STRING(node->Attribute("background-image-scale9"))),
1249 string(AVOID_NULLPTR_STRING(node->Attribute("background-image-scale9-left"))),
1250 string(AVOID_NULLPTR_STRING(node->Attribute("background-image-scale9-top"))),
1251 string(AVOID_NULLPTR_STRING(node->Attribute("background-image-scale9-right"))),
1252 string(AVOID_NULLPTR_STRING(node->Attribute("background-image-scale9-bottom")))
1253 ),
1254 GUINode::getRequestedColor(string(AVOID_NULLPTR_STRING(node->Attribute("background-image-effect-color-mul"))), GUIColor::GUICOLOR_EFFECT_COLOR_MUL),
1255 GUINode::getRequestedColor(string(AVOID_NULLPTR_STRING(node->Attribute("background-image-effect-color-add"))), GUIColor::GUICOLOR_EFFECT_COLOR_ADD),
1256 GUINode::createBorder(
1257 string(AVOID_NULLPTR_STRING(node->Attribute("border"))),
1258 string(AVOID_NULLPTR_STRING(node->Attribute("border-left"))),
1259 string(AVOID_NULLPTR_STRING(node->Attribute("border-top"))),
1260 string(AVOID_NULLPTR_STRING(node->Attribute("border-right"))),
1261 string(AVOID_NULLPTR_STRING(node->Attribute("border-bottom"))),
1262 string(AVOID_NULLPTR_STRING(node->Attribute("border-color"))),
1263 string(AVOID_NULLPTR_STRING(node->Attribute("border-color-left"))),
1264 string(AVOID_NULLPTR_STRING(node->Attribute("border-color-top"))),
1265 string(AVOID_NULLPTR_STRING(node->Attribute("border-color-right"))),
1266 string(AVOID_NULLPTR_STRING(node->Attribute("border-color-bottom")))
1267 ),
1268 GUINode::createPadding(
1269 string(AVOID_NULLPTR_STRING(node->Attribute("padding"))),
1270 string(AVOID_NULLPTR_STRING(node->Attribute("padding-left"))),
1271 string(AVOID_NULLPTR_STRING(node->Attribute("padding-top"))),
1272 string(AVOID_NULLPTR_STRING(node->Attribute("padding-right"))),
1273 string(AVOID_NULLPTR_STRING(node->Attribute("padding-bottom")))
1274 ),
1275 GUINode::createConditions(string(AVOID_NULLPTR_STRING(node->Attribute("show-on")))),
1276 GUINode::createConditions(string(AVOID_NULLPTR_STRING(node->Attribute("hide-on")))),
1277 GUILayoutNode::createAlignment(string(AVOID_NULLPTR_STRING(node->Attribute("alignment"))))
1278 );
1279 guiParentNode->addSubNode(guiTableCellNode);
1280 if (guiElement != nullptr && guiElementControllerInstalled == false) {
1281 guiElementController = guiElement->createController(guiTableCellNode);
1282 if (guiElementController != nullptr) {
1283 guiTableCellNode->setController(guiElementController);
1284 }
1285 guiElementControllerInstalled = true;
1286 }
1287 parseGUINode(guiTableCellNode, string(), node, nullptr);
1288 } else
1289 if (nodeTagName == "table-row") {
1290 auto guiTableRowNode = new GUITableRowNode(
1291 guiParentNode->getScreenNode(),
1292 guiParentNode,
1293 string(node->Attribute("id") == nullptr?guiParentNode->getScreenNode()->allocateNodeId():node->Attribute("id")),
1294 GUINode::createFlow(string(AVOID_NULLPTR_STRING(node->Attribute("flow")))),
1295 GUIParentNode::createOverflow(string(AVOID_NULLPTR_STRING(node->Attribute("overflow-x")))),
1296 GUIParentNode::createOverflow(string(AVOID_NULLPTR_STRING(node->Attribute("overflow-y")))),
1297 GUINode::createAlignments(
1298 string(AVOID_NULLPTR_STRING(node->Attribute("horizontal-align"))),
1299 string(AVOID_NULLPTR_STRING(node->Attribute("vertical-align")))
1300 ),
1301 GUITableRowNode::createRequestedConstraints(
1302 string(AVOID_NULLPTR_STRING(node->Attribute("left"))),
1303 string(AVOID_NULLPTR_STRING(node->Attribute("top"))),
1304 string(AVOID_NULLPTR_STRING(node->Attribute("width"))),
1305 string(AVOID_NULLPTR_STRING(node->Attribute("height"))),
1306 parseFactor(guiParentNode, StringTools::trim(string(AVOID_NULLPTR_STRING(node->Attribute("factor")))))
1307 ),
1308 GUINode::getRequestedColor(string(AVOID_NULLPTR_STRING(node->Attribute("background-color"))), GUIColor::GUICOLOR_TRANSPARENT),
1309 string(AVOID_NULLPTR_STRING(node->Attribute("background-image"))),
1310 GUINode::createScale9Grid(
1311 string(AVOID_NULLPTR_STRING(node->Attribute("background-image-scale9"))),
1312 string(AVOID_NULLPTR_STRING(node->Attribute("background-image-scale9-left"))),
1313 string(AVOID_NULLPTR_STRING(node->Attribute("background-image-scale9-top"))),
1314 string(AVOID_NULLPTR_STRING(node->Attribute("background-image-scale9-right"))),
1315 string(AVOID_NULLPTR_STRING(node->Attribute("background-image-scale9-bottom")))
1316 ),
1317 GUINode::getRequestedColor(string(AVOID_NULLPTR_STRING(node->Attribute("background-image-effect-color-mul"))), GUIColor::GUICOLOR_EFFECT_COLOR_MUL),
1318 GUINode::getRequestedColor(string(AVOID_NULLPTR_STRING(node->Attribute("background-image-effect-color-add"))), GUIColor::GUICOLOR_EFFECT_COLOR_ADD),
1319 GUINode::createBorder(
1320 string(AVOID_NULLPTR_STRING(node->Attribute("border"))),
1321 string(AVOID_NULLPTR_STRING(node->Attribute("border-left"))),
1322 string(AVOID_NULLPTR_STRING(node->Attribute("border-top"))),
1323 string(AVOID_NULLPTR_STRING(node->Attribute("border-right"))),
1324 string(AVOID_NULLPTR_STRING(node->Attribute("border-bottom"))),
1325 string(AVOID_NULLPTR_STRING(node->Attribute("border-color"))),
1326 string(AVOID_NULLPTR_STRING(node->Attribute("border-color-left"))),
1327 string(AVOID_NULLPTR_STRING(node->Attribute("border-color-top"))),
1328 string(AVOID_NULLPTR_STRING(node->Attribute("border-color-right"))),
1329 string(AVOID_NULLPTR_STRING(node->Attribute("border-color-bottom")))
1330 ),
1331 GUINode::createPadding(
1332 string(AVOID_NULLPTR_STRING(node->Attribute("padding"))),
1333 string(AVOID_NULLPTR_STRING(node->Attribute("padding-left"))),
1334 string(AVOID_NULLPTR_STRING(node->Attribute("padding-top"))),
1335 string(AVOID_NULLPTR_STRING(node->Attribute("padding-right"))),
1336 string(AVOID_NULLPTR_STRING(node->Attribute("padding-bottom")))
1337 ),
1338 GUINode::createConditions(string(AVOID_NULLPTR_STRING(node->Attribute("show-on")))),
1339 GUINode::createConditions(string(AVOID_NULLPTR_STRING(node->Attribute("hide-on"))))
1340 );
1341 guiParentNode->addSubNode(guiTableRowNode);
1342 if (guiElement != nullptr && guiElementControllerInstalled == false) {
1343 guiElementController = guiElement->createController(guiTableRowNode);
1344 if (guiElementController != nullptr) {
1345 guiTableRowNode->setController(guiElementController);
1346 }
1347 guiElementControllerInstalled = true;
1348 }
1349 parseGUINode(guiTableRowNode, string(), node, nullptr);
1350 } else
1351 if (nodeTagName == "input-internal") {
1352 auto guiInputInternalNode = new GUIInputInternalNode(
1353 guiParentNode->getScreenNode(),
1354 guiParentNode,
1355 string(node->Attribute("id") == nullptr?guiParentNode->getScreenNode()->allocateNodeId():node->Attribute("id")),
1356 GUINode::createFlow(string(AVOID_NULLPTR_STRING(node->Attribute("flow")))),
1357 GUINode::createAlignments(
1358 string(AVOID_NULLPTR_STRING(node->Attribute("horizontal-align"))),
1359 string(AVOID_NULLPTR_STRING(node->Attribute("vertical-align")))
1360 ),
1361 GUIParentNode::createRequestedConstraints(
1362 string(AVOID_NULLPTR_STRING(node->Attribute("left"))),
1363 string(AVOID_NULLPTR_STRING(node->Attribute("top"))),
1364 string(AVOID_NULLPTR_STRING(node->Attribute("width"))),
1365 string(AVOID_NULLPTR_STRING(node->Attribute("height"))),
1366 parseFactor(guiParentNode, StringTools::trim(string(AVOID_NULLPTR_STRING(node->Attribute("factor")))))
1367 ),
1368 GUINode::getRequestedColor(string(AVOID_NULLPTR_STRING(node->Attribute("background-color"))), GUIColor::GUICOLOR_TRANSPARENT),
1369 string(AVOID_NULLPTR_STRING(node->Attribute("background-image"))),
1370 GUINode::createScale9Grid(
1371 string(AVOID_NULLPTR_STRING(node->Attribute("background-image-scale9"))),
1372 string(AVOID_NULLPTR_STRING(node->Attribute("background-image-scale9-left"))),
1373 string(AVOID_NULLPTR_STRING(node->Attribute("background-image-scale9-top"))),
1374 string(AVOID_NULLPTR_STRING(node->Attribute("background-image-scale9-right"))),
1375 string(AVOID_NULLPTR_STRING(node->Attribute("background-image-scale9-bottom")))
1376 ),
1377 GUINode::getRequestedColor(string(AVOID_NULLPTR_STRING(node->Attribute("background-image-effect-color-mul"))), GUIColor::GUICOLOR_EFFECT_COLOR_MUL),
1378 GUINode::getRequestedColor(string(AVOID_NULLPTR_STRING(node->Attribute("background-image-effect-color-add"))), GUIColor::GUICOLOR_EFFECT_COLOR_ADD),
1379 GUINode::createBorder(
1380 string(AVOID_NULLPTR_STRING(node->Attribute("border"))),
1381 string(AVOID_NULLPTR_STRING(node->Attribute("border-left"))),
1382 string(AVOID_NULLPTR_STRING(node->Attribute("border-top"))),
1383 string(AVOID_NULLPTR_STRING(node->Attribute("border-right"))),
1384 string(AVOID_NULLPTR_STRING(node->Attribute("border-bottom"))),
1385 string(AVOID_NULLPTR_STRING(node->Attribute("border-color"))),
1386 string(AVOID_NULLPTR_STRING(node->Attribute("border-color-left"))),
1387 string(AVOID_NULLPTR_STRING(node->Attribute("border-color-top"))),
1388 string(AVOID_NULLPTR_STRING(node->Attribute("border-color-right"))),
1389 string(AVOID_NULLPTR_STRING(node->Attribute("border-color-bottom")))
1390 ),
1391 GUINode::createPadding(
1392 string(AVOID_NULLPTR_STRING(node->Attribute("padding"))),
1393 string(AVOID_NULLPTR_STRING(node->Attribute("padding-left"))),
1394 string(AVOID_NULLPTR_STRING(node->Attribute("padding-top"))),
1395 string(AVOID_NULLPTR_STRING(node->Attribute("padding-right"))),
1396 string(AVOID_NULLPTR_STRING(node->Attribute("padding-bottom")))
1397 ),
1398 GUINode::createConditions(string(AVOID_NULLPTR_STRING(node->Attribute("show-on")))),
1399 GUINode::createConditions(string(AVOID_NULLPTR_STRING(node->Attribute("hide-on")))),
1400 StringTools::trim(string(AVOID_NULLPTR_STRING(node->Attribute("font")))),
1401 string(AVOID_NULLPTR_STRING(node->Attribute("color"))),
1402 string(AVOID_NULLPTR_STRING(node->Attribute("color-disabled"))),
1403 MutableString(unescapeQuotes(string(AVOID_NULLPTR_STRING(node->Attribute("text"))))),
1404 GUIInputInternalNode::createMaxLength(string(AVOID_NULLPTR_STRING(node->Attribute("maxlength"))))
1405 );
1406 guiParentNode->addSubNode(guiInputInternalNode);
1407 if (guiElement != nullptr && guiElementControllerInstalled == false) {
1408 guiElementController = guiElement->createController(guiInputInternalNode);
1409 if (guiElementController != nullptr) {
1410 guiInputInternalNode->setController(guiElementController);
1411 }
1412 guiElementControllerInstalled = true;
1413 }
1414 parseEffects(guiInputInternalNode, node);
1415 } else
1416 if (nodeTagName == "vertical-scrollbar-internal") {
1417 auto guiVerticalScrollbarInternalNode = new GUIVerticalScrollbarInternalNode(
1418 guiParentNode->getScreenNode(),
1419 guiParentNode,
1420 string(node->Attribute("id") == nullptr?guiParentNode->getScreenNode()->allocateNodeId():node->Attribute("id")),
1421 GUINode::createFlow(string(AVOID_NULLPTR_STRING(node->Attribute("flow")))),
1422 GUINode::createAlignments(
1423 string(AVOID_NULLPTR_STRING(node->Attribute("horizontal-align"))),
1424 string(AVOID_NULLPTR_STRING(node->Attribute("vertical-align")))
1425 ),
1426 GUIParentNode::createRequestedConstraints(
1427 string(AVOID_NULLPTR_STRING(node->Attribute("left"))),
1428 string(AVOID_NULLPTR_STRING(node->Attribute("top"))),
1429 string(AVOID_NULLPTR_STRING(node->Attribute("width"))),
1430 string(AVOID_NULLPTR_STRING(node->Attribute("height"))),
1431 parseFactor(guiParentNode, StringTools::trim(string(AVOID_NULLPTR_STRING(node->Attribute("factor")))))
1432 ),
1433 GUINode::getRequestedColor(string(AVOID_NULLPTR_STRING(node->Attribute("background-color"))), GUIColor::GUICOLOR_TRANSPARENT),
1434 string(AVOID_NULLPTR_STRING(node->Attribute("background-image"))),
1435 GUINode::createScale9Grid(
1436 string(AVOID_NULLPTR_STRING(node->Attribute("background-image-scale9"))),
1437 string(AVOID_NULLPTR_STRING(node->Attribute("background-image-scale9-left"))),
1438 string(AVOID_NULLPTR_STRING(node->Attribute("background-image-scale9-top"))),
1439 string(AVOID_NULLPTR_STRING(node->Attribute("background-image-scale9-right"))),
1440 string(AVOID_NULLPTR_STRING(node->Attribute("background-image-scale9-bottom")))
1441 ),
1442 GUINode::getRequestedColor(string(AVOID_NULLPTR_STRING(node->Attribute("background-image-effect-color-mul"))), GUIColor::GUICOLOR_EFFECT_COLOR_MUL),
1443 GUINode::getRequestedColor(string(AVOID_NULLPTR_STRING(node->Attribute("background-image-effect-color-add"))), GUIColor::GUICOLOR_EFFECT_COLOR_ADD),
1444 GUINode::createBorder(
1445 string(AVOID_NULLPTR_STRING(node->Attribute("border"))),
1446 string(AVOID_NULLPTR_STRING(node->Attribute("border-left"))),
1447 string(AVOID_NULLPTR_STRING(node->Attribute("border-top"))),
1448 string(AVOID_NULLPTR_STRING(node->Attribute("border-right"))),
1449 string(AVOID_NULLPTR_STRING(node->Attribute("border-bottom"))),
1450 string(AVOID_NULLPTR_STRING(node->Attribute("border-color"))),
1451 string(AVOID_NULLPTR_STRING(node->Attribute("border-color-left"))),
1452 string(AVOID_NULLPTR_STRING(node->Attribute("border-color-top"))),
1453 string(AVOID_NULLPTR_STRING(node->Attribute("border-color-right"))),
1454 string(AVOID_NULLPTR_STRING(node->Attribute("border-color-bottom")))
1455 ),
1456 GUINode::createPadding(
1457 string(AVOID_NULLPTR_STRING(node->Attribute("padding"))),
1458 string(AVOID_NULLPTR_STRING(node->Attribute("padding-left"))),
1459 string(AVOID_NULLPTR_STRING(node->Attribute("padding-top"))),
1460 string(AVOID_NULLPTR_STRING(node->Attribute("padding-right"))),
1461 string(AVOID_NULLPTR_STRING(node->Attribute("padding-bottom")))
1462 ),
1463 GUINode::createConditions(string(AVOID_NULLPTR_STRING(node->Attribute("show-on")))),
1464 GUINode::createConditions(string(AVOID_NULLPTR_STRING(node->Attribute("hide-on")))),
1465 GUINode::getRequestedColor(string(AVOID_NULLPTR_STRING(node->Attribute("color-none"))), GUIColor::GUICOLOR_BLACK),
1466 GUINode::getRequestedColor(string(AVOID_NULLPTR_STRING(node->Attribute("color-mouseover"))), GUIColor::GUICOLOR_BLACK),
1467 GUINode::getRequestedColor(string(AVOID_NULLPTR_STRING(node->Attribute("color-dragging"))), GUIColor::GUICOLOR_BLACK)
1468 );
1469 guiParentNode->addSubNode(guiVerticalScrollbarInternalNode);
1470 if (guiElement != nullptr && guiElementControllerInstalled == false) {
1471 guiElementController = guiElement->createController(guiVerticalScrollbarInternalNode);
1472 if (guiElementController != nullptr) {
1473 guiVerticalScrollbarInternalNode->setController(guiElementController);
1474 }
1475 guiElementControllerInstalled = true;
1476 }
1477 parseEffects(guiVerticalScrollbarInternalNode, node);
1478 } else
1479 if (nodeTagName == "horizontal-scrollbar-internal") {
1480 auto guiHorizontalScrollbarInternalNode = new GUIHorizontalScrollbarInternalNode(
1481 guiParentNode->getScreenNode(),
1482 guiParentNode,
1483 string(node->Attribute("id") == nullptr?guiParentNode->getScreenNode()->allocateNodeId():node->Attribute("id")),
1484 GUINode::createFlow(string(AVOID_NULLPTR_STRING(node->Attribute("flow")))),
1485 GUINode::createAlignments(
1486 string(AVOID_NULLPTR_STRING(node->Attribute("horizontal-align"))),
1487 string(AVOID_NULLPTR_STRING(node->Attribute("vertical-align")))
1488 ),
1489 GUIParentNode::createRequestedConstraints(
1490 string(AVOID_NULLPTR_STRING(node->Attribute("left"))),
1491 string(AVOID_NULLPTR_STRING(node->Attribute("top"))),
1492 string(AVOID_NULLPTR_STRING(node->Attribute("width"))),
1493 string(AVOID_NULLPTR_STRING(node->Attribute("height"))),
1494 parseFactor(guiParentNode, StringTools::trim(string(AVOID_NULLPTR_STRING(node->Attribute("factor")))))
1495 ),
1496 GUINode::getRequestedColor(string(AVOID_NULLPTR_STRING(node->Attribute("background-color"))), GUIColor::GUICOLOR_TRANSPARENT),
1497 string(AVOID_NULLPTR_STRING(node->Attribute("background-image"))),
1498 GUINode::createScale9Grid(
1499 string(AVOID_NULLPTR_STRING(node->Attribute("background-image-scale9"))),
1500 string(AVOID_NULLPTR_STRING(node->Attribute("background-image-scale9-left"))),
1501 string(AVOID_NULLPTR_STRING(node->Attribute("background-image-scale9-top"))),
1502 string(AVOID_NULLPTR_STRING(node->Attribute("background-image-scale9-right"))),
1503 string(AVOID_NULLPTR_STRING(node->Attribute("background-image-scale9-bottom")))
1504 ),
1505 GUINode::getRequestedColor(string(AVOID_NULLPTR_STRING(node->Attribute("background-image-effect-color-mul"))), GUIColor::GUICOLOR_EFFECT_COLOR_MUL),
1506 GUINode::getRequestedColor(string(AVOID_NULLPTR_STRING(node->Attribute("background-image-effect-color-add"))), GUIColor::GUICOLOR_EFFECT_COLOR_ADD),
1507 GUINode::createBorder(
1508 string(AVOID_NULLPTR_STRING(node->Attribute("border"))),
1509 string(AVOID_NULLPTR_STRING(node->Attribute("border-left"))),
1510 string(AVOID_NULLPTR_STRING(node->Attribute("border-top"))),
1511 string(AVOID_NULLPTR_STRING(node->Attribute("border-right"))),
1512 string(AVOID_NULLPTR_STRING(node->Attribute("border-bottom"))),
1513 string(AVOID_NULLPTR_STRING(node->Attribute("border-color"))),
1514 string(AVOID_NULLPTR_STRING(node->Attribute("border-color-left"))),
1515 string(AVOID_NULLPTR_STRING(node->Attribute("border-color-top"))),
1516 string(AVOID_NULLPTR_STRING(node->Attribute("border-color-right"))),
1517 string(AVOID_NULLPTR_STRING(node->Attribute("border-color-bottom")))
1518 ),
1519 GUINode::createPadding(
1520 string(AVOID_NULLPTR_STRING(node->Attribute("padding"))),
1521 string(AVOID_NULLPTR_STRING(node->Attribute("padding-left"))),
1522 string(AVOID_NULLPTR_STRING(node->Attribute("padding-top"))),
1523 string(AVOID_NULLPTR_STRING(node->Attribute("padding-right"))),
1524 string(AVOID_NULLPTR_STRING(node->Attribute("padding-bottom")))
1525 ),
1526 GUINode::createConditions(string(AVOID_NULLPTR_STRING(node->Attribute("show-on")))),
1527 GUINode::createConditions(string(AVOID_NULLPTR_STRING(node->Attribute("hide-on")))),
1528 GUINode::getRequestedColor(string(AVOID_NULLPTR_STRING(node->Attribute("color-none"))), GUIColor::GUICOLOR_BLACK),
1529 GUINode::getRequestedColor(string(AVOID_NULLPTR_STRING(node->Attribute("color-mouseover"))), GUIColor::GUICOLOR_BLACK),
1530 GUINode::getRequestedColor(string(AVOID_NULLPTR_STRING(node->Attribute("color-dragging"))), GUIColor::GUICOLOR_BLACK)
1531 );
1532 guiParentNode->addSubNode(guiHorizontalScrollbarInternalNode);
1533 if (guiElement != nullptr && guiElementControllerInstalled == false) {
1534 guiElementController = guiElement->createController(guiHorizontalScrollbarInternalNode);
1535 if (guiElementController != nullptr) {
1536 guiHorizontalScrollbarInternalNode->setController(guiElementController);
1537 }
1538 guiElementControllerInstalled = true;
1539 }
1540 parseEffects(guiHorizontalScrollbarInternalNode, node);
1541 } else
1542 if (nodeTagName == "inner-xml") {
1543 unordered_map<string, string> attributes;
1545 guiParentNode,
1546 parentElementId,
1547 node,
1548 node->GetText(),
1549 attributes,
1550 nullptr
1551 );
1552 } else
1553 if (nodeTagName == "template") {
1554 auto src = string(AVOID_NULLPTR_STRING(node->Attribute("src")));
1555 unordered_map<string, string> attributes;
1557 guiParentNode,
1558 parentElementId,
1559 node,
1560 FileSystem::getInstance()->getContentAsString(
1561 guiParentNode->getScreenNode()->getApplicationRootPathName() + "/" +
1562 FileSystem::getInstance()->getPathName(src),
1563 FileSystem::getInstance()->getFileName(src)
1564 ),
1565 attributes,
1566 nullptr
1567 );
1568 } else {
1569 auto nodeTagNameString = nodeTagName;
1570 const auto guiElementIt = elements->find(nodeTagNameString);
1571 if (guiElementIt == elements->end()) {
1572 throw GUIParserException(
1573 "Unknown element '" +
1574 (nodeTagNameString) +
1575 "'"
1576 );
1577 }
1579 guiParentNode,
1580 parentElementId,
1581 node,
1582 guiElementIt->second->getTemplate(
1583 guiParentNode->getScreenNode()->getApplicationRootPathName(),
1584 guiParentNode->getScreenNode()->getApplicationSubPathName(),
1585 AVOID_NULLPTR_STRING(node->Attribute("template"))
1586 ),
1587 guiElementIt->second->getAttributes(guiParentNode->screenNode),
1588 guiElementIt->second
1589 );
1590 }
1591 }
1592 }
1593 if (guiElementController != nullptr) {
1594 guiElementController->initialize();
1595 }
1596}
1597
1598void GUIParser::parseTemplate(GUIParentNode* parentNode, const string& parentElementId, TiXmlElement* node, const string& templateXML, const unordered_map<string, string>& attributes, GUIElement* guiElement) {
1599 auto newGuiElementTemplateXML = templateXML;
1600
1601 //
1602 auto themeProperties = parentNode->getScreenNode()->getApplicationSubPathName() == "project"?projectThemeProperties:engineThemeProperties;
1603
1604 // replace with theme properties
1605 for (auto& themePropertyIt: themeProperties->getProperties()) {
1606 newGuiElementTemplateXML = StringTools::replace(newGuiElementTemplateXML, "{$" + themePropertyIt.first + "}", escapeQuotes(themePropertyIt.second));
1607 }
1608
1609 // replace attributes given
1610 for (TiXmlAttribute* attribute = node->FirstAttribute(); attribute != nullptr; attribute = attribute->Next()) {
1611 auto attributeKey = string(attribute->Name());
1612 auto attributeValue = string(attribute->Value());
1613 newGuiElementTemplateXML = StringTools::replace(newGuiElementTemplateXML, "{$" + attributeKey + "}", escapeQuotes(attributeValue));
1614 }
1615
1616 // replace attributes from element
1617 for (auto newGuiElementAttributesIt : attributes) {
1618 auto guiElementAttributeValue = escapeQuotes(newGuiElementAttributesIt.second);
1619 newGuiElementTemplateXML = StringTools::replace(newGuiElementTemplateXML, "{$" + newGuiElementAttributesIt.first + "}", guiElementAttributeValue);
1620 }
1621
1622 // replace remaining unset parameters with empty spaces
1623 newGuiElementTemplateXML = StringTools::regexReplace(newGuiElementTemplateXML, "\\{\\$[a-zA-Z\\-_0-9]{1,}\\}", "");
1624
1625 // replace inner XML
1626 newGuiElementTemplateXML = StringTools::replace(newGuiElementTemplateXML, "{__InnerXML__}", getInnerXml(node));
1627
1628 // add root tag
1629 if (guiElement != nullptr) {
1630 newGuiElementTemplateXML = "<" + guiElement->getName() + ">\n" + newGuiElementTemplateXML + "</" + guiElement->getName() + ">\n";
1631 } else {
1632 newGuiElementTemplateXML = "<template>\n" + newGuiElementTemplateXML + "</template>\n";
1633 }
1634
1635 // parse
1636 TiXmlDocument newGuiElementDocument;
1637 newGuiElementDocument.Parse(newGuiElementTemplateXML.c_str());
1638 if (newGuiElementDocument.Error() == true) {
1639 string message = "GUIParser::parseTemplate():: Could not parse XML. Error='" + string(newGuiElementDocument.ErrorDesc()) + ":\n\n" + newGuiElementTemplateXML;
1640 Console::println(message);
1641 throw GUIParserException(message);
1642 }
1643 parseGUINode(parentNode, parentElementId, newGuiElementDocument.RootElement(), guiElement);
1644}
1645
1646void GUIParser::parseInnerXML(GUIParentNode* parentNode, const string& parentElementId, TiXmlElement* node, const string& innerXML, const unordered_map<string, string>& attributes, GUIElement* guiElement) {
1647 auto newInnerXML = innerXML;
1648 auto newParentElementId = parentElementId;
1649
1650 //
1651 auto themeProperties = parentNode->getScreenNode()->getApplicationSubPathName() == "project"?projectThemeProperties:engineThemeProperties;
1652
1653 // replace with theme properties
1654 for (auto& themePropertyIt: themeProperties->getProperties()) {
1655 newInnerXML = StringTools::replace(newInnerXML, "{$" + themePropertyIt.first + "}", escapeQuotes(themePropertyIt.second));
1656 }
1657
1658 // replace attributes given
1659 for (TiXmlAttribute* attribute = node->FirstAttribute(); attribute != nullptr; attribute = attribute->Next()) {
1660 auto attributeKey = string(attribute->Name());
1661 auto attributeValue = string(attribute->Value());
1662 newInnerXML = StringTools::replace(newInnerXML, "{$" + attributeKey + "}", escapeQuotes(attributeValue));
1663 // also store parent-id as such if given
1664 if (attributeKey == "parent-id") newParentElementId = attributeValue;
1665 }
1666
1667 // replace attributes from element
1668 for (auto newGuiElementAttributesIt: attributes) {
1669 auto guiElementAttributeValue = escapeQuotes(newGuiElementAttributesIt.second);
1670 newInnerXML = StringTools::replace(newInnerXML, "{$" + newGuiElementAttributesIt.first + "}", guiElementAttributeValue);
1671 }
1672
1673 // replace remaining unset parameters with empty spaces
1674 newInnerXML = StringTools::regexReplace(newInnerXML, "\\{\\$[a-zA-Z\\-_0-9]{1,}\\}", "");
1675
1676 // replace inner XML
1677 newInnerXML = StringTools::replace(newInnerXML, "{__InnerXML__}", getInnerXml(node));
1678
1679 // add root tag
1680 newInnerXML = "<inner-xml>\n" + newInnerXML + "</inner-xml>\n";
1681
1682 // parse
1683 TiXmlDocument newGuiElementDocument;
1684 newGuiElementDocument.Parse(newInnerXML.c_str());
1685 if (newGuiElementDocument.Error() == true) {
1686 auto message = "GUIParser::parseInnerXML():: Could not parse XML. Error='" + string(newGuiElementDocument.ErrorDesc()) + ":\n\n" + newInnerXML;
1687 throw GUIParserException(message);
1688 }
1689 parseGUINode(parentNode, newParentElementId, newGuiElementDocument.RootElement(), guiElement);
1690}
1691
1692int GUIParser::parseFactor(GUIParentNode* guiParentNode, const string& factor) {
1693 if (factor.empty() == true) {
1694 return 1;
1695 } else
1696 if (factor == "{__TreeDepth__}") {
1697 GUIElementNode* parentElementNode = nullptr;
1698 auto _guiParentNode = guiParentNode;
1699 while (_guiParentNode != nullptr) {
1700 parentElementNode = dynamic_cast<GUIElementNode*>(_guiParentNode);
1701 if (parentElementNode != nullptr) break;
1702 _guiParentNode = _guiParentNode->getParentNode();
1703 }
1704 auto childIdx = 0;
1705 while (parentElementNode != nullptr && parentElementNode->getParentElementNodeId().empty() == false) {
1706 parentElementNode = dynamic_cast<GUIElementNode*>(guiParentNode->getScreenNode()->getNodeById(parentElementNode->getParentElementNodeId()));
1707 if (parentElementNode != nullptr) {
1708 childIdx++;
1709 }
1710 }
1711 return childIdx;
1712 } else {
1713 return Integer::parse(factor);
1714 }
1715}
1716
1717const vector<TiXmlElement*> GUIParser::getChildrenByTagName(TiXmlElement* parent, const char* name)
1718{
1719 vector<TiXmlElement*> elementList;
1720 for (auto *child = parent->FirstChildElement(name); child != nullptr; child = child->NextSiblingElement(name)) {
1721 elementList.push_back(child);
1722 }
1723 return elementList;
1724}
1725
1727{
1728 std::stringstream ss;
1729 for (auto *childNode = node->FirstChildElement(); childNode != nullptr; childNode = childNode->NextSiblingElement()) {
1730 ss << (*childNode);
1731 }
1732 return ss.str();
1733}
1734
1735const string GUIParser::unescapeQuotes(const string& str)
1736{
1737 string result;
1738 result = StringTools::replace(str, "&quot;", "\"");
1739 result = StringTools::replace(result, "&#39;", "'");
1740 return result;
1741}
1742
1743const string GUIParser::escapeQuotes(const string& str)
1744{
1745 string result;
1746 result = StringTools::replace(str, "\"", "&quot;");
1747 result = StringTools::replace(result, "'", "&#39;");
1748 return result;
1749}
1750
1752{
1753 if (elements->find(guiElement->getName()) != elements->end()) {
1754 throw GUIParserException(
1755 "Element with given name '" +
1756 (guiElement->getName()) +
1757 "' already exists"
1758 );
1759 }
1760 elements->emplace(guiElement->getName(), guiElement);
1761}
1762
1764{
1765 try {
1766 engineThemeProperties->load("./resources/engine/gui/themes", "theme_default.properties");
1767 } catch (Exception& exception) {
1768 Console::print(string("GUIParser::initialize(): An error occurred: "));
1769 Console::println(string(exception.what()));
1770 }
1771 try {
1772 projectThemeProperties->load("./resources/project/gui/themes", "theme_default.properties");
1773 } catch (Exception& exception) {
1774 Console::print(string("GUIParser::initialize(): An error occurred: "));
1775 Console::println(string(exception.what()));
1776 }
1777 try {
1778 GUIElement* guiElement = new GUICheckbox();
1779 addElement(guiElement);
1780 } catch (Exception& exception) {
1781 Console::print(string("GUIParser::initialize(): An error occurred: "));
1782 Console::println(string(exception.what()));
1783 }
1784 try {
1785 GUIElement* guiElement = new GUIRadioButton();
1786 addElement(guiElement);
1787 } catch (Exception& exception) {
1788 Console::print(string("GUIParser::initialize(): An error occurred: "));
1789 Console::println(string(exception.what()));
1790 }
1791 try {
1792 GUIElement* guiElement = new GUISelectBox();
1793 addElement(guiElement);
1794 } catch (Exception& exception) {
1795 Console::print(string("GUIParser::initialize(): An error occurred: "));
1796 Console::println(string(exception.what()));
1797 }
1798 try {
1799 GUIElement* guiElement = new GUISelectBoxOption();
1800 addElement(guiElement);
1801 } catch (Exception& exception) {
1802 Console::print(string("GUIParser::initialize(): An error occurred: "));
1803 Console::println(string(exception.what()));
1804 }
1805 try {
1806 GUIElement* guiElement = new GUISelectBoxParentOption();
1807 addElement(guiElement);
1808 } catch (Exception& exception) {
1809 Console::print(string("GUIParser::initialize(): An error occurred: "));
1810 Console::println(string(exception.what()));
1811 }
1812 try {
1813 GUIElement* guiElement = new GUIDropDown();
1814 addElement(guiElement);
1815 } catch (Exception& exception) {
1816 Console::print(string("GUIParser::initialize(): An error occurred: "));
1817 Console::println(string(exception.what()));
1818 }
1819 try {
1820 GUIElement* guiElement = new GUIDropDownOption();
1821 addElement(guiElement);
1822 } catch (Exception& exception) {
1823 Console::print(string("GUIParser::initialize(): An error occurred: "));
1824 Console::println(string(exception.what()));
1825 }
1826 try {
1827 GUIElement* guiElement = new GUITabs();
1828 addElement(guiElement);
1829 } catch (Exception& exception) {
1830 Console::print(string("GUIParser::initialize(): An error occurred: "));
1831 Console::println(string(exception.what()));
1832 }
1833 try {
1834 GUIElement* guiElement = new GUITabsHeader();
1835 addElement(guiElement);
1836 } catch (Exception& exception) {
1837 Console::print(string("GUIParser::initialize(): An error occurred: "));
1838 Console::println(string(exception.what()));
1839 }
1840 try {
1841 GUIElement* guiElement = new GUITab();
1842 addElement(guiElement);
1843 } catch (Exception& exception) {
1844 Console::print(string("GUIParser::initialize(): An error occurred: "));
1845 Console::println(string(exception.what()));
1846 }
1847 try {
1848 GUIElement* guiElement = new GUITabsContent();
1849 addElement(guiElement);
1850 } catch (Exception& exception) {
1851 Console::print(string("GUIParser::initialize(): An error occurred: "));
1852 Console::println(string(exception.what()));
1853 }
1854 try {
1855 GUIElement* guiElement = new GUITabContent();
1856 addElement(guiElement);
1857 } catch (Exception& exception) {
1858 Console::print(string("GUIParser::initialize(): An error occurred: "));
1859 Console::println(string(exception.what()));
1860 }
1861 try {
1862 GUIElement* guiElement = new GUIButton();
1863 addElement(guiElement);
1864 } catch (Exception& exception) {
1865 Console::print(string("GUIParser::initialize(): An error occurred: "));
1866 Console::println(string(exception.what()));
1867 }
1868 try {
1869 GUIElement* guiElement = new GUIInput();
1870 addElement(guiElement);
1871 } catch (Exception& exception) {
1872 Console::print(string("GUIParser::initialize(): An error occurred: "));
1873 Console::println(string(exception.what()));
1874 }
1875 try {
1876 GUIElement* guiElement = new GUIScrollArea();
1877 addElement(guiElement);
1878 } catch (Exception& exception) {
1879 Console::print(string("GUIParser::initialize(): An error occurred: "));
1880 Console::println(string(exception.what()));
1881 }
1882 try {
1883 GUIElement* guiElement = new GUISliderH();
1884 addElement(guiElement);
1885 } catch (Exception& exception) {
1886 Console::print(string("GUIParser::initialize(): An error occurred: "));
1887 Console::println(string(exception.what()));
1888 }
1889 try {
1890 GUIElement* guiElement = new GUISliderV();
1891 addElement(guiElement);
1892 } catch (Exception& exception) {
1893 Console::print(string("GUIParser::initialize(): An error occurred: "));
1894 Console::println(string(exception.what()));
1895 }
1896 try {
1897 GUIElement* guiElement = new GUIKnob();
1898 addElement(guiElement);
1899 } catch (Exception& exception) {
1900 Console::print(string("GUIParser::initialize(): An error occurred: "));
1901 Console::println(string(exception.what()));
1902 }
1903 try {
1904 GUIElement* guiElement = new GUIImageButton();
1905 addElement(guiElement);
1906 } catch (Exception& exception) {
1907 Console::print(string("GUIParser::initialize(): An error occurred: "));
1908 Console::println(string(exception.what()));
1909 }
1910 try {
1911 GUIElement* guiElement = new GUIProgressBar();
1912 addElement(guiElement);
1913 } catch (Exception& exception) {
1914 Console::print(string("GUIParser::initialize(): An error occurred: "));
1915 Console::println(string(exception.what()));
1916 }
1917 try {
1918 GUIElement* guiElement = new GUIMenuHeader();
1919 addElement(guiElement);
1920 } catch (Exception& exception) {
1921 Console::print(string("GUIParser::initialize(): An error occurred: "));
1922 Console::println(string(exception.what()));
1923 }
1924 try {
1925 GUIElement* guiElement = new GUIMenuHeaderItem();
1926 addElement(guiElement);
1927 } catch (Exception& exception) {
1928 Console::print(string("GUIParser::initialize(): An error occurred: "));
1929 Console::println(string(exception.what()));
1930 }
1931 try {
1932 GUIElement* guiElement = new GUIMenuItem();
1933 addElement(guiElement);
1934 } catch (Exception& exception) {
1935 Console::print(string("GUIParser::initialize(): An error occurred: "));
1936 Console::println(string(exception.what()));
1937 }
1938 try {
1939 GUIElement* guiElement = new GUIMenuSeparator();
1940 addElement(guiElement);
1941 } catch (Exception& exception) {
1942 Console::print(string("GUIParser::initialize(): An error occurred: "));
1943 Console::println(string(exception.what()));
1944 }
1945 try {
1946 GUIElement* guiElement = new GUIContextMenu();
1947 addElement(guiElement);
1948 } catch (Exception& exception) {
1949 Console::print(string("GUIParser::initialize(): An error occurred: "));
1950 Console::println(string(exception.what()));
1951 }
1952 try {
1953 GUIElement* guiElement = new GUIContextMenuItem();
1954 addElement(guiElement);
1955 } catch (Exception& exception) {
1956 Console::print(string("GUIParser::initialize(): An error occurred: "));
1957 Console::println(string(exception.what()));
1958 }
1959 try {
1960 GUIElement* guiElement = new GUISelectorH();
1961 addElement(guiElement);
1962 } catch (Exception& exception) {
1963 Console::print(string("GUIParser::initialize(): An error occurred: "));
1964 Console::println(string(exception.what()));
1965 }
1966 try {
1967 GUIElement* guiElement = new GUISelectorHOption();
1968 addElement(guiElement);
1969 } catch (Exception& exception) {
1970 Console::print(string("GUIParser::initialize(): An error occurred: "));
1971 Console::println(string(exception.what()));
1972 }
1973}
1974
1976 for (auto& elementIt: *elements) {
1977 delete elementIt.second;
1978 }
1979 elements->clear();
1980 delete elements;
1981}
1982
1983void GUIParser::loadProjectThemeProperties(const string& pathName) {
1984 try {
1985 projectThemeProperties->load(pathName + "/resources/project/gui/themes", "theme_default.properties");
1986 } catch (Exception& exception) {
1987 Console::print(string("GUIParser::loadProjectThemeProperties(): An error occurred: "));
1988 Console::println(string(exception.what()));
1989 }
1990}
#define AVOID_NULLPTR_STRING(arg)
Definition: GUIParser.cpp:154
GUI parser.
Definition: GUIParser.h:39
static void parseEffects(GUINode *guiNode, TiXmlElement *xmlParentNode)
Parse GUI effect.
Definition: GUIParser.cpp:352
static const string unescapeQuotes(const string &str)
Unescape quotes.
Definition: GUIParser.cpp:1735
static const string getInnerXml(TiXmlElement *node)
Get inner XML.
Definition: GUIParser.cpp:1726
static void initialize()
Initialize GUI elements.
Definition: GUIParser.cpp:1763
static STATIC_DLL_IMPEXT map< string, GUIElement * > * elements
Definition: GUIParser.h:42
static STATIC_DLL_IMPEXT Properties * projectThemeProperties
Definition: GUIParser.h:44
static const string escapeQuotes(const string &str)
Escape quotes.
Definition: GUIParser.cpp:1743
static void addElement(GUIElement *guiElement)
Add GUI element.
Definition: GUIParser.cpp:1751
static int parseFactor(GUIParentNode *guiParentNode, const string &factor)
Parse factor.
Definition: GUIParser.cpp:1692
static void parseTemplate(GUIParentNode *guiParentNode, const string &parentElementId, TiXmlElement *node, const string &_template, const unordered_map< string, string > &attributes, GUIElement *guiElement)
Parse template.
Definition: GUIParser.cpp:1598
static void parseGUINode(GUIParentNode *guiParentNode, const string &parentElementId, TiXmlElement *xmlParentNode, GUIElement *guiElement)
Parse GUI node.
Definition: GUIParser.cpp:367
static void dispose()
Dispose GUI elements.
Definition: GUIParser.cpp:1975
static GUIScreenNode * parse(const string &pathName, const string &fileName, const unordered_map< string, string > &parameters=unordered_map< string, string >())
Parses a GUI XML file.
Definition: GUIParser.cpp:160
static void parseInnerXML(GUIParentNode *guiParentNode, const string &parentElementId, TiXmlElement *node, const string &_template, const unordered_map< string, string > &attributes, GUIElement *guiElement)
Parse inner XML.
Definition: GUIParser.cpp:1646
static void loadProjectThemeProperties(const string &pathName)
Load project theme properties.
Definition: GUIParser.cpp:1983
static STATIC_DLL_IMPEXT Properties * engineThemeProperties
Definition: GUIParser.h:43
static const vector< TiXmlElement * > getChildrenByTagName(TiXmlElement *parent, const char *name)
Returns immediate children tags.
Definition: GUIParser.cpp:1717
static void parseEffect(GUINode *guiNode, const string &effectPrefix, bool requiresCondition, TiXmlElement *node)
Parse GUI effect.
Definition: GUIParser.cpp:301
GUI effect base class.
Definition: GUIEffect.h:23
void setAction(Action *action)
Set action to be performed on effect end.
Definition: GUIEffect.h:145
GUI button element.
Definition: GUIButton.h:30
GUI check box element.
Definition: GUICheckbox.h:28
GUI context menu item element.
GUI context menu element.
GUI drop down option element.
GUI drop down element.
Definition: GUIDropDown.h:28
GUI element base class.
Definition: GUIElement.h:24
virtual GUINodeController * createController(GUINode *node)=0
Create controller which is attached to this node.
virtual const string & getName()=0
GUI image button element.
GUI input element.
Definition: GUIInput.h:28
GUI knob element.
Definition: GUIKnob.h:29
GUI menu header item element.
GUI menu header element.
Definition: GUIMenuHeader.h:28
GUI menu item element.
Definition: GUIMenuItem.h:28
GUI menu separator element.
GUI radio button element.
GUI scroll area element.
Definition: GUIScrollArea.h:28
GUI select box option element.
GUI select box element.
Definition: GUISelectBox.h:29
GUI selector horizontal option element.
GUI selector horizontal element.
Definition: GUISelectorH.h:28
GUI horizontal slider element.
Definition: GUISliderH.h:30
GUI vertical slider element.
Definition: GUISliderV.h:29
GUI tab content element.
Definition: GUITabContent.h:28
GUI tab element.
Definition: GUITab.h:28
GUI tabs content element.
GUI tabs header element.
Definition: GUITabsHeader.h:28
GUI tabs element.
Definition: GUITabs.h:28
GUI node controller base class.
virtual void initialize()=0
Initialize controller after element has been created.
GUI node base class.
Definition: GUINode.h:63
void addEffect(const string &id, GUIEffect *effect)
Add effect, effect already registered with the is will be removed.
Definition: GUINode.cpp:1344
GUIScreenNode * screenNode
Definition: GUINode.h:146
void setBackgroundImage(const string &backgroundImage)
Set background image.
Definition: GUINode.cpp:1332
GUIScreenNode * getScreenNode()
Definition: GUINode.h:315
GUIParentNode * getParentNode()
Definition: GUINode.h:322
GUI panel node TODO: remove me!
Definition: GUIPanelNode.h:39
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.
void setConditionsMet() override
Set conditions met for this node and its subnodes.
void addSubNode(GUINode *node)
Add sub node.
GUI screen node that represents a screen that can be rendered via GUI system.
Definition: GUIScreenNode.h:57
GUINode * getNodeById(const string &nodeId)
Get GUI node by id.
const string allocateNodeId()
Allocate node id.
const string & getApplicationSubPathName()
const string & getApplicationRootPathName()
File system singleton class.
Definition: FileSystem.h:14
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
Properties class, which helps out with storeing or loading key value pairs from/to property files.
Definition: Properties.h:23
void load(const string &pathName, const string &fileName, FileSystemInterface *fileSystem=nullptr)
Load property file.
Definition: Properties.cpp:26
String tools class.
Definition: StringTools.h:20
An attribute is a name-value pair.
Definition: tinyxml.h:734
const TiXmlAttribute * Next() const
Get the next sibling attribute in the DOM. Returns null at end.
Definition: tinyxml.cpp:1138
Always the top level node.
Definition: tinyxml.h:1317
virtual const char * Parse(const char *p, TiXmlParsingData *data=0, TiXmlEncoding encoding=TIXML_DEFAULT_ENCODING)
Parse the given null terminated block of xml data.
const TiXmlElement * RootElement() const
Get the root element – the only top level element – of the document.
Definition: tinyxml.h:1371
const char * ErrorDesc() const
Contains a textual (english) description of the error if one occurs.
Definition: tinyxml.h:1382
bool Error() const
If an error occurs, Error will be set to true.
Definition: tinyxml.h:1379
The element is a container class.
Definition: tinyxml.h:886
const char * Attribute(const char *name) const
Given an attribute name, Attribute() returns the value for the attribute of that name,...
Definition: tinyxml.cpp:564
const TiXmlAttribute * FirstAttribute() const
Access the first attribute in this element.
Definition: tinyxml.h:1021
const TiXmlElement * NextSiblingElement() const
Convenience function to get through elements.
Definition: tinyxml.cpp:471
const char * Value() const
The meaning of 'value' changes for the specific type of TiXmlNode.
Definition: tinyxml.h:457
const TiXmlElement * FirstChildElement() const
Convenience function to get through elements.
Definition: tinyxml.cpp:441
std::exception Exception
Exception base class.
Definition: Exception.h:19
Action Interface.
Definition: Action.h:12