TDME2 1.9.121
TriggerEditorTabController.cpp
Go to the documentation of this file.
2
3#include <string>
4
5#include <tdme/tdme.h>
12#include <tdme/gui/GUI.h>
13#include <tdme/gui/GUIParser.h>
31
32using std::string;
33
35
59
60TriggerEditorTabController::TriggerEditorTabController(TriggerEditorTabView* view)
61{
62 this->view = view;
63 this->popUps = view->getPopUps();
66 this->prototypeDisplaySubController = new PrototypeDisplaySubController(view->getEditorView(), view, this->prototypePhysicsSubController->getView());
67}
68
73}
74
76 return view;
77}
78
80{
81 return screenNode;
82}
83
85{
86 this->screenNode = screenNode;
90}
91
93{
94}
95
97{
98 auto fileName = view->getPrototype() != nullptr?view->getPrototype()->getFileName():"";
99 try {
100 if (fileName.empty() == true) throw ExceptionBase("Could not save file. No filename known");
101 view->saveFile(
102 Tools::getPathName(fileName),
103 Tools::getFileName(fileName)
104 );
105 } catch (Exception& exception) {
106 showErrorPopUp("Warning", (string(exception.what())));
107 }
108}
109
111{
112 class OnTriggerSave: public virtual Action
113 {
114 public:
115 void performAction() override {
116 try {
117 triggerEditorTabController->view->saveFile(
118 triggerEditorTabController->popUps->getFileDialogScreenController()->getPathName(),
119 triggerEditorTabController->popUps->getFileDialogScreenController()->getFileName()
120 );
121 } catch (Exception& exception) {
122 triggerEditorTabController->showErrorPopUp("Warning", (string(exception.what())));
123 }
124 triggerEditorTabController->popUps->getFileDialogScreenController()->close();
125 }
126 OnTriggerSave(TriggerEditorTabController* triggerEditorTabController): triggerEditorTabController(triggerEditorTabController) {
127 }
128 private:
129 TriggerEditorTabController* triggerEditorTabController;
130 };
131
132 auto fileName = view->getPrototype() != nullptr?view->getPrototype()->getFileName():"";
133 vector<string> extensions = {
134 "tempty"
135 };
137 fileName.empty() == false?Tools::getPathName(fileName):string(),
138 "Save to: ",
139 extensions,
140 Tools::getFileName(fileName),
141 false,
142 new OnTriggerSave(this)
143 );
144}
145
147{
148 if (node->getId() == "selectbox_outliner") {
149 auto outlinerNode = view->getEditorView()->getScreenController()->getOutlinerSelection();
150 updateDetails(outlinerNode);
151 }
155}
156
159}
160
163}
164
168}
169
171{
174}
175
177 string xml;
178 xml+= "<selectbox-parent-option image=\"resources/engine/images/folder.png\" text=\"" + GUIParser::escapeQuotes("Prototype") + "\" value=\"" + GUIParser::escapeQuotes("prototype") + "\">\n";
179 auto prototype = view->getPrototype();
180 if (prototype != nullptr) {
183 }
184 xml+= "</selectbox-parent-option>\n";
186
189 string("<dropdown-option text=\"Property\" value=\"property\" />\n") +
190 string("<dropdown-option text=\"BV\" value=\"boundingvolume\" />\n")
191 );
192}
193
194void TriggerEditorTabController::updateDetails(const string& outlinerNode) {
200}
201
203 required_dynamic_cast<GUITextNode*>(screenNode->getNodeById(view->getTabId() + "_tab_text_info"))->setText(text);
204}
205
206void TriggerEditorTabController::showErrorPopUp(const string& caption, const string& message)
207{
208 popUps->getInfoDialogScreenController()->show(caption, message);
209}
Prototype definition.
Definition: Prototype.h:49
GUI parser.
Definition: GUIParser.h:39
const string & getId()
Definition: GUINode.h:329
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 show(const string &cwd, const string &captionText, const vector< string > &extensions, const string &fileName, bool enableFilter, Action *applyAction, Action *cancelAction=nullptr, const string &settingsFileName=".filedialog.properties", const string &settingsPathName=string())
Shows the file dialog pop up.
void show(const string &caption, const string &message)
Shows the pop up.
Pop ups controller accessor class.
Definition: PopUps.h:19
FileDialogScreenController * getFileDialogScreenController()
Definition: PopUps.h:42
InfoDialogScreenController * getInfoDialogScreenController()
Definition: PopUps.h:49
void updateInfoText(const MutableString &text)
Update info text line.
void onContextMenuRequested(GUIElementNode *node, int mouseX, int mouseY) override
On mouse over.
void onValueChanged(GUIElementNode *node) override
On value changed.
void updateDetails(const string &outlinerNode)
Update details panel.
void onActionPerformed(GUIActionListenerType type, GUIElementNode *node) override
void showErrorPopUp(const string &caption, const string &message)
Shows the error pop up.
void onValueChanged(GUIElementNode *node, BaseProperties *baseProperties)
On value changed.
void onFocus(GUIElementNode *node, BaseProperties *baseProperties)
On focus.
void onUnfocus(GUIElementNode *node, BaseProperties *baseProperties)
On unfocus.
void updateDetails(BaseProperties *baseProperties, const string &outlinerNode)
Update details panel.
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 updateDetails(Prototype *prototype, const string &outlinerNode)
Update details panel.
void onValueChanged(GUIElementNode *node, Prototype *prototype)
On value changed.
void createOutlinerPhysicsXML(Prototype *prototype, string &xml)
Create physics XML for outliner.
void onContextMenuRequested(GUIElementNode *node, int mouseX, int mouseY, Prototype *prototype)
On context menu requested.
void onActionPerformed(GUIActionListenerType type, GUIElementNode *node, Prototype *prototype)
On action performed.
void updateDetails(Prototype *prototype, const string &outlinerNode)
Update details panel.
void onValueChanged(GUIElementNode *node, Prototype *prototype)
On value changed.
void saveFile(const string &pathName, const string &fileName)
Saving prototype as tempty prototype.
void setDisplayBoundingVolume(bool displayBoundingVolume)
Set up bounding volume visibility.
void setOutlinerAddDropDownContent(const string &xml)
Set outliner add drop down content.
Definition: EditorView.cpp:214
void setOutlinerContent(const string &xml)
Set outliner content.
Definition: EditorView.cpp:210
void setDetailsContent(const string &xml)
Set details content.
Definition: EditorView.cpp:218
EditorScreenController * getScreenController()
Definition: EditorView.h:57
Console class.
Definition: Console.h:26
Exception base class.
Definition: ExceptionBase.h:20
Mutable string class.
Definition: MutableString.h:16
std::exception Exception
Exception base class.
Definition: Exception.h:19
Tab controller, which connects UI with logic.
Definition: TabController.h:23
Action Interface.
Definition: Action.h:12