TDME2 1.9.121
UIEditorTabView.h
Go to the documentation of this file.
1#pragma once
2
3#include <array>
4#include <string>
5#include <vector>
6
7#include <tdme/tdme.h>
11#include <tdme/math/Matrix4x4.h>
21
22using std::array;
23using std::string;
24
38
39/**
40 * UI editor tab view
41 * @author Andreas Drewke
42 * @version $Id$
43 */
45{
46protected:
47 Engine* guiEngine { nullptr };
48 Engine* engine { nullptr };
49 bool projectedUi { false };
50 Prototype* prototype { nullptr };
52 float projectedUiMinX { Float::MAX_VALUE };
53 float projectedUiMinZ { Float::MAX_VALUE };
54 float projectedUiMaxX { Float::MIN_VALUE };
55 float projectedUiMaxZ { Float::MIN_VALUE };
56
57private:
58 EditorView* editorView { nullptr };
59 string tabId;
60 PopUps* popUps { nullptr };
63 vector<GUIScreenNode*> screenNodes;
64 vector<array<int, 2>> screenDimensions;
66
67 // overridden methods
68 void onCameraRotation() override;
69 void onCameraScale() override;
70
71public:
72 /**
73 * Public constructor
74 * @param editorView editor view
75 * @param tabId tab id
76 * @param screenNode screenNode
77 */
78 UIEditorTabView(EditorView* editorView, const string& tabId, GUIScreenNode* screenNode);
79
80 /**
81 * Destructor
82 */
84
85 /**
86 * @return editor view
87 */
89 return editorView;
90 }
91
92 /**
93 * @return associated tab controller
94 */
95 inline TabController* getTabController() override {
96 return uiTabController;
97 }
98
99 /**
100 * @return pop up views
101 */
102 inline PopUps* getPopUps() {
103 return popUps;
104 }
105
106 /**
107 * @return screen nodes
108 */
109 inline const vector<GUIScreenNode*>& getScreenNodes() {
110 return screenNodes;
111 }
112
113 /**
114 * Add screen
115 */
116 void addScreen();
117
118 /**
119 * Set screen
120 * @param screenIdx screen index
121 * @param screenNode screen node
122 */
123 void setScreen(int screenIdx, GUIScreenNode* screenNode);
124
125 /**
126 * Unset screen
127 * @param screenIdx screen index
128 */
129 void unsetScreen(int screenIdx);
130
131 /**
132 * Remove screen
133 * @param screenIdx screen index
134 */
135 void removeScreen(int screenIdx);
136
137 /**
138 * Readd screens
139 */
140 void reAddScreens();
141
142 /**
143 * @return prototype
144 */
146
147 /**
148 * Load prototype
149 * @param pathName path name
150 * @param fileName file name
151 * @param modelMeshNode model mesh node
152 * @param modelMeshAnimation model mesh animation
153 * @return model
154 */
155 Prototype* loadPrototype(const string& pathName, const string& fileName, const string& modelMeshNode, const string& modelMeshAnimation);
156
157 /**
158 * Set model mesh node
159 * @param modelMeshNode model mesh node
160 */
161 void setModelMeshNode(const string& modelMeshNode);
162
163 /**
164 * Set model mesh animation
165 * @param modelMeshAnimation model mesh animation
166 */
167 void setModelMeshAnimation(const string& modelMeshAnimation);
168
169 /**
170 * Remove model
171 */
172 void removePrototype();
173
174 // overridden methods
175 void handleInputEvents() override;
176 void display() override;
177 inline const string& getTabId() override {
178 return tabId;
179 }
180 void initialize() override;
181 void dispose() override;
182 Engine* getEngine() override;
183 void activate() override;
184 void deactivate() override;
185 void reloadOutliner() override;
186 inline bool hasFixedSize() override;
187 void updateRendering() override;
188
189};
Engine main class.
Definition: Engine.h:122
Frame buffer class.
Definition: FrameBuffer.h:21
Prototype definition.
Definition: Prototype.h:49
GUI screen node that represents a screen that can be rendered via GUI system.
Definition: GUIScreenNode.h:57
4x4 3D Matrix class
Definition: Matrix4x4.h:24
Pop ups controller accessor class.
Definition: PopUps.h:19
void dispose() override
Disposes the view.
bool hasFixedSize() override
If this viewport framebuffer has a fixed size.
void display() override
Renders the view.
void reloadOutliner() override
Reload outliner.
void onCameraRotation() override
On rotation event to be overloaded.
Prototype * loadPrototype(const string &pathName, const string &fileName, const string &modelMeshNode, const string &modelMeshAnimation)
Load prototype.
void initialize() override
Initiates the view.
UIEditorTabView(EditorView *editorView, const string &tabId, GUIScreenNode *screenNode)
Public constructor.
void handleInputEvents() override
Handle input events that have not yet been processed.
void setModelMeshAnimation(const string &modelMeshAnimation)
Set model mesh animation.
CameraRotationInputHandler * cameraRotationInputHandler
void removeScreen(int screenIdx)
Remove screen.
void setScreen(int screenIdx, GUIScreenNode *screenNode)
Set screen.
void unsetScreen(int screenIdx)
Unset screen.
const vector< GUIScreenNode * > & getScreenNodes()
void updateRendering() override
Update rendering.
void setModelMeshNode(const string &modelMeshNode)
Set model mesh node.
void onCameraScale() override
On scale event to be overloaded.
Float class.
Definition: Float.h:23
Tab controller, which connects UI with logic.
Definition: TabController.h:23