TDME2 1.9.121
GUI.h
Go to the documentation of this file.
1#pragma once
2
3#include <string>
4#include <unordered_map>
5#include <unordered_set>
6#include <vector>
7
8#include <tdme/tdme.h>
16#include <tdme/gui/fwd-tdme.h>
26#include <tdme/utilities/Time.h>
27
28using std::string;
29using std::to_string;
30using std::unordered_map;
31using std::unordered_set;
32using std::vector;
33
49
50template<typename T, typename U>
52{
53 auto t = dynamic_cast<T>(u);
54 if (t == nullptr) {
55 throw ExceptionBase("required_dynamic_cast did fail");
56 }
57 return t;
58}
59
60/**
61 * GUI module class
62 * @author Andreas Drewke
63 * @version $Id$
64 */
65class tdme::gui::GUI final: public virtual InputEventHandler
66{
73
74private:
75 STATIC_DLL_IMPEXT static unordered_map<string, GUIFont*>* fontCache;
76 STATIC_DLL_IMPEXT static unordered_map<string, Texture*>* imageCache;
77
79 Engine* engine { nullptr };
80 unordered_map<string, GUIScreenNode*> screens;
82 vector<GUIElementNode*> focusableNodes;
83 vector<GUIScreenNode*> focusableScreenNodes;
90 vector<GUIMouseEvent> mouseEvents;
91 vector<GUIKeyboardEvent> keyboardEvents;
92 vector<GUIScreenNode*> renderScreens;
93 int width;
94 int height;
96 unordered_map<string, unordered_set<string>> mouseOutCandidateEventNodeIds;
97 unordered_map<string, unordered_set<string>> mouseOutClickCandidateEventNodeIds;
98 unordered_map<string, unordered_set<string>> mousePressedEventNodeIds;
99 unordered_map<string, unordered_set<string>> mouseDraggingEventNodeIds;
100 unordered_map<string, bool> mouseIsDragging;
101
102 bool altDown { false };
103 bool controlDown { false };
104 bool shiftDown { false };
105
106 /**
107 * Add node that is a possible mouse out candidate as it received a mouse over
108 * @param node element node
109 */
112 }
113
114 /**
115 * Add node that is a possible mouse click out candidate as it received a mouse click
116 * @param node element node
117 */
120 }
121
122 /**
123 * Determine focussed nodes
124 */
126
127 /**
128 * Handle mouse event for given node
129 * @param node node
130 * @param event event
131 * @param mouseOutCandidateEventNodeIds mouse out candidate event node ids
132 * @param mouseOutClickCandidateEventNodeIds mouse out click candidate event node ids
133 * @param mousePressedEventNodeIds mouse pressed event node ids
134 * @param floatingNodes check if to gather floating nodes only
135 */
136 void handleMouseEvent(GUINode* node, GUIMouseEvent* event, const unordered_set<string>& mouseOutCandidateEventNodeIds, const unordered_set<string>& mouseOutClickCandidateEventNodeIds, unordered_set<string>& mousePressedEventNodeIds, bool floatingNodes);
137
138 /**
139 * Handle mouse event for given node
140 * @param event event
141 */
143
144 /**
145 * Reshape screen
146 * @param screenNode screen node
147 */
148 void reshapeScreen(GUIScreenNode* screenNode);
149
150 /**
151 * Fake mouse moved event
152 */
153 void fakeMouseMovedEvent();
154
155 /**
156 * Fake a keyboard modifier event
157 */
159
160 /**
161 * Render screens change
162 */
164
165public:
166 /**
167 * Public constructor
168 * @param engine engine
169 * @param guiRenderer gui renderer
170 */
172
173 /**
174 * Destructor
175 */
176 ~GUI();
177
178 /**
179 * @return width
180 */
181 inline int getWidth() {
182 return width;
183 }
184
185 /**
186 * @return height
187 */
188 inline int getHeight() {
189 return height;
190 }
191
192 /**
193 * Init
194 */
195 void initialize();
196
197 /**
198 * Reshape
199 * @param width width
200 * @param height height
201 */
202 void reshape(int width, int height);
203
204 /**
205 * Dispose
206 */
207 void dispose();
208
209 /**
210 * @return mouse events
211 */
212 inline vector<GUIMouseEvent>& getMouseEvents() {
213 return mouseEvents;
214 }
215
216 /**
217 * @return keyboard events
218 */
219 inline vector<GUIKeyboardEvent>& getKeyboardEvents() {
220 return keyboardEvents;
221 }
222
223 /**
224 * Get font
225 * @param applicationRootPath application root path
226 * @param fileName file name
227 * @throws tdme::os::filesystem::FileSystemException
228 * @return font
229 */
230 static GUIFont* getFont(const string& applicationRootPath, const string& fileName);
231
232 /**
233 * Get image
234 * @param applicationRootPath application root path
235 * @param fileName file name
236 * @throws tdme::os::filesystem::FileSystemException
237 * @return texture
238 */
239 static Texture* getImage(const string& applicationRootPath, const string& fileName);
240
241 /**
242 * Get screen
243 * @param id id
244 * @return screen
245 */
246 inline GUIScreenNode* getScreen(const string& id) {
247 auto screensIt = screens.find(id);
248 if (screensIt == screens.end()) {
249 return nullptr;
250 }
251 return screensIt->second;
252 }
253
254 /**
255 * Add screen
256 * @param id id
257 * @param screen gui
258 */
259 void addScreen(const string& id, GUIScreenNode* screen);
260
261 /**
262 * Removes an screen
263 * @param id id
264 */
265 void removeScreen(const string& id);
266
267 /**
268 * Removes all screens and caches
269 */
270 void reset();
271
272 /**
273 * Reset render screens
274 */
275 void resetRenderScreens();
276
277 /**
278 * Returns if given screen is beeing rendered
279 * @param screenId screenId
280 */
281 inline bool hasRenderScreen(const string& screenId) {
282 for (auto renderScreen: renderScreens) {
283 if (renderScreen->getId() == screenId) return true;
284 }
285 return false;
286 }
287
288 /**
289 * Add render screen
290 * @param screenId screenId
291 */
292 void addRenderScreen(const string& screenId);
293
294 /**
295 * Remove render screen
296 * @param screenId screenId
297 */
298 void removeRenderScreen(const string& screenId);
299
300 /**
301 * @return focussed border color
302 */
305 }
306
307 /**
308 * Invalidate focussed node
309 */
311
312 /**
313 * @return focussed node
314 */
316
317 /**
318 * Unfocus current focussed node
319 */
320 void unfocusNode();
321
322 /**
323 * Focus current focussed node
324 */
325 void focusNode();
326
327 /**
328 * Set focussed node
329 * @param newFoccussedNode foccussed node
330 */
331 void setFoccussedNode(GUIElementNode* newFoccussedNode);
332
333 /**
334 * Focus next node
335 */
336 void focusNextNode();
337
338 /**
339 * Focus next node
340 */
341 void focusPreviousNode();
342
343 /**
344 * Render GUIs
345 */
346 void render();
347
348 /**
349 * Reports if node has currently mouse interaction like dragging or pressing
350 * @param node node
351 * @return if node has currently mouse interaction
352 */
354
355 /**
356 * On char
357 * @param key key
358 * @param x x
359 * @param y y
360 */
361
362 void onChar(unsigned int key, int x, int y) override;
363 /**
364 * On key down
365 * @param key key
366 * @param keyCode key code
367 * @param x x
368 * @param y y
369 */
370 void onKeyDown (unsigned char key, int keyCode, int x, int y) override;
371
372 /**
373 * On key up
374 * @param key key
375 * @param keyCode key code
376 * @param x x
377 * @param y y
378 */
379 void onKeyUp(unsigned char key, int keyCode, int x, int y) override;
380
381 /**
382 * On mouse dragged
383 * @param x x
384 * @param y y
385 */
386 void onMouseDragged(int x, int y) override;
387
388 /**
389 * On mouse moved
390 * @param x x
391 * @param y y
392 */
393 void onMouseMoved(int x, int y) override;
394
395 /**
396 * On mouse moved
397 * @param button button
398 * @param state state
399 * @param x x
400 * @param y y
401 */
402 void onMouseButton(int button, int state, int x, int y) override;
403
404 /**
405 * On mouse wheel
406 * @param button button
407 * @param direction direction
408 * @param x x
409 * @param y y
410 */
411 void onMouseWheel(int button, int direction, int x, int y) override;
412
413 /**
414 * Handle screen events
415 */
416 void handleEvents();
417
418};
static T required_dynamic_cast(U u)
Definition: GUI.h:51
Application input event handler interface.
Engine main class.
Definition: Engine.h:122
GUI module class.
Definition: GUI.h:66
void addMouseOutClickCandidateElementNode(GUINode *node)
Add node that is a possible mouse click out candidate as it received a mouse click.
Definition: GUI.h:118
unordered_map< string, unordered_set< string > > mousePressedEventNodeIds
Definition: GUI.h:98
GUIColor unfocussedNodeBorderTopColor
Definition: GUI.h:88
bool hasRenderScreen(const string &screenId)
Returns if given screen is beeing rendered.
Definition: GUI.h:281
void onMouseMoved(int x, int y) override
On mouse moved.
Definition: GUI.cpp:764
Engine * engine
Definition: GUI.h:79
int getHeight()
Definition: GUI.h:188
bool controlDown
Definition: GUI.h:103
bool shiftDown
Definition: GUI.h:104
GUIElementNode * getFocussedNode()
Definition: GUI.cpp:316
void addMouseOutCandidateElementNode(GUINode *node)
Add node that is a possible mouse out candidate as it received a mouse over.
Definition: GUI.h:110
vector< GUIScreenNode * > renderScreens
Definition: GUI.h:92
string focussedNodeScreenId
Definition: GUI.h:84
bool altDown
Definition: GUI.h:102
unordered_map< string, unordered_set< string > > mouseOutCandidateEventNodeIds
Definition: GUI.h:96
static Texture * getImage(const string &applicationRootPath, const string &fileName)
Get image.
Definition: GUI.cpp:145
void onMouseDragged(int x, int y) override
On mouse dragged.
Definition: GUI.cpp:743
int width
Definition: GUI.h:93
void initialize()
Init.
Definition: GUI.cpp:89
void focusPreviousNode()
Focus next node.
Definition: GUI.cpp:392
bool isHavingMouseInteraction(GUINode *node)
Reports if node has currently mouse interaction like dragging or pressing.
Definition: GUI.cpp:455
void applyRenderScreensChange()
Render screens change.
Definition: GUI.cpp:921
void removeRenderScreen(const string &screenId)
Remove render screen.
Definition: GUI.cpp:274
~GUI()
Destructor.
Definition: GUI.cpp:86
vector< GUIScreenNode * > focusableScreenNodes
Definition: GUI.h:83
vector< GUIElementNode * > focusableNodes
Definition: GUI.h:82
void onMouseButton(int button, int state, int x, int y) override
On mouse moved.
Definition: GUI.cpp:785
void handleMouseEvent(GUINode *node, GUIMouseEvent *event, const unordered_set< string > &mouseOutCandidateEventNodeIds, const unordered_set< string > &mouseOutClickCandidateEventNodeIds, unordered_set< string > &mousePressedEventNodeIds, bool floatingNodes)
Handle mouse event for given node.
Definition: GUI.cpp:463
unordered_map< string, bool > mouseIsDragging
Definition: GUI.h:100
void determineFocussedNodes()
Determine focussed nodes.
Definition: GUI.cpp:296
void onMouseWheel(int button, int direction, int x, int y) override
On mouse wheel.
Definition: GUI.cpp:807
GUIColor foccussedBorderColor
Definition: GUI.h:81
GUI(Engine *engine, GUIRenderer *guiRenderer)
Public constructor.
Definition: GUI.cpp:71
int mouseButtonLast
Definition: GUI.h:95
unordered_map< string, GUIScreenNode * > screens
Definition: GUI.h:80
GUIRenderer * guiRenderer
Definition: GUI.h:78
static STATIC_DLL_IMPEXT unordered_map< string, Texture * > * imageCache
Definition: GUI.h:76
void handleEvents()
Handle screen events.
Definition: GUI.cpp:588
int getWidth()
Definition: GUI.h:181
void reshape(int width, int height)
Reshape.
Definition: GUI.cpp:93
static STATIC_DLL_IMPEXT unordered_map< string, GUIFont * > * fontCache
Definition: GUI.h:75
string focussedNodeNodeId
Definition: GUI.h:85
void unfocusNode()
Unfocus current focussed node.
Definition: GUI.cpp:324
void render()
Render GUIs.
Definition: GUI.cpp:414
GUIColor & getFoccussedBorderColor()
Definition: GUI.h:303
void onKeyUp(unsigned char key, int keyCode, int x, int y) override
On key up.
Definition: GUI.cpp:728
void onKeyDown(unsigned char key, int keyCode, int x, int y) override
On key down.
Definition: GUI.cpp:713
vector< GUIKeyboardEvent > keyboardEvents
Definition: GUI.h:91
void setFoccussedNode(GUIElementNode *newFoccussedNode)
Set focussed node.
Definition: GUI.cpp:359
unordered_map< string, unordered_set< string > > mouseOutClickCandidateEventNodeIds
Definition: GUI.h:97
void focusNode()
Focus current focussed node.
Definition: GUI.cpp:340
void fakeKeyboardModifierEvent()
Fake a keyboard modifier event.
Definition: GUI.cpp:846
GUIColor unfocussedNodeBorderRightColor
Definition: GUI.h:87
GUIScreenNode * getScreen(const string &id)
Get screen.
Definition: GUI.h:246
void addRenderScreen(const string &screenId)
Add render screen.
Definition: GUI.cpp:254
vector< GUIMouseEvent > & getMouseEvents()
Definition: GUI.h:212
void removeScreen(const string &id)
Removes an screen.
Definition: GUI.cpp:196
void addScreen(const string &id, GUIScreenNode *screen)
Add screen.
Definition: GUI.cpp:186
void dispose()
Dispose.
Definition: GUI.cpp:103
void invalidateFocussedNode()
Invalidate focussed node.
Definition: GUI.cpp:289
void reshapeScreen(GUIScreenNode *screenNode)
Reshape screen.
Definition: GUI.cpp:883
unordered_map< string, unordered_set< string > > mouseDraggingEventNodeIds
Definition: GUI.h:99
void fakeMouseMovedEvent()
Fake mouse moved event.
Definition: GUI.cpp:829
void focusNextNode()
Focus next node.
Definition: GUI.cpp:371
GUIColor unfocussedNodeBorderLeftColor
Definition: GUI.h:86
int height
Definition: GUI.h:94
void reset()
Removes all screens and caches.
Definition: GUI.cpp:212
vector< GUIKeyboardEvent > & getKeyboardEvents()
Definition: GUI.h:219
void handleKeyboardEvent(GUIKeyboardEvent *event)
Handle mouse event for given node.
Definition: GUI.cpp:531
static GUIFont * getFont(const string &applicationRootPath, const string &fileName)
Get font.
Definition: GUI.cpp:108
void resetRenderScreens()
Reset render screens.
Definition: GUI.cpp:235
void onChar(unsigned int key, int x, int y) override
On char.
Definition: GUI.cpp:698
GUIColor unfocussedNodeBorderBottomColor
Definition: GUI.h:89
vector< GUIMouseEvent > mouseEvents
Definition: GUI.h:90
GUI node base class.
Definition: GUINode.h:63
const string & getId()
Definition: GUINode.h:329
GUIScreenNode * getScreenNode()
Definition: GUINode.h:315
GUI screen node that represents a screen that can be rendered via GUI system.
Definition: GUIScreenNode.h:57
GUI Font A font implementation that will parse the output of the AngelCode font tool available at:
Definition: GUIFont.h:48
Console class.
Definition: Console.h:26
Exception base class.
Definition: ExceptionBase.h:20
Time utility class.
Definition: Time.h:21
std::exception Exception
Exception base class.
Definition: Exception.h:19
#define STATIC_DLL_IMPEXT
Definition: tdme.h:11