78#define AVOID_NULLPTR_STRING(arg) (arg == nullptr?"":arg)
123 if (node->
getId() ==
"selectbox_outliner") {
126 if (node->
getId() ==
"dropdown_outliner_add") {
128 if (addOutlinerType ==
"screen") {
133 if (node->
getId() ==
"projectedui_meshnode") {
137 if (node->
getId() ==
"projectedui_animation") {
150 if (node->
getId() ==
"selectbox_outliner") {
152 if (outlinerNode ==
"screens") {
157 class OnAddScreenAction:
public virtual Action
160 void performAction()
override {
162 class AddScreenAction:
public Action {
167 uiEditorTabController(uiEditorTabController) {
169 virtual void performAction() {
175 Engine::getInstance()->enqueueAction(
176 new AddScreenAction(uiEditorTabController)
179 OnAddScreenAction(
UIEditorTabController* uiEditorTabController): uiEditorTabController(uiEditorTabController) {
187 class OnScreensReloadAction:
public virtual Action
190 void performAction()
override {
192 class ReloadScreensAction:
public Action {
197 uiEditorTabController(uiEditorTabController) {
199 virtual void performAction() {
203 Engine::getInstance()->enqueueAction(
204 new ReloadScreensAction(uiEditorTabController)
207 OnScreensReloadAction(
UIEditorTabController* uiEditorTabController): uiEditorTabController(uiEditorTabController) {
217 if (StringTools::endsWith(outlinerNode,
".0") ==
true) {
218 auto screenIdx = Integer::parse(StringTools::substring(outlinerNode, 0, outlinerNode.find(
".")));
224 class OnScreenRemoveAction:
public virtual Action
227 void performAction()
override {
229 class AddScreenAction:
public Action {
235 uiEditorTabController(uiEditorTabController),
236 screenIdx(screenIdx) {
238 virtual void performAction() {
244 Engine::getInstance()->enqueueAction(
245 new AddScreenAction(uiEditorTabController, screenIdx)
248 OnScreenRemoveAction(
UIEditorTabController* uiEditorTabController,
int screenIdx): uiEditorTabController(uiEditorTabController), screenIdx(screenIdx) {
265 xml+=
"<selectbox-option text=\"<" + GUIParser::escapeQuotes(xmlParentNode->
Value()) +
">" + (nodeId.empty() ==
false?string(
" (") + nodeId +
")":
"") +
"\" value=\"" + to_string(screenIdx) +
"." + GUIParser::escapeQuotes(to_string(nodeIdx++)) +
"\" />\n";
268 xml+=
"<selectbox-parent-option text=\"<" + GUIParser::escapeQuotes(xmlParentNode->
Value()) +
">" + (nodeId.empty() ==
false?string(
" (") + nodeId +
")":
"") +
"\" value=\"" + to_string(screenIdx) +
"." + GUIParser::escapeQuotes(to_string(nodeIdx++)) +
"\" >\n";
272 xml+=
"</selectbox-parent-option>\n";
278 xml+=
"<selectbox-parent-option text=\"Screens\" value=\"screens\">\n";
282 xml+=
"<selectbox-option text=\"<screen>\" value=\"" + to_string(screenIdx) +
".0\" />\n";
287 auto screenXML = FileSystem::getInstance()->getContentAsString(
292 xmlDocument.
Parse(screenXML.c_str());
293 if (xmlDocument.
Error() ==
true) {
294 auto message = string(
"UIEditorTabController::setOutlinerContent(): Could not parse XML. Error='") + string(xmlDocument.
ErrorDesc()) +
"':\n\n" + screenXML;
295 Console::println(message);
306 xml+=
"</selectbox-parent-option>\n";
312 string(
"<dropdown-option text=\"Screen\" value=\"screen\" />\n")
317 if (outlinerNode ==
"screens") {
320 if (StringTools::endsWith(outlinerNode,
".0") ==
true) {
329 string(
"<template id=\"details_screen\" src=\"resources/engine/gui/template_details_screen.xml\" />\n")
333 required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"details_screen"))->getActiveConditions().add(
"open");
335 Console::println(
string(
"UIEditorTabController::updateScreenDetails(): An error occurred: ") + exception.what());;
342 string(
"<template id=\"details_screens\" src=\"resources/engine/gui/template_details_projectedui.xml\" />\n")
347 required_dynamic_cast<GUIElementNode*>(
screenNode->
getNodeById(
"details_screens"))->getActiveConditions().add(
"open");
350 Console::println(
string(
"UIEditorTabController::updateScreensDetails(): An error occurred: ") + exception.what());;
358 string modelMeshNodesXML;
361 "<dropdown-option text=\"<None>\" value=\"\" " + (modelMeshNodesXML.empty() ==
true?
"selected=\"true\" ":
"") +
" />\n";
362 if (model !=
nullptr) {
363 for (
auto& it: model->getNodes()) {
364 auto& nodeId = it.second->
getId();
366 "<dropdown-option text=\"" +
367 GUIParser::escapeQuotes(nodeId) +
369 GUIParser::escapeQuotes(nodeId) +
371 (modelMeshNodesXML == nodeId?
"selected=\"true\" ":
"") +
376 required_dynamic_cast<GUIParentNode*>(
screenNode->
getInnerNodeById(
"projectedui_meshnode_scrollarea"))->replaceSubNodes(modelMeshNodesXML,
true);
378 Console::print(
string(
"UIEditorTabController::updateScreensDetails(): An error occurred: "));
379 Console::println(
string(exception.what()));
384 string animationsXML;
385 animationsXML = animationsXML +
"<dropdown-option text=\"<No animation>\" value=\"\" selected=\"true\" />";
386 if (model !=
nullptr) {
387 for (
auto it: model->getAnimationSetups()) {
388 auto animationSetup = it.second;
389 if (animationSetup->isOverlayAnimationSetup() ==
true)
continue;
391 animationsXML +
"<dropdown-option text=\"" +
392 GUIParser::escapeQuotes(animationSetup->getId()) +
394 GUIParser::escapeQuotes(animationSetup->getId()) +
400 required_dynamic_cast<GUIParentNode*>(
screenNode->
getInnerNodeById(
"projectedui_animation_scrollarea"))->replaceSubNodes(animationsXML,
true);
402 Console::print(
string(
"ModelEditorTabController::setAnimationPreviewDetails(): An error occurred: "));
403 Console::println(
string(exception.what()));
409 class OnLoadScreen:
public virtual Action
412 void performAction()
override {
414 class LoadScreenAction:
public Action {
421 LoadScreenAction(
UIEditorTabController* uiEditorTabController,
int screenIdx,
const string& pathName,
const string& fileName):
422 uiEditorTabController(uiEditorTabController),
423 screenIdx(screenIdx),
427 virtual void performAction() {
431 view->
setScreen(screenIdx, GUIParser::parse(pathName, fileName));
435 "UIEditorTabController::onLoadScreen(): ReloadScreensAction::performAction(): An error occurred: " + exception.what()
442 Engine::getInstance()->enqueueAction(
443 new LoadScreenAction(
444 uiEditorTabController,
446 uiEditorTabController->popUps->getFileDialogScreenController()->getPathName(),
447 uiEditorTabController->popUps->getFileDialogScreenController()->getFileName()
450 uiEditorTabController->view->getPopUps()->getFileDialogScreenController()->close();
459 : uiEditorTabController(uiEditorTabController), screenIdx(screenIdx) {
468 auto screenIdx = Integer::parse(StringTools::substring(outlinerNode, 0, outlinerNode.find(
".")));
475 "Load screen from: ",
479 new OnLoadScreen(
this, screenIdx)
485 class UnsetScreenAction:
public Action {
491 uiEditorTabController(uiEditorTabController),
492 screenIdx(screenIdx) {
494 virtual void performAction() {
502 auto screenIdx = Integer::parse(StringTools::substring(outlinerNode, 0, outlinerNode.find(
".")));
504 Engine::getInstance()->enqueueAction(
505 new UnsetScreenAction(
514 class ReloadScreensAction:
public Action {
519 uiEditorTabController(uiEditorTabController) {
522 virtual void performAction() {
533 Tools::getPathName(fileName),
534 Tools::getFileName(fileName)
540 "UIEditorTabController::onLoadScreen(): ReloadScreensAction::performAction(): An error occurred: " + exception.what()
548 Engine::getInstance()->enqueueAction(
new ReloadScreensAction(
this));
552 Console::println(
"UIEditorTabController::onLoadPrototype()");
553 class OnLoadPrototype:
public virtual Action
556 void performAction()
override {
558 class LoadPrototypeAction:
public Action {
564 LoadPrototypeAction(
UIEditorTabController* uiEditorTabController,
const string& pathName,
const string& fileName):
565 uiEditorTabController(uiEditorTabController),
569 virtual void performAction() {
578 Engine::getInstance()->enqueueAction(
579 new LoadPrototypeAction(
580 uiEditorTabController,
581 uiEditorTabController->popUps->getFileDialogScreenController()->getPathName(),
582 uiEditorTabController->popUps->getFileDialogScreenController()->getFileName()
585 uiEditorTabController->view->getPopUps()->getFileDialogScreenController()->close();
592 OnLoadPrototype(
UIEditorTabController* uiEditorTabController): uiEditorTabController(uiEditorTabController) {
604 "Load prototype from: ",
608 new OnLoadPrototype(
this)
613 Console::println(
"UIEditorTabController::onRemoveModel()");
615 class RemovePrototypeAction:
public Action {
619 RemovePrototypeAction(
UIEditorTabController* uiEditorTabController): uiEditorTabController(uiEditorTabController) {
621 virtual void performAction() {
628 Engine::getInstance()->enqueueAction(
new RemovePrototypeAction(
this));
634 Console::println(
"UIEditorTabController::onActionPerformed(): " + node->
getId());
635 if (node->
getId() ==
"screen_open") {
638 if (node->
getId() ==
"screen_remove") {
641 if (node->
getId() ==
"screen_browseto") {
644 if (node->
getId() ==
"projectedui_prototype_open") {
647 if (node->
getId() ==
"projectedui_prototype_remove") {
#define AVOID_NULLPTR_STRING(arg)
Representation of a 3d model.
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.
const string & getFileName()
GUINode * getInnerNodeById(const string &nodeId)
Get inner GUI node by id.
File system singleton class.
const string & getString() const
An attribute is a name-value pair.
Always the top level node.
virtual const char * Parse(const char *p, TiXmlParsingData *data=0, TiXmlEncoding encoding=TIXML_DEFAULT_ENCODING)
Parse the given null terminated block of xml data.
const TiXmlElement * RootElement() const
Get the root element – the only top level element – of the document.
const char * ErrorDesc() const
Contains a textual (english) description of the error if one occurs.
bool Error() const
If an error occurs, Error will be set to true.
The element is a container class.
const char * Attribute(const char *name) const
Given an attribute name, Attribute() returns the value for the attribute of that name,...
const TiXmlElement * NextSiblingElement() const
Convenience function to get through elements.
const char * Value() const
The meaning of 'value' changes for the specific type of TiXmlNode.
const TiXmlElement * FirstChildElement() const
Convenience function to get through elements.
std::exception Exception
Exception base class.