TDME2 1.9.121
BasePropertiesSubController.cpp
Go to the documentation of this file.
2
3#include <map>
4#include <string>
5#include <vector>
6
7#include <tdme/tdme.h>
10#include <tdme/engine/Engine.h>
17#include <tdme/gui/GUI.h>
18#include <tdme/gui/GUIParser.h>
30
31
32using std::map;
33using std::string;
34using std::vector;
35
58
59BasePropertiesSubController::BasePropertiesSubController(EditorView* editorView, const string& rootNode)
60{
61 this->editorView = editorView;
62 this->view = new BasePropertiesSubView(this);
63 this->popUps = editorView->getPopUps();
64 this->rootNodeId = rootNode;
65}
66
68 delete view;
69}
70
72{
73 this->screenNode = screenNode;
74}
75
77 if (prototype->getPropertyCount() > 0) {
78 xml+= "<selectbox-parent-option image=\"resources/engine/images/folder.png\" text=\"" + GUIParser::escapeQuotes("Properties") + "\" value=\"" + GUIParser::escapeQuotes("properties") + "\">\n";
79 for (auto i = 0; i < prototype->getPropertyCount(); i++) {
80 auto property = prototype->getPropertyByIndex(i);
81 xml+= " <selectbox-option image=\"resources/engine/images/script.png\" text=\"" + GUIParser::escapeQuotes(property->getName() + ": " + property->getValue()) + "\" id=\"" + GUIParser::escapeQuotes("properties." + property->getName()) + "\" value=\"" + GUIParser::escapeQuotes("properties." + property->getName()) + "\" />\n";
82 }
83 xml+= "</selectbox-parent-option>\n";
84 }
85}
86
89 "<template id=\"details_base\" src=\"resources/engine/gui/template_details_base.xml\" />\n"
90 );
91
92 try {
93 required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("details_base"))->getActiveConditions().add("open");
94 required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("base_name"))->getController()->setValue(MutableString(baseProperties->getName()));
95 required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("base_description"))->getController()->setValue(MutableString(baseProperties->getDescription()));
96 } catch (Exception& exception) {
97 Console::println(string("PrototypeBaseSubController::setPrototypeBaseDetails(): An error occurred: ") + exception.what());;
98 showErrorPopUp("Warning", (string(exception.what())));
99 }
100}
101
103 try {
104 baseProperties->setName(required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("base_name"))->getController()->getValue().getString());
105 baseProperties->setDescription(required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("base_description"))->getController()->getValue().getString());
106 } catch (Exception& exception) {
107 Console::println(string("PrototypeBaseSubController::applyPrototypeBaseDetails(): An error occurred: ") + exception.what());;
108 showErrorPopUp("Warning", (string(exception.what())));
109 }
110}
111
112void BasePropertiesSubController::setPropertyDetails(BaseProperties* baseProperties, const string& propertyName) {
113 auto property = baseProperties->getProperty(propertyName);
114 if (property == nullptr) return;
115
117 "<template id=\"details_property\" src=\"resources/engine/gui/template_details_property.xml\" />\n"
118 );
119
120 try {
121 required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("details_property"))->getActiveConditions().add("open");
122 required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("property_value"))->getController()->setValue(MutableString(property->getValue()));
123 } catch (Exception& exception) {
124 Console::println(string("PrototypeBaseSubController::setPropertyDetails(): An error occurred: ") + exception.what());;
125 showErrorPopUp("Warning", (string(exception.what())));
126 }
127}
128
129void BasePropertiesSubController::updateDetails(BaseProperties* baseProperties, const string& outlinerNode) {
130 if (outlinerNode == rootNodeId) {
131 setBasePropertiesDetails(baseProperties);
132 } else
133 if (StringTools::startsWith(outlinerNode, "properties.") == true) {
134 auto selectedPropertyName = StringTools::substring(outlinerNode, string("properties.").size(), outlinerNode.size());
135 setPropertyDetails(baseProperties, selectedPropertyName);
136 }
137}
138
139void BasePropertiesSubController::applyPropertyDetails(BaseProperties* baseProperties, const string& propertyName) {
140 try {
141 if (baseProperties->updateProperty(
142 propertyName,
143 propertyName,
144 required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("property_value"))->getController()->getValue().getString()) == false) {
145 throw ExceptionBase("Could not apply property details");
146 }
147 } catch (Exception& exception) {
148 Console::println(string("PrototypeBaseSubController::applyPropertyDetails(): An error occurred: ") + exception.what());;
149 showErrorPopUp("Warning", (string(exception.what())));
150 }
151}
152
154 auto propertyCreated = false;
155 auto propertyName = string() + "New property";
156 if (baseProperties->addProperty(
157 propertyName,
158 "No value"
159 ) == true) {
160 propertyCreated = true;
161 } else {
162 //
163 for (auto i = 1; i < 10001; i++) {
164 propertyName = string() + "New property " + to_string(i);
165 if (baseProperties->addProperty(
166 propertyName,
167 "No value"
168 ) == true) {
169 propertyCreated = true;
170 //
171 break;
172 }
173 }
174 }
175 try {
176 if (propertyCreated == false) {
177 throw ExceptionBase("Could not create property");
178 }
179 } catch (Exception& exception) {
180 Console::println(string("PrototypeBaseSubController::createProperty(): An error occurred: ") + exception.what());;
181 showErrorPopUp("Warning", (string(exception.what())));
182 }
183
184 if (propertyCreated == true) {
185 editorView->reloadTabOutliner(string() + "properties." + propertyName);
187 baseProperties,
188 propertyName
189 );
190 }
191}
192
193void BasePropertiesSubController::startRenameProperty(BaseProperties* baseProperties, const string& propertyName) {
194 auto property = baseProperties->getProperty(propertyName);
195 if (property == nullptr) return;
196 auto selectBoxOptionParentNode = dynamic_cast<GUIParentNode*>(editorView->getScreenController()->getScreenNode()->getNodeById("properties." + propertyName));
197 if (selectBoxOptionParentNode == nullptr) return;
198 renamePropertyName = propertyName;
199 selectBoxOptionParentNode->replaceSubNodes(
200 "<template id=\"tdme.properties.rename_input\" hint=\"Property name\" text=\"" + GUIParser::escapeQuotes(property->getName()) + "\"src=\"resources/engine/gui/template_outliner_rename.xml\" />\n",
201 true
202 );
203 Engine::getInstance()->getGUI()->setFoccussedNode(dynamic_cast<GUIElementNode*>(editorView->getScreenController()->getScreenNode()->getNodeById("tdme.properties.rename_input")));
204 editorView->getScreenController()->getScreenNode()->delegateValueChanged(required_dynamic_cast<GUIElementNode*>(editorView->getScreenController()->getScreenNode()->getNodeById("selectbox_outliner")));
205}
206
208 auto property = baseProperties->getProperty(renamePropertyName);
209 renamePropertyName.clear();
210 if (property != nullptr) {
211 try {
212 if (baseProperties->renameProperty(
213 property->getName(),
214 required_dynamic_cast<GUIElementNode*>(screenNode->getNodeById("tdme.properties.rename_input"))->getController()->getValue().getString()
215 ) == false) {
216 //
217 throw ExceptionBase("Could not rename property");
218 }
219 } catch (Exception& exception) {
220 Console::println(string("PrototypeBaseSubController::renameProperty(): An error occurred: ") + exception.what());;
221 showErrorPopUp("Warning", (string(exception.what())));
222 }
223 }
224
225 //
226 class ReloadTabOutlinerAction: public Action {
227 private:
229 string outlinerNode;
230 public:
231 ReloadTabOutlinerAction(EditorView* editorView, const string& outlinerNode): editorView(editorView), outlinerNode(outlinerNode) {}
232 virtual void performAction() {
233 editorView->reloadTabOutliner(outlinerNode);
234 }
235 };
236 Engine::getInstance()->enqueueAction(new ReloadTabOutlinerAction(editorView, "properties" + (property != nullptr?"." + property->getName():"")));
237}
238
240{
241 if (node->getId() == "dropdown_outliner_add") {
242 auto addOutlinerType = node->getController()->getValue().getString();
243 if (addOutlinerType == "property") {
244 createProperty(baseProperties);
245 }
246 } else
247 if (node->getId() == "selectbox_outliner") {
248 auto outlinerNode = editorView->getScreenController()->getOutlinerSelection();
249 if (StringTools::startsWith(outlinerNode, "properties.") == true) {
250 auto selectedPropertyName = StringTools::substring(outlinerNode, string("properties.").size(), outlinerNode.size());
251 setPropertyDetails(baseProperties, selectedPropertyName);
252 }
253 }
254}
255
257{
259 if (node->getId() == "tdme.properties.rename_input") {
260 renameProperty(baseProperties);
261 }
262 }
263}
264
266}
267
269 if (node->getId() == "tdme.properties.rename_input") {
270 renameProperty(baseProperties);
271 } else {
272 for (auto& applyPropertyNode: applyPropertyNodes) {
273 if (node->getId() == applyPropertyNode) {
274 applyPropertyValue(baseProperties);
275 break;
276 }
277 }
278 for (auto& applyBaseNode: applyBaseNodes) {
279 if (node->getId() == applyBaseNode) {
280 applyPropertyDetails(baseProperties);
281 break;
282 }
283 }
284 }
285}
286
287void BasePropertiesSubController::onContextMenuRequested(GUIElementNode* node, int mouseX, int mouseY, BaseProperties* baseProperties) {
288 if (node->getId() == "selectbox_outliner") {
289 auto outlinerNode = editorView->getScreenController()->getOutlinerSelection();
290 if (outlinerNode == "properties") {
291 // clear
293 // add
294 class OnAddPropertyAction: public virtual Action
295 {
296 public:
297 void performAction() override {
298 prototypeBaseSubController->createProperty(baseProperties);
299 }
300 OnAddPropertyAction(BasePropertiesSubController* prototypeBaseSubController, BaseProperties* baseProperties): prototypeBaseSubController(prototypeBaseSubController), baseProperties(baseProperties) {
301 }
302 private:
303 BasePropertiesSubController* prototypeBaseSubController;
304 BaseProperties* baseProperties;
305 };
306 popUps->getContextMenuScreenController()->addMenuItem("Add Property", "contextmenu_add", new OnAddPropertyAction(this, baseProperties));
307 //
308 popUps->getContextMenuScreenController()->show(mouseX, mouseY);
309 } else
310 if (StringTools::startsWith(outlinerNode, "properties.") == true) {
311 // clear
313 // rename
314 class OnRenameAction: public virtual Action
315 {
316 public:
317 void performAction() override {
318 auto outlinerNode = prototypeBaseSubController->editorView->getScreenController()->getOutlinerSelection();
319 if (StringTools::startsWith(outlinerNode, "properties.") == true) {
320 prototypeBaseSubController->startRenameProperty(
321 baseProperties,
322 StringTools::substring(outlinerNode, string("properties.").size(), outlinerNode.size())
323 );
324 }
325 }
326 OnRenameAction(BasePropertiesSubController* prototypeBaseSubController, BaseProperties* baseProperties): prototypeBaseSubController(prototypeBaseSubController), baseProperties(baseProperties) {
327 }
328 private:
329 BasePropertiesSubController* prototypeBaseSubController;
330 BaseProperties* baseProperties;
331 };
332 popUps->getContextMenuScreenController()->addMenuItem("Rename", "contextmenu_rename", new OnRenameAction(this, baseProperties));
333
334 // separator
336
337 // delete
338 class OnDeleteAction: public virtual Action
339 {
340 public:
341 void performAction() override {
342 auto outlinerNode = prototypeBaseSubController->editorView->getScreenController()->getOutlinerSelection();
343 if (StringTools::startsWith(outlinerNode, "properties.") == true) {
344 auto selectedPropertyName = StringTools::substring(outlinerNode, string("properties.").size(), outlinerNode.size());
345 baseProperties->removeProperty(selectedPropertyName);
346 prototypeBaseSubController->editorView->reloadTabOutliner("properties");
347 }
348 }
349 OnDeleteAction(BasePropertiesSubController* prototypeBaseSubController, BaseProperties* baseProperties): prototypeBaseSubController(prototypeBaseSubController), baseProperties(baseProperties) {
350 }
351 private:
352 BasePropertiesSubController* prototypeBaseSubController;
353 BaseProperties* baseProperties;
354 };
355 popUps->getContextMenuScreenController()->addMenuItem("Delete", "contextmenu_delete", new OnDeleteAction(this, baseProperties));
356
357 //
358 popUps->getContextMenuScreenController()->show(mouseX, mouseY);
359 }
360 }
361}
362
364 auto outlinerNode = editorView->getScreenController()->getOutlinerSelection();
365 auto selectedPropertyName = StringTools::substring(outlinerNode, string("properties.").size(), outlinerNode.size());
366 applyPropertyDetails(baseProperties, selectedPropertyName);
367 //
368 class ReloadTabOutlinerAction: public Action {
369 private:
371 string outlinerNode;
372 public:
373 ReloadTabOutlinerAction(EditorView* editorView, const string& outlinerNode): editorView(editorView), outlinerNode(outlinerNode) {}
374 virtual void performAction() {
375 editorView->reloadTabOutliner(outlinerNode);
376 }
377 };
378 Engine::getInstance()->enqueueAction(new ReloadTabOutlinerAction(editorView, outlinerNode));
379}
380
381void BasePropertiesSubController::showErrorPopUp(const string& caption, const string& message)
382{
383 popUps->getInfoDialogScreenController()->show(caption, message);
384}
Engine main class.
Definition: Engine.h:122
BaseProperty * getPropertyByIndex(int idx)
Get property by index.
bool updateProperty(const string &oldName, const string &name, const string &value)
Update a property.
void setName(const string &name)
Set up name.
BaseProperty * getProperty(const string &name)
Retrieve property by name.
bool addProperty(const string &name, const string &value)
Add a property.
bool removeProperty(const string &name)
Removes a property.
bool renameProperty(const string &oldName, const string &name)
Rename a property.
void setDescription(const string &description)
Set up description.
Base property model class.
Definition: BaseProperty.h:16
GUI parser.
Definition: GUIParser.h:39
GUI node controller base class.
virtual const MutableString & getValue()=0
GUI node base class.
Definition: GUINode.h:63
const string & getId()
Definition: GUINode.h:329
GUINodeController * getController()
Definition: GUINode.h:586
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
GUINode * getNodeById(const string &nodeId)
Get GUI node by id.
void delegateValueChanged(GUIElementNode *node)
Delegate value changed.
void addMenuItem(const string &text, const string &id, Action *action=nullptr)
Add menu item.
void show(const string &caption, const string &message)
Shows the pop up.
Pop ups controller accessor class.
Definition: PopUps.h:19
ContextMenuScreenController * getContextMenuScreenController()
Definition: PopUps.h:70
InfoDialogScreenController * getInfoDialogScreenController()
Definition: PopUps.h:49
void onValueChanged(GUIElementNode *node, BaseProperties *baseProperties)
On value changed.
void onFocus(GUIElementNode *node, BaseProperties *baseProperties)
On focus.
void applyPropertyDetails(BaseProperties *baseProperties)
Apply property base details.
void onUnfocus(GUIElementNode *node, BaseProperties *baseProperties)
On unfocus.
void setBasePropertiesDetails(BaseProperties *baseProperties)
Set property base details.
void updateDetails(BaseProperties *baseProperties, const string &outlinerNode)
Update details panel.
void setPropertyDetails(BaseProperties *baseProperties, const string &propertyName)
Set property details.
void showErrorPopUp(const string &caption, const string &message)
Shows the error pop up.
void onActionPerformed(GUIActionListenerType type, GUIElementNode *node, BaseProperties *baseProperties)
On action performed.
void onContextMenuRequested(GUIElementNode *node, int mouseX, int mouseY, BaseProperties *baseProperties)
On context menu requested.
void createBasePropertiesXML(BaseProperties *baseProperties, string &xml)
Create base properties XML for outliner.
void startRenameProperty(BaseProperties *baseProperties, const string &propertyName)
Start rename property.
void setDetailsContent(const string &xml)
Set details content.
Definition: EditorView.cpp:218
EditorScreenController * getScreenController()
Definition: EditorView.h:57
void reloadTabOutliner(const string &newSelectionValue=string())
Reload tab outliner.
Definition: EditorView.cpp:222
Console class.
Definition: Console.h:26
Exception base class.
Definition: ExceptionBase.h:20
Mutable string class.
Definition: MutableString.h:16
const string & getString() const
String tools class.
Definition: StringTools.h:20
std::exception Exception
Exception base class.
Definition: Exception.h:19
Action Interface.
Definition: Action.h:12