59BasePropertiesSubController::BasePropertiesSubController(
EditorView* editorView,
const string& rootNode)
78 xml+=
"<selectbox-parent-option image=\"resources/engine/images/folder.png\" text=\"" + GUIParser::escapeQuotes(
"Properties") +
"\" value=\"" + GUIParser::escapeQuotes(
"properties") +
"\">\n";
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";
83 xml+=
"</selectbox-parent-option>\n";
89 "<template id=\"details_base\" src=\"resources/engine/gui/template_details_base.xml\" />\n"
93 required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"details_base"))->getActiveConditions().add(
"open");
97 Console::println(
string(
"PrototypeBaseSubController::setPrototypeBaseDetails(): An error occurred: ") + exception.what());;
104 baseProperties->
setName(required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"base_name"))->getController()->getValue().getString());
107 Console::println(
string(
"PrototypeBaseSubController::applyPrototypeBaseDetails(): An error occurred: ") + exception.what());;
113 auto property = baseProperties->
getProperty(propertyName);
114 if (property ==
nullptr)
return;
117 "<template id=\"details_property\" src=\"resources/engine/gui/template_details_property.xml\" />\n"
121 required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"details_property"))->getActiveConditions().add(
"open");
124 Console::println(
string(
"PrototypeBaseSubController::setPropertyDetails(): An error occurred: ") + exception.what());;
133 if (StringTools::startsWith(outlinerNode,
"properties.") ==
true) {
134 auto selectedPropertyName = StringTools::substring(outlinerNode,
string(
"properties.").size(), outlinerNode.size());
144 required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"property_value"))->getController()->getValue().getString()) ==
false) {
148 Console::println(
string(
"PrototypeBaseSubController::applyPropertyDetails(): An error occurred: ") + exception.what());;
154 auto propertyCreated =
false;
155 auto propertyName = string() +
"New property";
160 propertyCreated =
true;
163 for (
auto i = 1; i < 10001; i++) {
164 propertyName = string() +
"New property " + to_string(i);
169 propertyCreated =
true;
176 if (propertyCreated ==
false) {
180 Console::println(
string(
"PrototypeBaseSubController::createProperty(): An error occurred: ") + exception.what());;
184 if (propertyCreated ==
true) {
194 auto property = baseProperties->
getProperty(propertyName);
195 if (property ==
nullptr)
return;
197 if (selectBoxOptionParentNode ==
nullptr)
return;
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",
210 if (property !=
nullptr) {
214 required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"tdme.properties.rename_input"))->getController()->getValue().getString()
220 Console::println(
string(
"PrototypeBaseSubController::renameProperty(): An error occurred: ") + exception.what());;
226 class ReloadTabOutlinerAction:
public Action {
232 virtual void performAction() {
236 Engine::getInstance()->enqueueAction(
new ReloadTabOutlinerAction(
editorView,
"properties" + (property !=
nullptr?
"." + property->getName():
"")));
241 if (node->
getId() ==
"dropdown_outliner_add") {
243 if (addOutlinerType ==
"property") {
247 if (node->
getId() ==
"selectbox_outliner") {
249 if (StringTools::startsWith(outlinerNode,
"properties.") ==
true) {
250 auto selectedPropertyName = StringTools::substring(outlinerNode,
string(
"properties.").size(), outlinerNode.size());
259 if (node->
getId() ==
"tdme.properties.rename_input") {
269 if (node->
getId() ==
"tdme.properties.rename_input") {
273 if (node->
getId() == applyPropertyNode) {
279 if (node->
getId() == applyBaseNode) {
288 if (node->
getId() ==
"selectbox_outliner") {
290 if (outlinerNode ==
"properties") {
294 class OnAddPropertyAction:
public virtual Action
297 void performAction()
override {
298 prototypeBaseSubController->createProperty(baseProperties);
310 if (StringTools::startsWith(outlinerNode,
"properties.") ==
true) {
314 class OnRenameAction:
public virtual Action
317 void performAction()
override {
318 auto outlinerNode = prototypeBaseSubController->editorView->getScreenController()->getOutlinerSelection();
319 if (StringTools::startsWith(outlinerNode,
"properties.") ==
true) {
320 prototypeBaseSubController->startRenameProperty(
322 StringTools::substring(outlinerNode,
string(
"properties.").size(), outlinerNode.size())
338 class OnDeleteAction:
public virtual Action
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());
346 prototypeBaseSubController->editorView->reloadTabOutliner(
"properties");
365 auto selectedPropertyName = StringTools::substring(outlinerNode,
string(
"properties.").size(), outlinerNode.size());
368 class ReloadTabOutlinerAction:
public Action {
374 virtual void performAction() {
378 Engine::getInstance()->enqueueAction(
new ReloadTabOutlinerAction(
editorView, outlinerNode));
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.
const string & getDescription()
bool renameProperty(const string &oldName, const string &name)
Rename a property.
void setDescription(const string &description)
Set up description.
Base property model class.
GUI node controller base class.
virtual const MutableString & getValue()=0
GUINodeController * getController()
GUI parent node base class thats supporting child nodes.
GUI screen node that represents a screen that can be rendered via GUI system.
GUINode * getNodeById(const string &nodeId)
Get GUI node by id.
void delegateValueChanged(GUIElementNode *node)
Delegate value changed.
const string & getString() const
std::exception Exception
Exception base class.