4 #include <Carbon/Carbon.h>
9#include <unordered_map>
10#include <unordered_set>
40using std::unordered_map;
41using std::unordered_set;
68unordered_map<string, GUIFont*>* GUI::fontCache =
new unordered_map<string, GUIFont*>();
69unordered_map<string, Texture*>* GUI::imageCache =
new unordered_map<string, Texture*>();
81 Console::print(
string(
"GUI(): An error occurred: "));
82 Console::println(
string(exception.what()));
98 auto screen = screenIt.second;
110 string canonicalFile;
116 if (FileSystem::getInstance()->fileExists(fileName) ==
true) {
117 canonicalFile = fileName;
119 canonicalFile = FileSystem::getInstance()->getCanonicalPath(applicationRootPath, fileName);
121 path = FileSystem::getInstance()->getPathName(canonicalFile);
122 file = FileSystem::getInstance()->getFileName(canonicalFile);
124 Console::print(
string(
"GUI::getFont(): An error occurred: "));
125 Console::println(
string(exception.what()));
129 auto fontCacheIt =
fontCache->find(canonicalFile);
132 font = GUIFont::parse(path, file);
134 Console::print(
string(
"GUI::getFont(): An error occurred: "));
135 Console::println(
string(exception.what()));
138 (*fontCache)[canonicalFile] = font;
140 font = fontCacheIt->second;
148 string canonicalFile;
153 if (FileSystem::getInstance()->fileExists(fileName) ==
true) {
154 canonicalFile = fileName;
156 canonicalFile = FileSystem::getInstance()->getCanonicalPath(applicationRootPath, fileName);
158 path = FileSystem::getInstance()->getPathName(canonicalFile);
159 file = FileSystem::getInstance()->getFileName(canonicalFile);
161 Console::print(
string(
"GUI::getImage(): An error occurred: "));
162 Console::println(
string(exception.what()));
166 auto imageIt =
imageCache->find(
"tdme.gui." + canonicalFile);
167 auto image = imageIt !=
imageCache->end() ? imageIt->second :
nullptr;
168 if (image ==
nullptr) {
170 image = TextureReader::read(path, file,
false,
false,
"tdme.gui.");
171 if (image !=
nullptr) {
172 image->setUseMipMap(
false);
173 image->setRepeat(
false);
174 image->setClampMode(Texture::CLAMPMODE_TRANSPARENTPIXEL);
177 Console::print(
string(
"GUI::getImage(): An error occurred: "));
178 Console::println(
string(exception.what()));
181 if (image !=
nullptr) (*imageCache)[canonicalFile] = image;
188 if (
id != screen->
getId()) {
189 Console::println(
"GUI::addScreen(): screen id '" +
id +
"' must be '" + screen->
getId() +
"'");
198 auto screensIt =
screens.find(
id);
199 if (screensIt !=
screens.end()) {
201 auto screen = screensIt->second;
214 vector<string> entitiesToRemove;
215 for (
auto screenKeysIt:
screens) {
216 entitiesToRemove.push_back(screenKeysIt.first);
218 for (
auto i = 0; i < entitiesToRemove.size(); i++) {
256 auto screenIt =
screens.find(screenId);
257 if (screenIt ==
screens.end())
return;
263 auto screen = screenIt->second;
264 screen->setGUI(
this);
265 screen->setConditionsMet();
276 auto screenIt =
screens.find(screenId);
277 if (screenIt ==
screens.end())
return;
280 screenIt->second->setGUI(
nullptr);
302 if (screen->isVisible() ==
false)
306 if (screen->isPopUp() ==
true)
329 if (focussedNode !=
nullptr) {
335 if (focussedNode->getController() !=
nullptr) focussedNode->getController()->onFocusLost();
336 focussedNode->getScreenNode()->delegateUnfocus(focussedNode);
344 if (focussedNode !=
nullptr) {
354 if (focussedNode->getController() !=
nullptr) focussedNode->getController()->onFocusGained();
355 focussedNode->getScreenNode()->delegateFocus(focussedNode);
363 if (focussedNode == newFoccussedNode)
return;
367 if (newFoccussedNode !=
nullptr)
focusNode();
378 auto focussedNodeIdx = -1;
384 auto focussedNextNodeIdx = (focussedNodeIdx + 1) %
focusableNodes.size();
387 newFocussedNode->scrollToNodeX();
388 newFocussedNode->scrollToNodeY();
399 auto focussedNodeIdx = -1;
405 int focussedPreviousNodeIdx = (focussedNodeIdx - 1) %
focusableNodes.size();
406 if (focussedPreviousNodeIdx < 0) focussedPreviousNodeIdx +=
focusableNodes.size();
409 newFocussedNode->scrollToNodeX();
410 newFocussedNode->scrollToNodeY();
424 if (screen->isVisible() ==
false)
continue;
426 screen->invalidateLayouts();
427 screen->scrollToNodes();
441 if (screen->isVisible() ==
false)
continue;
447 if (screen->isVisible() ==
false)
continue;
456 auto nodeId = node->
getId();
463void GUI::handleMouseEvent(
GUINode* node,
GUIMouseEvent* event,
const unordered_set<string>& mouseOutCandidateEventNodeIds,
const unordered_set<string>& mouseOutClickCandidateEventNodeIds, unordered_set<string>& mousePressedEventNodeIds,
bool floatingNodes)
466 unordered_set<string> mouseEventNodeIgnore;
467 unordered_set<string> mouseEventNodeIds;
474 if (event->
getType() == GUIMouseEvent::MOUSEEVENT_DRAGGED) {
477 if (event->
getType() == GUIMouseEvent::MOUSEEVENT_RELEASED &&
482 if (floatingNodes ==
true) {
491 mouseEventNodeIds.insert(eventNodeId);
496 mouseEventNodeIds.insert(eventNodeId);
500 for (
auto eventNodeId: mouseEventNodeIds) {
503 if (eventNode ==
nullptr)
continue;
504 if (floatingNodes ==
false && eventNode->flow == GUINode_Flow::FLOATING)
continue;
507 auto controllerNode = eventNode;
508 if (controllerNode->getController() ==
nullptr) {
511 if (controllerNode ==
nullptr)
continue;
514 if (eventNode->getScreenNode()->getGUI() ==
nullptr)
continue;
521 if (event->
getType() == GUIMouseEvent::MOUSEEVENT_PRESSED) {
522 for (
auto eventNodeId: mouseEventNodeIds) {
528 mouseEventNodeIds.clear();
537 case (GUIKeyboardEvent::KEYCODE_TAB):
539 if (event->
getType() == GUIKeyboardEvent::KEYBOARDEVENT_KEY_PRESSED) {
542 event->setProcessed(
true);
545 case (GUIKeyboardEvent::KEYCODE_TAB_SHIFT):
547 if (event->
getType() == GUIKeyboardEvent::KEYBOARDEVENT_KEY_PRESSED) {
550 event->setProcessed(
true);
553 case (GUIKeyboardEvent::KEYCODE_LEFT_ALT):
554 case (GUIKeyboardEvent::KEYCODE_RIGHT_ALT):
556 altDown =
event->getType() == GUIKeyboardEvent::KEYBOARDEVENT_KEY_PRESSED;
559 case (GUIKeyboardEvent::KEYCODE_LEFT_CONTROL):
560 case (GUIKeyboardEvent::KEYCODE_RIGHT_CONTROL):
562 controlDown =
event->getType() == GUIKeyboardEvent::KEYBOARDEVENT_KEY_PRESSED;
565 case (GUIKeyboardEvent::KEYCODE_LEFT_SHIFT):
566 case (GUIKeyboardEvent::KEYCODE_RIGHT_SHIFT):
568 shiftDown =
event->getType() == GUIKeyboardEvent::KEYBOARDEVENT_KEY_PRESSED;
590 unordered_map<string, unordered_set<string>> _mouseOutCandidateEventNodeIds;
591 unordered_map<string, unordered_set<string>> _mouseOutClickCandidateEventNodeIds;
600 if (event.getType() == GUIMouseEvent::MOUSEEVENT_MOVED) {
604 if (event.getType() == GUIMouseEvent::MOUSEEVENT_PRESSED || event.getType() == GUIMouseEvent::MOUSEEVENT_RELEASED) {
610 if (event.getType() == GUIMouseEvent::MOUSEEVENT_DRAGGED) {
611 for (
int i = renderScreensCopy.size() - 1; i >= 0; i--) {
612 auto screen = renderScreensCopy[i];
621 for (
int i = renderScreensCopy.size() - 1; i >= 0; i--) {
622 auto screen = renderScreensCopy[i];
625 if (screen->isVisible() ==
false)
continue;
628 auto processed =
false;
629 auto& floatingNodes = screen->getFloatingNodes();
630 for (
auto j = 0; j < floatingNodes.size(); j++) {
631 auto floatingNode = floatingNodes.at(j);
636 if (event.isProcessed() ==
true)
break;
641 if ((event.getType() == GUIMouseEvent::MOUSEEVENT_MOVED || floatingNode->isEventBelongingToNode(&event) ==
true) &&
642 floatingNode->flow == GUINode_Flow::FLOATING &&
643 floatingNode->conditionsMet ==
true &&
644 ((floatingNode->showOn.getConditions().empty() ==
false && floatingNode->showOn.has(
"always") ==
false) ||
645 (floatingNode->hideOn.getConditions().empty() ==
false && floatingNode->showOn.has(
"never") ==
false))) processed =
true;
648 if (event.isProcessed() ==
true)
break;
650 if (processed ==
true)
event.setProcessed(
true);
652 if (screen->isPopUp() ==
true)
break;
657 if (event.isProcessed() ==
false) {
658 for (
int i = renderScreensCopy.size() - 1; i >= 0; i--) {
659 auto screen = renderScreensCopy[i];
660 if (screen->isVisible() ==
false)
continue;
662 if (screen->isPopUp() ==
true)
break;
667 if (event.getType() == GUIMouseEvent::MOUSEEVENT_RELEASED) {
668 for (
int i = renderScreensCopy.size() - 1; i >= 0; i--) {
669 auto screen = renderScreensCopy[i];
683 for (
int i = renderScreensCopy.size() - 1; i >= 0; i--) {
684 auto screen = renderScreensCopy[i];
685 if (screen->isVisible() ==
false)
continue;
687 if (screen->getInputEventHandler() !=
nullptr) {
688 screen->getInputEventHandler()->handleInputEvents();
690 if (screen->isPopUp() ==
true)
break;
701 guiKeyboardEvent.
setTime(Time::getCurrentMillis());
702 guiKeyboardEvent.
setType(GUIKeyboardEvent::KEYBOARDEVENT_KEY_TYPED);
716 guiKeyboardEvent.
setTime(Time::getCurrentMillis());
717 guiKeyboardEvent.
setType(GUIKeyboardEvent::KEYBOARDEVENT_KEY_PRESSED);
731 guiKeyboardEvent.
setTime(Time::getCurrentMillis());
732 guiKeyboardEvent.
setType(GUIKeyboardEvent::KEYBOARDEVENT_KEY_RELEASED);
747 guiMouseEvent.
setTime(Time::getCurrentMillis());
748 guiMouseEvent.
setType(GUIMouseEvent::MOUSEEVENT_DRAGGED);
751 guiMouseEvent.
setX(x);
752 guiMouseEvent.
setY(y);
768 guiMouseEvent.
setTime(Time::getCurrentMillis());
769 guiMouseEvent.
setType(GUIMouseEvent::MOUSEEVENT_MOVED);
772 guiMouseEvent.
setX(x);
773 guiMouseEvent.
setY(y);
790 guiMouseEvent.
setTime(Time::getCurrentMillis());
791 guiMouseEvent.
setType(state ==
MOUSE_BUTTON_DOWN?GUIMouseEvent::MOUSEEVENT_PRESSED:GUIMouseEvent::MOUSEEVENT_RELEASED);
794 guiMouseEvent.
setX(x);
795 guiMouseEvent.
setY(y);
812 guiMouseEvent.
setTime(Time::getCurrentMillis());
813 guiMouseEvent.
setType(GUIMouseEvent::MOUSEEVENT_WHEEL_MOVED);
816 guiMouseEvent.
setX(x);
817 guiMouseEvent.
setY(y);
820 guiMouseEvent.
setWheelY(direction * 1.0f);
832 guiMouseEvent.
setTime(Time::getCurrentMillis());
833 guiMouseEvent.
setType(GUIMouseEvent::MOUSEEVENT_MOVED);
836 guiMouseEvent.
setX(-10000);
837 guiMouseEvent.
setY(-10000);
847 bool isControlDown =
false;
848 bool isAltDown =
false;
849 bool isShiftDown =
false;
850 #if defined(__APPLE__)
853 #define IS_KEY_DOWN(key, var) \
855 uint8_t index = key / 32 ; \
856 uint8_t shift = key % 32 ; \
857 var = keys[index].bigEndianValue & (1 << shift); \
859 IS_KEY_DOWN(kVK_Command, isControlDown);
860 IS_KEY_DOWN(kVK_Option, isAltDown);
861 IS_KEY_DOWN(kVK_Shift, isShiftDown);
864 if (isControlDown ==
false &&
865 isAltDown ==
false &&
866 isShiftDown ==
false) {
871 guiKeyboardEvent.
setTime(Time::getCurrentMillis());
872 guiKeyboardEvent.
setType(GUIKeyboardEvent::KEYBOARDEVENT_KEY_PRESSED);
886 auto screenNodeWidthConstrained =
width;
887 auto screenNodeHeightConstrained =
height;
889 auto minRatio = 1.0f;
896 screenNodeHeightConstrained = (int)((
float)screenNodeHeightConstrained * minRatio);
901 screenNodeWidthConstrained = (int)((
float)screenNodeWidthConstrained * minRatio);
904 if ((screenNode->
sizeConstraints.
minWidth > 0 && screenNodeWidthConstrained < screenNode->sizeConstraints.minWidth) ||
906 if (screenNode->
sizeConstraints.
minWidth > 0 && screenNodeWidthConstrained < screenNode->sizeConstraints.minWidth) {
909 screenNodeHeightConstrained = (int)((
float)screenNodeHeightConstrained * ratio / minRatio);
911 if (screenNode->
sizeConstraints.
minHeight > 0 && screenNodeHeightConstrained < screenNode->sizeConstraints.minHeight) {
914 screenNodeWidthConstrained = (int)((
float)screenNodeWidthConstrained * ratio / minRatio);
918 screenNode->
setScreenSize(screenNodeWidthConstrained, screenNodeHeightConstrained);
void doneGUIMode()
Set up GUI mode rendering.
void initGUIMode()
Set up GUI mode rendering.
unordered_map< string, unordered_set< string > > mousePressedEventNodeIds
GUIColor unfocussedNodeBorderTopColor
void onMouseMoved(int x, int y) override
On mouse moved.
GUIElementNode * getFocussedNode()
vector< GUIScreenNode * > renderScreens
string focussedNodeScreenId
unordered_map< string, unordered_set< string > > mouseOutCandidateEventNodeIds
static Texture * getImage(const string &applicationRootPath, const string &fileName)
Get image.
void onMouseDragged(int x, int y) override
On mouse dragged.
void focusPreviousNode()
Focus next node.
bool isHavingMouseInteraction(GUINode *node)
Reports if node has currently mouse interaction like dragging or pressing.
void applyRenderScreensChange()
Render screens change.
void removeRenderScreen(const string &screenId)
Remove render screen.
vector< GUIScreenNode * > focusableScreenNodes
vector< GUIElementNode * > focusableNodes
void onMouseButton(int button, int state, int x, int y) override
On mouse moved.
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.
unordered_map< string, bool > mouseIsDragging
void determineFocussedNodes()
Determine focussed nodes.
void onMouseWheel(int button, int direction, int x, int y) override
On mouse wheel.
GUIColor foccussedBorderColor
unordered_map< string, GUIScreenNode * > screens
GUIRenderer * guiRenderer
static STATIC_DLL_IMPEXT unordered_map< string, Texture * > * imageCache
void handleEvents()
Handle screen events.
void reshape(int width, int height)
Reshape.
static STATIC_DLL_IMPEXT unordered_map< string, GUIFont * > * fontCache
string focussedNodeNodeId
void unfocusNode()
Unfocus current focussed node.
void render()
Render GUIs.
void onKeyUp(unsigned char key, int keyCode, int x, int y) override
On key up.
void onKeyDown(unsigned char key, int keyCode, int x, int y) override
On key down.
vector< GUIKeyboardEvent > keyboardEvents
void setFoccussedNode(GUIElementNode *newFoccussedNode)
Set focussed node.
unordered_map< string, unordered_set< string > > mouseOutClickCandidateEventNodeIds
void focusNode()
Focus current focussed node.
void fakeKeyboardModifierEvent()
Fake a keyboard modifier event.
GUIColor unfocussedNodeBorderRightColor
GUIScreenNode * getScreen(const string &id)
Get screen.
void addRenderScreen(const string &screenId)
Add render screen.
void removeScreen(const string &id)
Removes an screen.
void addScreen(const string &id, GUIScreenNode *screen)
Add screen.
void invalidateFocussedNode()
Invalidate focussed node.
void reshapeScreen(GUIScreenNode *screenNode)
Reshape screen.
unordered_map< string, unordered_set< string > > mouseDraggingEventNodeIds
void fakeMouseMovedEvent()
Fake mouse moved event.
void focusNextNode()
Focus next node.
GUIColor unfocussedNodeBorderLeftColor
void reset()
Removes all screens and caches.
void handleKeyboardEvent(GUIKeyboardEvent *event)
Handle mouse event for given node.
static GUIFont * getFont(const string &applicationRootPath, const string &fileName)
Get font.
void resetRenderScreens()
Reset render screens.
void onChar(unsigned int key, int x, int y) override
On char.
GUIColor unfocussedNodeBorderBottomColor
vector< GUIMouseEvent > mouseEvents
void setKeyCode(int32_t code)
Set key code.
void setAltDown(bool altDown)
Set alt down.
void setProcessed(bool processed)
Set event processed.
void setType(GUIKeyboardEventType type)
Set type.
void setControlDown(bool controlDown)
Set control down.
void setKeyChar(char keyChar)
Set key char.
void setTime(int64_t time)
Time in milliseconds.
void setMetaDown(bool metaDown)
Set meta down.
void setShiftDown(bool shiftDown)
Set shift down.
GUIKeyboardEventType getType()
void setYUnscaled(int yUnscaled)
Set y unscaled.
void setAltDown(bool altDown)
Set alt down.
GUIMouseEventType getType()
void setWheelX(float wheelX)
Set up wheel x.
void setProcessed(bool processed)
Set processed.
void setControlDown(bool controlDown)
Set control down.
void setWheelZ(float wheelZ)
Set up wheel z.
void setXUnscaled(int xUnscaled)
Set x unscaled.
void setTime(int64_t time)
Set time.
void setButton(int button)
Set button.
void setShiftDown(bool shiftDown)
Set shift down.
void setType(GUIMouseEventType type)
Set type.
void setWheelY(float wheelY)
Set up wheel y.
void handleKeyboardEvent(GUIKeyboardEvent *event)
Handle keyboard event.
GUINodeConditions & getActiveConditions()
GUI element node conditions.
bool add(const string &condition)
Add a condition.
bool remove(const string &condition)
Remove a condition.
GUI node controller base class.
virtual void handleMouseEvent(GUINode *node, GUIMouseEvent *event)=0
Handle mouse event.
virtual void determineMouseEventNodes(GUIMouseEvent *event, bool floatingNode, unordered_set< string > &eventNodeIds, unordered_set< string > &eventFloatingNodeIds)
Determine mouse event nodes.
int getGUIEffectOffsetX()
GUIParentNode * getParentControllerNode()
GUIScreenNode * getScreenNode()
int getGUIEffectOffsetY()
GUINodeController * getController()
GUI screen node that represents a screen that can be rendered via GUI system.
GUINode * getNodeById(const string &nodeId)
Get GUI node by id.
GUIScreenNode_SizeConstraints sizeConstraints
void setScreenSize(int width, int height)
Set screen size.
GUI Font A font implementation that will parse the output of the AngelCode font tool available at:
void initRendering()
Init rendering.
void doneRendering()
Done rendering.
void setGUI(GUI *gui)
Set GUI.
File system singleton class.
std::exception Exception
Exception base class.