4#include <unordered_map>
80using std::unordered_map;
154#define AVOID_NULLPTR_STRING(arg) (arg == nullptr?"":arg)
156map<string, GUIElement*>* GUIParser::elements =
new map<string, GUIElement*>();
160GUIScreenNode* GUIParser::parse(
const string& pathName,
const string& fileName,
const unordered_map<string, string>& parameters)
162 return parse(FileSystem::getInstance()->getContentAsString(pathName, fileName), parameters, pathName, fileName);
167 auto applicationRootPath = Tools::getApplicationRootPathName(pathName);
168 auto applicationSubPathName = Tools::getApplicationSubPathName(pathName);
173 for (
auto& parameterIt: parameters) {
174 newXML = StringTools::replace(newXML,
"{$" + parameterIt.first +
"}",
escapeQuotes(parameterIt.second));
177 for (
auto& themePropertyIt: themeProperties->getProperties()) {
178 newXML = StringTools::replace(newXML,
"{$" + themePropertyIt.first +
"}",
escapeQuotes(themePropertyIt.second));
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);
191 if (
string(xmlRoot->
Value()) !=
string(
"screen")) {
197 (pathName.empty() ==
false?pathName +
"/":
"") + fileName,
198 applicationRootPath.empty() ==
true?
".":FileSystem::getInstance()->getCanonicalPath(applicationRootPath,
""),
199 applicationSubPathName,
204 GUINode::createAlignments(
208 GUINode::createRequestedConstraints(
217 GUINode::createScale9Grid(
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(
238 GUINode::createPadding(
245 GUIScreenNode::createSizeConstraints(
259 parseGUINode(guiScreenNode,
string(), xmlRoot,
nullptr);
263 vector<GUINode*> childControllerNodes;
265 for (
auto node: childControllerNodes) {
266 node->getController()->onSubTreeChange();
270 return guiScreenNode;
275 string xml = FileSystem::getInstance()->getContentAsString(pathName, fileName);
276 parse(parentNode, xml);
286 for (
auto& themePropertyIt: themeProperties->getProperties()) {
287 newXML = StringTools::replace(newXML,
"{$" + themePropertyIt.first +
"}",
escapeQuotes(themePropertyIt.second));
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);
304 if (type ==
"color") {
313 static_cast<GUIColorEffect*
>(effect)->setYoyo(node->
Attribute(
"yoyo") ==
nullptr?
false:StringTools::toLowerCase(StringTools::trim(node->
Attribute(
"yoyo"))) ==
"true");
319 if (type ==
"position") {
335 if (effect !=
nullptr && action.empty() ==
false) {
336 class EffectAction:
public virtual Action
339 EffectAction(
GUIScreenNode* guiScreenNode,
const string& expression): guiScreenNode(guiScreenNode), expression(expression) {
341 void performAction()
override {
342 GUIElementNode::executeExpression(guiScreenNode, expression);
354 string nodeTagName = string(node->Value());
355 if (nodeTagName ==
"effect-in") {
356 parseEffect(guiNode,
"tdme.xmleffect.in",
true, node);
358 if (nodeTagName ==
"effect-out") {
359 parseEffect(guiNode,
"tdme.xmleffect.out",
true, node);
361 if (nodeTagName ==
"effect-default") {
362 parseEffect(guiNode,
"tdme.xmleffect.default",
false, node);
371 auto guiElementControllerInstalled =
false;
375 string nodeTagName = string(node->Value());
376 if (nodeTagName ==
"effect-in") {
377 parseEffect(guiParentNode,
"tdme.xmleffect.in",
true, node);
379 if (nodeTagName ==
"effect-out") {
380 parseEffect(guiParentNode,
"tdme.xmleffect.out",
true, node);
382 if (nodeTagName ==
"effect-default") {
383 parseEffect(guiParentNode,
"tdme.xmleffect.default",
false, node);
385 if (nodeTagName ==
"panel") {
393 GUINode::createAlignments(
397 GUIParentNode::createRequestedConstraints(
404 GUINode::getRequestedColor(
string(
AVOID_NULLPTR_STRING(node->Attribute(
"background-color"))),
GUIColor(themeProperties->get(
"color.panel",
"#F0F0F0"))),
406 GUINode::createScale9Grid(
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(
427 GUINode::createPadding(
439 if (guiElement !=
nullptr && guiElementControllerInstalled ==
false) {
441 if (guiElementController !=
nullptr) {
442 guiPanelNode->setController(guiElementController);
444 guiElementControllerInstalled =
true;
448 if (nodeTagName ==
"layer") {
456 GUIElementNode::createAlignments(
460 GUIParentNode::createRequestedConstraints(
467 GUINode::getRequestedColor(
string(
AVOID_NULLPTR_STRING(node->Attribute(
"background-color"))), GUIColor::GUICOLOR_TRANSPARENT),
469 GUINode::createScale9Grid(
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(
490 GUINode::createPadding(
501 if (guiElement !=
nullptr && guiElementControllerInstalled ==
false) {
503 if (guiElementController !=
nullptr) {
504 guiLayerNode->setController(guiElementController);
506 guiElementControllerInstalled =
true;
510 if (nodeTagName ==
"layout") {
518 GUINode::createAlignments(
522 GUIParentNode::createRequestedConstraints(
529 GUINode::getRequestedColor(
string(
AVOID_NULLPTR_STRING(node->Attribute(
"background-color"))), GUIColor::GUICOLOR_TRANSPARENT),
531 GUINode::createScale9Grid(
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(
552 GUINode::createPadding(
564 if (guiElement !=
nullptr && guiElementControllerInstalled ==
false) {
566 if (guiElementController !=
nullptr) {
567 guiLayoutNode->setController(guiElementController);
569 guiElementControllerInstalled =
true;
573 if (nodeTagName ==
"space") {
579 GUINode::createAlignments(
583 GUIParentNode::createRequestedConstraints(
590 GUINode::getRequestedColor(
string(
AVOID_NULLPTR_STRING(node->Attribute(
"background-color"))), GUIColor::GUICOLOR_TRANSPARENT),
592 GUINode::createScale9Grid(
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(
613 GUINode::createPadding(
624 if (guiElement !=
nullptr && guiElementControllerInstalled ==
false) {
626 if (guiElementController !=
nullptr) {
627 guiSpaceNode->setController(guiElementController);
629 guiElementControllerInstalled =
true;
633 if (nodeTagName ==
"element") {
641 GUIElementNode::createAlignments(
645 GUIParentNode::createRequestedConstraints(
652 GUINode::getRequestedColor(
string(
AVOID_NULLPTR_STRING(node->Attribute(
"background-color"))), GUIColor::GUICOLOR_TRANSPARENT),
654 GUINode::createScale9Grid(
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(
675 GUINode::createPadding(
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"),
700 if (guiElement !=
nullptr && guiElementControllerInstalled ==
false) {
702 if (guiElementController !=
nullptr) {
703 guiElementNode->setController(guiElementController);
705 guiElementControllerInstalled =
true;
707 parseGUINode(guiElementNode, guiElementNode->getId(), node,
nullptr);
709 if (nodeTagName ==
"image") {
715 GUINode::createAlignments(
719 GUIParentNode::createRequestedConstraints(
726 GUINode::getRequestedColor(
string(
AVOID_NULLPTR_STRING(node->Attribute(
"background-color"))), GUIColor::GUICOLOR_TRANSPARENT),
728 GUINode::createScale9Grid(
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(
749 GUINode::createPadding(
759 GUIImageNode::createRequestedDimensionConstraints(
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(
774 GUIImageNode::createClipping(
783 node->Attribute(
"rotation") !=
nullptr?Float::parse(node->Attribute(
"rotation")):0.0f
786 if (guiElement !=
nullptr && guiElementControllerInstalled ==
false) {
788 if (guiElementController !=
nullptr) {
789 guiImageNode->setController(guiElementController);
791 guiElementControllerInstalled =
true;
795 if (nodeTagName ==
"frame-buffer") {
801 GUINode::createAlignments(
805 GUIParentNode::createRequestedConstraints(
812 GUINode::getRequestedColor(
string(
AVOID_NULLPTR_STRING(node->Attribute(
"background-color"))), GUIColor::GUICOLOR_TRANSPARENT),
814 GUINode::createScale9Grid(
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(
835 GUINode::createPadding(
845 GUIFrameBufferNode::createRequestedDimensionConstraints(
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(
860 GUIFrameBufferNode::createClipping(
870 guiParentNode->
addSubNode(guiFrameBufferNode);
871 if (guiElement !=
nullptr && guiElementControllerInstalled ==
false) {
873 if (guiElementController !=
nullptr) {
874 guiFrameBufferNode->setController(guiElementController);
876 guiElementControllerInstalled =
true;
880 if (nodeTagName ==
"texture") {
886 GUINode::createAlignments(
890 GUIParentNode::createRequestedConstraints(
897 GUINode::getRequestedColor(
string(
AVOID_NULLPTR_STRING(node->Attribute(
"background-color"))), GUIColor::GUICOLOR_TRANSPARENT),
899 GUINode::createScale9Grid(
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(
920 GUINode::createPadding(
930 GUITextureNode::createRequestedDimensionConstraints(
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(
945 GUITextureNode::createClipping(
956 if (guiElement !=
nullptr && guiElementControllerInstalled ==
false) {
958 if (guiElementController !=
nullptr) {
959 guiTextureNode->setController(guiElementController);
961 guiElementControllerInstalled =
true;
965 if (nodeTagName ==
"gradient") {
971 GUINode::createAlignments(
975 GUIParentNode::createRequestedConstraints(
982 GUINode::getRequestedColor(
string(
AVOID_NULLPTR_STRING(node->Attribute(
"background-color"))), GUIColor::GUICOLOR_TRANSPARENT),
984 GUINode::createScale9Grid(
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(
1005 GUINode::createPadding(
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(
1028 if (guiElement !=
nullptr && guiElementControllerInstalled ==
false) {
1030 if (guiElementController !=
nullptr) {
1031 guiGradientNode->setController(guiElementController);
1033 guiElementControllerInstalled =
true;
1037 if (nodeTagName ==
"text") {
1043 GUINode::createAlignments(
1047 GUIParentNode::createRequestedConstraints(
1054 GUINode::getRequestedColor(
string(
AVOID_NULLPTR_STRING(node->Attribute(
"background-color"))), GUIColor::GUICOLOR_TRANSPARENT),
1056 GUINode::createScale9Grid(
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(
1077 GUINode::createPadding(
1091 if (guiElement !=
nullptr && guiElementControllerInstalled ==
false) {
1093 if (guiElementController !=
nullptr) {
1094 guiTextNode->setController(guiElementController);
1096 guiElementControllerInstalled =
true;
1100 if (nodeTagName ==
"styled-text") {
1106 GUINode::createAlignments(
1110 GUIParentNode::createRequestedConstraints(
1117 GUINode::getRequestedColor(
string(
AVOID_NULLPTR_STRING(node->Attribute(
"background-color"))), GUIColor::GUICOLOR_TRANSPARENT),
1119 GUINode::createScale9Grid(
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(
1140 GUINode::createPadding(
1149 node->Attribute(
"preformatted") ==
nullptr?
false:StringTools::toLowerCase(StringTools::trim(node->Attribute(
"preformatted"))) ==
"true",
1155 if (guiElement !=
nullptr && guiElementControllerInstalled ==
false) {
1157 if (guiElementController !=
nullptr) {
1158 guiTextNode->setController(guiElementController);
1160 guiElementControllerInstalled =
true;
1164 if (nodeTagName ==
"table") {
1172 GUINode::createAlignments(
1176 GUIParentNode::createRequestedConstraints(
1183 GUINode::getRequestedColor(
string(
AVOID_NULLPTR_STRING(node->Attribute(
"background-color"))), GUIColor::GUICOLOR_TRANSPARENT),
1185 GUINode::createScale9Grid(
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(
1206 GUINode::createPadding(
1217 if (guiElement !=
nullptr && guiElementControllerInstalled ==
false) {
1219 if (guiElementController !=
nullptr) {
1220 guiTableNode->setController(guiElementController);
1222 guiElementControllerInstalled =
true;
1226 if (nodeTagName ==
"table-cell") {
1234 GUINode::createAlignments(
1238 GUITableCellNode::createRequestedConstraints(
1245 GUINode::getRequestedColor(
string(
AVOID_NULLPTR_STRING(node->Attribute(
"background-color"))), GUIColor::GUICOLOR_TRANSPARENT),
1247 GUINode::createScale9Grid(
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(
1268 GUINode::createPadding(
1280 if (guiElement !=
nullptr && guiElementControllerInstalled ==
false) {
1282 if (guiElementController !=
nullptr) {
1283 guiTableCellNode->setController(guiElementController);
1285 guiElementControllerInstalled =
true;
1287 parseGUINode(guiTableCellNode,
string(), node,
nullptr);
1289 if (nodeTagName ==
"table-row") {
1297 GUINode::createAlignments(
1301 GUITableRowNode::createRequestedConstraints(
1308 GUINode::getRequestedColor(
string(
AVOID_NULLPTR_STRING(node->Attribute(
"background-color"))), GUIColor::GUICOLOR_TRANSPARENT),
1310 GUINode::createScale9Grid(
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(
1331 GUINode::createPadding(
1342 if (guiElement !=
nullptr && guiElementControllerInstalled ==
false) {
1344 if (guiElementController !=
nullptr) {
1345 guiTableRowNode->setController(guiElementController);
1347 guiElementControllerInstalled =
true;
1349 parseGUINode(guiTableRowNode,
string(), node,
nullptr);
1351 if (nodeTagName ==
"input-internal") {
1357 GUINode::createAlignments(
1361 GUIParentNode::createRequestedConstraints(
1368 GUINode::getRequestedColor(
string(
AVOID_NULLPTR_STRING(node->Attribute(
"background-color"))), GUIColor::GUICOLOR_TRANSPARENT),
1370 GUINode::createScale9Grid(
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(
1391 GUINode::createPadding(
1404 GUIInputInternalNode::createMaxLength(
string(
AVOID_NULLPTR_STRING(node->Attribute(
"maxlength"))))
1406 guiParentNode->
addSubNode(guiInputInternalNode);
1407 if (guiElement !=
nullptr && guiElementControllerInstalled ==
false) {
1409 if (guiElementController !=
nullptr) {
1410 guiInputInternalNode->setController(guiElementController);
1412 guiElementControllerInstalled =
true;
1416 if (nodeTagName ==
"vertical-scrollbar-internal") {
1422 GUINode::createAlignments(
1426 GUIParentNode::createRequestedConstraints(
1433 GUINode::getRequestedColor(
string(
AVOID_NULLPTR_STRING(node->Attribute(
"background-color"))), GUIColor::GUICOLOR_TRANSPARENT),
1435 GUINode::createScale9Grid(
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(
1456 GUINode::createPadding(
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)
1469 guiParentNode->
addSubNode(guiVerticalScrollbarInternalNode);
1470 if (guiElement !=
nullptr && guiElementControllerInstalled ==
false) {
1471 guiElementController = guiElement->
createController(guiVerticalScrollbarInternalNode);
1472 if (guiElementController !=
nullptr) {
1473 guiVerticalScrollbarInternalNode->setController(guiElementController);
1475 guiElementControllerInstalled =
true;
1479 if (nodeTagName ==
"horizontal-scrollbar-internal") {
1485 GUINode::createAlignments(
1489 GUIParentNode::createRequestedConstraints(
1496 GUINode::getRequestedColor(
string(
AVOID_NULLPTR_STRING(node->Attribute(
"background-color"))), GUIColor::GUICOLOR_TRANSPARENT),
1498 GUINode::createScale9Grid(
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(
1519 GUINode::createPadding(
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)
1532 guiParentNode->
addSubNode(guiHorizontalScrollbarInternalNode);
1533 if (guiElement !=
nullptr && guiElementControllerInstalled ==
false) {
1534 guiElementController = guiElement->
createController(guiHorizontalScrollbarInternalNode);
1535 if (guiElementController !=
nullptr) {
1536 guiHorizontalScrollbarInternalNode->setController(guiElementController);
1538 guiElementControllerInstalled =
true;
1540 parseEffects(guiHorizontalScrollbarInternalNode, node);
1542 if (nodeTagName ==
"inner-xml") {
1543 unordered_map<string, string> attributes;
1553 if (nodeTagName ==
"template") {
1555 unordered_map<string, string> attributes;
1560 FileSystem::getInstance()->getContentAsString(
1562 FileSystem::getInstance()->getPathName(src),
1563 FileSystem::getInstance()->getFileName(src)
1569 auto nodeTagNameString = nodeTagName;
1570 const auto guiElementIt =
elements->find(nodeTagNameString);
1571 if (guiElementIt ==
elements->end()) {
1573 "Unknown element '" +
1574 (nodeTagNameString) +
1582 guiElementIt->second->getTemplate(
1587 guiElementIt->second->getAttributes(guiParentNode->
screenNode),
1588 guiElementIt->second
1593 if (guiElementController !=
nullptr) {
1599 auto newGuiElementTemplateXML = templateXML;
1605 for (
auto& themePropertyIt: themeProperties->getProperties()) {
1606 newGuiElementTemplateXML = StringTools::replace(newGuiElementTemplateXML,
"{$" + themePropertyIt.first +
"}",
escapeQuotes(themePropertyIt.second));
1611 auto attributeKey = string(attribute->Name());
1612 auto attributeValue = string(attribute->Value());
1613 newGuiElementTemplateXML = StringTools::replace(newGuiElementTemplateXML,
"{$" + attributeKey +
"}",
escapeQuotes(attributeValue));
1617 for (
auto newGuiElementAttributesIt : attributes) {
1618 auto guiElementAttributeValue =
escapeQuotes(newGuiElementAttributesIt.second);
1619 newGuiElementTemplateXML = StringTools::replace(newGuiElementTemplateXML,
"{$" + newGuiElementAttributesIt.first +
"}", guiElementAttributeValue);
1623 newGuiElementTemplateXML = StringTools::regexReplace(newGuiElementTemplateXML,
"\\{\\$[a-zA-Z\\-_0-9]{1,}\\}",
"");
1626 newGuiElementTemplateXML = StringTools::replace(newGuiElementTemplateXML,
"{__InnerXML__}",
getInnerXml(node));
1629 if (guiElement !=
nullptr) {
1630 newGuiElementTemplateXML =
"<" + guiElement->
getName() +
">\n" + newGuiElementTemplateXML +
"</" + guiElement->
getName() +
">\n";
1632 newGuiElementTemplateXML =
"<template>\n" + newGuiElementTemplateXML +
"</template>\n";
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);
1647 auto newInnerXML = innerXML;
1648 auto newParentElementId = parentElementId;
1654 for (
auto& themePropertyIt: themeProperties->getProperties()) {
1655 newInnerXML = StringTools::replace(newInnerXML,
"{$" + themePropertyIt.first +
"}",
escapeQuotes(themePropertyIt.second));
1660 auto attributeKey = string(attribute->Name());
1661 auto attributeValue = string(attribute->Value());
1662 newInnerXML = StringTools::replace(newInnerXML,
"{$" + attributeKey +
"}",
escapeQuotes(attributeValue));
1664 if (attributeKey ==
"parent-id") newParentElementId = attributeValue;
1668 for (
auto newGuiElementAttributesIt: attributes) {
1669 auto guiElementAttributeValue =
escapeQuotes(newGuiElementAttributesIt.second);
1670 newInnerXML = StringTools::replace(newInnerXML,
"{$" + newGuiElementAttributesIt.first +
"}", guiElementAttributeValue);
1674 newInnerXML = StringTools::regexReplace(newInnerXML,
"\\{\\$[a-zA-Z\\-_0-9]{1,}\\}",
"");
1677 newInnerXML = StringTools::replace(newInnerXML,
"{__InnerXML__}",
getInnerXml(node));
1680 newInnerXML =
"<inner-xml>\n" + newInnerXML +
"</inner-xml>\n";
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;
1693 if (factor.empty() ==
true) {
1696 if (factor ==
"{__TreeDepth__}") {
1698 auto _guiParentNode = guiParentNode;
1699 while (_guiParentNode !=
nullptr) {
1700 parentElementNode =
dynamic_cast<GUIElementNode*
>(_guiParentNode);
1701 if (parentElementNode !=
nullptr)
break;
1707 if (parentElementNode !=
nullptr) {
1713 return Integer::parse(factor);
1719 vector<TiXmlElement*> elementList;
1721 elementList.push_back(child);
1728 std::stringstream ss;
1738 result = StringTools::replace(str,
""",
"\"");
1739 result = StringTools::replace(result,
"'",
"'");
1746 result = StringTools::replace(str,
"\"",
""");
1747 result = StringTools::replace(result,
"'",
"'");
1755 "Element with given name '" +
1768 Console::print(
string(
"GUIParser::initialize(): An error occurred: "));
1769 Console::println(
string(exception.what()));
1774 Console::print(
string(
"GUIParser::initialize(): An error occurred: "));
1775 Console::println(
string(exception.what()));
1781 Console::print(
string(
"GUIParser::initialize(): An error occurred: "));
1782 Console::println(
string(exception.what()));
1788 Console::print(
string(
"GUIParser::initialize(): An error occurred: "));
1789 Console::println(
string(exception.what()));
1795 Console::print(
string(
"GUIParser::initialize(): An error occurred: "));
1796 Console::println(
string(exception.what()));
1802 Console::print(
string(
"GUIParser::initialize(): An error occurred: "));
1803 Console::println(
string(exception.what()));
1809 Console::print(
string(
"GUIParser::initialize(): An error occurred: "));
1810 Console::println(
string(exception.what()));
1816 Console::print(
string(
"GUIParser::initialize(): An error occurred: "));
1817 Console::println(
string(exception.what()));
1823 Console::print(
string(
"GUIParser::initialize(): An error occurred: "));
1824 Console::println(
string(exception.what()));
1830 Console::print(
string(
"GUIParser::initialize(): An error occurred: "));
1831 Console::println(
string(exception.what()));
1837 Console::print(
string(
"GUIParser::initialize(): An error occurred: "));
1838 Console::println(
string(exception.what()));
1844 Console::print(
string(
"GUIParser::initialize(): An error occurred: "));
1845 Console::println(
string(exception.what()));
1851 Console::print(
string(
"GUIParser::initialize(): An error occurred: "));
1852 Console::println(
string(exception.what()));
1858 Console::print(
string(
"GUIParser::initialize(): An error occurred: "));
1859 Console::println(
string(exception.what()));
1865 Console::print(
string(
"GUIParser::initialize(): An error occurred: "));
1866 Console::println(
string(exception.what()));
1872 Console::print(
string(
"GUIParser::initialize(): An error occurred: "));
1873 Console::println(
string(exception.what()));
1879 Console::print(
string(
"GUIParser::initialize(): An error occurred: "));
1880 Console::println(
string(exception.what()));
1886 Console::print(
string(
"GUIParser::initialize(): An error occurred: "));
1887 Console::println(
string(exception.what()));
1893 Console::print(
string(
"GUIParser::initialize(): An error occurred: "));
1894 Console::println(
string(exception.what()));
1900 Console::print(
string(
"GUIParser::initialize(): An error occurred: "));
1901 Console::println(
string(exception.what()));
1907 Console::print(
string(
"GUIParser::initialize(): An error occurred: "));
1908 Console::println(
string(exception.what()));
1914 Console::print(
string(
"GUIParser::initialize(): An error occurred: "));
1915 Console::println(
string(exception.what()));
1921 Console::print(
string(
"GUIParser::initialize(): An error occurred: "));
1922 Console::println(
string(exception.what()));
1928 Console::print(
string(
"GUIParser::initialize(): An error occurred: "));
1929 Console::println(
string(exception.what()));
1935 Console::print(
string(
"GUIParser::initialize(): An error occurred: "));
1936 Console::println(
string(exception.what()));
1942 Console::print(
string(
"GUIParser::initialize(): An error occurred: "));
1943 Console::println(
string(exception.what()));
1949 Console::print(
string(
"GUIParser::initialize(): An error occurred: "));
1950 Console::println(
string(exception.what()));
1956 Console::print(
string(
"GUIParser::initialize(): An error occurred: "));
1957 Console::println(
string(exception.what()));
1963 Console::print(
string(
"GUIParser::initialize(): An error occurred: "));
1964 Console::println(
string(exception.what()));
1970 Console::print(
string(
"GUIParser::initialize(): An error occurred: "));
1971 Console::println(
string(exception.what()));
1977 delete elementIt.second;
1987 Console::print(
string(
"GUIParser::loadProjectThemeProperties(): An error occurred: "));
1988 Console::println(
string(exception.what()));
#define AVOID_NULLPTR_STRING(arg)
static void parseEffects(GUINode *guiNode, TiXmlElement *xmlParentNode)
Parse GUI effect.
static const string unescapeQuotes(const string &str)
Unescape quotes.
static const string getInnerXml(TiXmlElement *node)
Get inner XML.
static void initialize()
Initialize GUI elements.
static STATIC_DLL_IMPEXT map< string, GUIElement * > * elements
static STATIC_DLL_IMPEXT Properties * projectThemeProperties
static const string escapeQuotes(const string &str)
Escape quotes.
static void addElement(GUIElement *guiElement)
Add GUI element.
static int parseFactor(GUIParentNode *guiParentNode, const string &factor)
Parse factor.
static void parseTemplate(GUIParentNode *guiParentNode, const string &parentElementId, TiXmlElement *node, const string &_template, const unordered_map< string, string > &attributes, GUIElement *guiElement)
Parse template.
static void parseGUINode(GUIParentNode *guiParentNode, const string &parentElementId, TiXmlElement *xmlParentNode, GUIElement *guiElement)
Parse GUI node.
static void dispose()
Dispose GUI elements.
static GUIScreenNode * parse(const string &pathName, const string &fileName, const unordered_map< string, string > ¶meters=unordered_map< string, string >())
Parses a GUI XML file.
static void parseInnerXML(GUIParentNode *guiParentNode, const string &parentElementId, TiXmlElement *node, const string &_template, const unordered_map< string, string > &attributes, GUIElement *guiElement)
Parse inner XML.
static void loadProjectThemeProperties(const string &pathName)
Load project theme properties.
static STATIC_DLL_IMPEXT Properties * engineThemeProperties
static const vector< TiXmlElement * > getChildrenByTagName(TiXmlElement *parent, const char *name)
Returns immediate children tags.
static void parseEffect(GUINode *guiNode, const string &effectPrefix, bool requiresCondition, TiXmlElement *node)
Parse GUI effect.
void setAction(Action *action)
Set action to be performed on effect end.
GUI drop down option element.
virtual GUINodeController * createController(GUINode *node)=0
Create controller which is attached to this node.
virtual const string & getName()=0
GUI select box option element.
GUI select box parent option element.
GUI selector horizontal option element.
GUI selector horizontal element.
GUI horizontal slider element.
GUI vertical slider element.
GUI tabs content element.
const string & getParentElementNodeId()
GUI node controller base class.
virtual void initialize()=0
Initialize controller after element has been created.
void addEffect(const string &id, GUIEffect *effect)
Add effect, effect already registered with the is will be removed.
GUIScreenNode * screenNode
void setBackgroundImage(const string &backgroundImage)
Set background image.
GUIScreenNode * getScreenNode()
GUIParentNode * getParentNode()
GUI panel node TODO: remove me!
GUI parent node base class thats supporting child nodes.
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.
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.
Properties class, which helps out with storeing or loading key value pairs from/to property files.
void load(const string &pathName, const string &fileName, FileSystemInterface *fileSystem=nullptr)
Load property file.
An attribute is a name-value pair.
const TiXmlAttribute * Next() const
Get the next sibling attribute in the DOM. Returns null at end.
Always the top level node.
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.
const char * ErrorDesc() const
Contains a textual (english) description of the error if one occurs.
bool Error() const
If an error occurs, Error will be set to true.
The element is a container class.
const char * Attribute(const char *name) const
Given an attribute name, Attribute() returns the value for the attribute of that name,...
const TiXmlAttribute * FirstAttribute() const
Access the first attribute in this element.
const TiXmlElement * NextSiblingElement() const
Convenience function to get through elements.
const char * Value() const
The meaning of 'value' changes for the specific type of TiXmlNode.
const TiXmlElement * FirstChildElement() const
Convenience function to get through elements.
std::exception Exception
Exception base class.