TDME2 1.9.121
GUIParser.h
Go to the documentation of this file.
1#pragma once
2
3#include <map>
4#include <unordered_map>
5#include <vector>
6
7#include <tdme/tdme.h>
10#include <tdme/gui/fwd-tdme.h>
15
16#include <ext/tinyxml/tinyxml.h>
17
18using std::map;
19using std::unordered_map;
20using std::vector;
21
30
32
33/**
34 * GUI parser
35 * @author Andreas Drewke
36 * @version $Id$
37 */
39{
40
41private:
42 STATIC_DLL_IMPEXT static map<string, GUIElement*>* elements;
45
46public:
47
48 /**
49 * Parses a GUI XML file
50 * @param pathName path name
51 * @param fileName file name
52 * @param parameters parameters aka key value paris for substitution
53 * @return GUI screen node
54 * @throws tdme::gui::GUIParserException
55 * @throws tdme::os::filesystem::FileSystemException
56 */
57 static GUIScreenNode* parse(const string& pathName, const string& fileName, const unordered_map<string, string>& parameters = unordered_map<string, string>());
58
59 /**
60 * Parses a GUI XML content
61 * @param xml xml
62 * @param parameters parameters aka key value paris for substitution
63 * @param pathName path name
64 * @param fileName file name
65 * @return GUI screen node
66 * @throws tdme::gui::GUIParserException
67 * @throws tdme::os::filesystem::FileSystemException
68 */
69 static GUIScreenNode* parse(const string& xml, const unordered_map<string, string>& parameters = unordered_map<string, string>(), const string& pathName = string(), const string& fileName = string());
70
71 /**
72 * Parses a GUI XML file into parent node
73 * @param parentNode parent node
74 * @param pathName path name
75 * @param fileName file name
76 * @throws tdme::gui::GUIParserException
77 * @throws tdme::os::filesystem::FileSystemException
78 */
79 static void parse(GUIParentNode* parentNode, const string& pathName, const string& fileName);
80
81 /**
82 * Parses a GUI XML content into parent node
83 * @param parentNode parent node
84 * @param xml xml
85 * @throws tdme::gui::GUIParserException
86 * @throws tdme::os::filesystem::FileSystemException
87 */
88 static void parse(GUIParentNode* parentNode, const string& xml);
89
90private:
91
92 /**
93 * Parse GUI effect
94 * @param guiNode GUI node
95 * @param effectPrefix effect prefix
96 * @param requiresCondition requires condition
97 * @param node node
98 */
99 static void parseEffect(GUINode* guiNode, const string& effectPrefix, bool requiresCondition, TiXmlElement* node);
100
101 /**
102 * Parse GUI effect
103 * @param guiNode GUI node
104 * @param xmlParentNode xml parent node
105 */
106 static void parseEffects(GUINode* guiNode, TiXmlElement* xmlParentNode);
107
108 /**
109 * Parse GUI node
110 * @param guiParentNode gui parent node
111 * @param parentElementId parent element id
112 * @param xmlParentNode xml parent node
113 * @param guiElement gui element
114 * @throws tdme::gui::GUIParserException
115 * @throws tdme::os::filesystem::FileSystemException
116 */
117 static void parseGUINode(GUIParentNode* guiParentNode, const string& parentElementId, TiXmlElement* xmlParentNode, GUIElement* guiElement);
118
119 /**
120 * Returns immediate children tags
121 * @param parent parent
122 * @param name name
123 * @return children of parent node with given name
124 */
125 static const vector<TiXmlElement*> getChildrenByTagName(TiXmlElement* parent, const char* name);
126
127 /**
128 * Get inner XML
129 * @param node node
130 * @return string
131 */
132 static const string getInnerXml(TiXmlElement* node);
133
134 /**
135 * Parse template
136 * @param guiParentNode GUI parent node
137 * @param parentElementId parent element id
138 * @param node template xml node
139 * @param _template template
140 * @param attributes attributes
141 * @param guiElement GUI element
142 */
143 static void parseTemplate(GUIParentNode* guiParentNode, const string& parentElementId, TiXmlElement* node, const string& _template, const unordered_map<string, string>& attributes, GUIElement* guiElement);
144
145 /**
146 * Parse inner XML
147 * @param guiParentNode GUI parent node
148 * @param parentElementId parent element id
149 * @param node template xml node
150 * @param _template template
151 * @param attributes attributes
152 * @param guiElement GUI element
153 */
154 static void parseInnerXML(GUIParentNode* guiParentNode, const string& parentElementId, TiXmlElement* node, const string& _template, const unordered_map<string, string>& attributes, GUIElement* guiElement);
155
156 /**
157 * Parse factor
158 * @param guiParentNode gui parent node
159 * @param factor factor
160 * @return factor
161 */
162 static int parseFactor(GUIParentNode* guiParentNode, const string& factor);
163
164public:
165
166 /**
167 * Unescape quotes
168 * @param str string
169 * @return string with unescaped quotes
170 */
171 static const string unescapeQuotes(const string& str);
172
173 /**
174 * Escape quotes
175 * @param str string
176 * @return string with escaped quotes
177 */
178 static const string escapeQuotes(const string& str);
179
180 /**
181 * Add GUI element
182 * @param guiElement guiElement
183 * @throws tdme::gui::GUIParserException
184 * @throws tdme::os::filesystem::FileSystemException
185 */
186 static void addElement(GUIElement* guiElement);
187
188 /**
189 * Initialize GUI elements
190 */
191 static void initialize();
192
193 /**
194 * Dispose GUI elements
195 */
196 static void dispose();
197
198 /**
199 * Load project theme properties
200 * @param pathName path name
201 */
202 static void loadProjectThemeProperties(const string& pathName);
203
204};
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
GUI element base class.
Definition: GUIElement.h:24
GUI node base class.
Definition: GUINode.h:63
GUI parent node base class thats supporting child nodes.
Definition: GUIParentNode.h:43
GUI screen node that represents a screen that can be rendered via GUI system.
Definition: GUIScreenNode.h:57
Properties class, which helps out with storeing or loading key value pairs from/to property files.
Definition: Properties.h:23
The element is a container class.
Definition: tinyxml.h:886
#define STATIC_DLL_IMPEXT
Definition: tdme.h:11