TDME2 1.9.121
ContextMenuScreenController.cpp
Go to the documentation of this file.
2
3#include <string>
4#include <unordered_map>
5
6#include <tdme/tdme.h>
17#include <tdme/gui/GUI.h>
18#include <tdme/gui/GUIParser.h>
19#include <tdme/math/Math.h>
24
26
27using std::string;
28using std::unordered_map;
29
46
47ContextMenuScreenController::ContextMenuScreenController()
48{
49}
50
52{
53 for (auto& actionIt: actions) delete actionIt.second;
54 actions.clear();
55 screenNode = nullptr;
56}
57
59{
60 return screenNode;
61}
62
64{
65 try {
66 screenNode = GUIParser::parse("resources/engine/gui", "popup_contextmenu.xml");
67 screenNode->setVisible(false);
70 contextMenuNode = required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("contextmenu"));
71 } catch (Exception& exception) {
72 Console::print(string("ContextMenuScreenController::initialize(): An error occurred: "));
73 Console::println(string(exception.what()));
74 }
75}
76
78{
79}
80
81void ContextMenuScreenController::show(int mouseX, int mouseY)
82{
83 auto x = static_cast<int>((float)mouseX * (float)screenNode->getScreenWidth() / (float)Engine::getInstance()->getGUI()->getWidth());
84 auto y = static_cast<int>((float)mouseY * (float)screenNode->getScreenHeight() / (float)Engine::getInstance()->getGUI()->getHeight());
87 contextMenuNode->getRequestsConstraints().leftType = GUINode_RequestedConstraints_RequestedConstraintsType::PIXEL;
89 contextMenuNode->getRequestsConstraints().topType = GUINode_RequestedConstraints_RequestedConstraintsType::PIXEL;
93 Engine::getInstance()->getGUI()->setFoccussedNode(contextMenuNode);
94}
95
97{
98 screenNode->setVisible(false);
99}
100
102{
104 close();
105 auto actionIt = actions.find(node->getId());
106 if (actionIt != actions.end() && actionIt->second != nullptr) actionIt->second->performAction();
107 }
108}
109
111}
112
114}
115
117 required_dynamic_cast<GUIParentNode*>(screenNode->getInnerNodeById(contextMenuNode->getId()))->clearSubNodes();
118 for (auto& actionIt: actions) delete actionIt.second;
119 actions.clear();
120}
121
122void ContextMenuScreenController::addMenuItem(const string& text, const string& id, Action* action) {
123 required_dynamic_cast<GUIParentNode*>(screenNode->getInnerNodeById(contextMenuNode->getId()))->addSubNodes(
124 "<context-menu-item text=\"" + GUIParser::escapeQuotes(text) + "\" id=\"" + GUIParser::escapeQuotes(id) + "\" />",
125 true
126 );
127 auto actionIt = actions.find(id);
128 if (actionIt != actions.end() && actionIt->second != nullptr) delete actionIt->second;
129 if (action != nullptr) actions[id] = action;
130}
131
133 required_dynamic_cast<GUIParentNode*>(screenNode->getInnerNodeById(contextMenuNode->getId()))->addSubNodes(
134 "<menu-separator />",
135 true
136 );
137}
Engine main class.
Definition: Engine.h:122
GUI parser.
Definition: GUIParser.h:39
GUI node base class.
Definition: GUINode.h:63
GUINode_RequestedConstraints & getRequestsConstraints()
Definition: GUINode.h:380
const string & getId()
Definition: GUINode.h:329
GUINode_ComputedConstraints & getComputedConstraints()
Definition: GUINode.h:387
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
void setVisible(bool visible)
Set visible.
GUINode * getNodeById(const string &nodeId)
Get GUI node by id.
void layout() override
Layout.
void addActionListener(GUIActionListener *listener)
Add action listener.
GUINode * getInnerNodeById(const string &nodeId)
Get inner GUI node by id.
void addFocusListener(GUIFocusListener *listener)
Add focus listener.
Standard math functions.
Definition: Math.h:21
void onActionPerformed(GUIActionListenerType type, GUIElementNode *node) override
void addMenuItem(const string &text, const string &id, Action *action=nullptr)
Add menu item.
Console class.
Definition: Console.h:26
Mutable string class.
Definition: MutableString.h:16
String tools class.
Definition: StringTools.h:20
std::exception Exception
Exception base class.
Definition: Exception.h:19
GUINode_RequestedConstraints_RequestedConstraintsType * topType
GUINode_RequestedConstraints_RequestedConstraintsType * leftType
Action Interface.
Definition: Action.h:12