TDME2 1.9.121
SceneEditorTabController.h
Go to the documentation of this file.
1#pragma once
2
3#include <string>
4
5#include <tdme/tdme.h>
17
18using std::string;
19
34
35/**
36 * Scene editor tab controller
37 * @author Andreas Drewke
38 * @version $Id$
39 */
41 : public TabController
42{
43
44private:
48 PopUps* popUps { nullptr };
49
50 array<string, 2> applyBaseNodes = {
51 "base_name",
52 "base_description",
53 };
54 array<string, 3> applyTranslationNodes = {
55 "transformation_translation_x",
56 "transformation_translation_y",
57 "transformation_translation_z"
58 };
59 array<string, 3> applyRotationNodes = {
60 "transformation_rotation_x",
61 "transformation_rotation_y",
62 "transformation_rotation_z"
63 };
64 array<string, 3> applyScaleNodes = {
65 "transformation_scale_x",
66 "transformation_scale_y",
67 "transformation_scale_z"
68 };
69 array<string, 1> applySkyNodes = {
70 "sky_model_scale"
71 };
73 "reflection_environmentmap"
74 };
75 array<string, 30> applyLightNodes = {
76 "light_type",
77 "light_ambient_ambient",
78 "light_ambient_diffuse",
79 "light_ambient_specular",
80 "light_ambient_constant_attenuation",
81 "light_ambient_linear_attenuation",
82 "light_ambient_quadratic_attenuation",
83 "light_spot_ambient",
84 "light_spot_diffuse",
85 "light_spot_specular",
86 "light_spot_constant_attenuation",
87 "light_spot_linear_attenuation",
88 "light_spot_quadratic_attenuation",
89 "light_spot_position_x",
90 "light_spot_position_y",
91 "light_spot_position_z",
92 "light_spot_direction_x",
93 "light_spot_direction_y",
94 "light_spot_direction_z",
95 "light_spot_cutoff",
96 "light_spot_exponent",
97 "light_directional_ambient",
98 "light_directional_diffuse",
99 "light_directional_specular",
100 "light_directional_constant_attenuation",
101 "light_directional_linear_attenuation",
102 "light_directional_quadratic_attenuation",
103 "light_directional_direction_x",
104 "light_directional_direction_y",
105 "light_directional_direction_z"
106 };
107
109
110public:
111 /**
112 * Public constructor
113 * @param view view
114 */
116
117 /**
118 * Destructor
119 */
121
122 /**
123 * Get view
124 */
126
127 // overridden method
128 GUIScreenNode* getScreenNode() override;
129
130 // overridden methods
131 void initialize(GUIScreenNode* screenNode) override;
132 void dispose() override;
133 void save() override;
134 void saveAs() override;
135 void onValueChanged(GUIElementNode* node) override;
136 void onActionPerformed(GUIActionListenerType type, GUIElementNode* node) override;
137 void onFocus(GUIElementNode* node) override;
138 void onUnfocus(GUIElementNode* node) override;
139 void onContextMenuRequested(GUIElementNode* node, int mouseX, int mouseY) override;
140
141 /**
142 * Set sky details
143 */
144 void setSkyDetails();
145
146 /**
147 * Set light details
148 * @param lightIdx light index
149 */
150 void setLightDetails(int lightIdx);
151
152 /**
153 * Update light details
154 * @param lightIdx light index
155 */
156 void updateLightDetails(int lightIdx);
157
158 /**
159 * Apply light
160 * @param lightIdx light index
161 */
162 void applyLightDetails(int lightIdx);
163
164 /**
165 * Set prototype details
166 */
167 void setPrototypeDetails();
168
169 /**
170 * Update reflection details drop down
171 * @param selectedReflectionEnvironmentMappingId selected reflection environment mapping id
172 * @param mixed mixed
173 */
174 void updateReflectionEnvironmentMappingDetailsDropDown(const string& selectedReflectionEnvironmentMappingId);
175
176 /**
177 * Set entity details
178 * @param entity id
179 */
180 void setEntityDetails(const string& entityId);
181
182 /**
183 * Set entity details for multiple entity selection
184 * @param pivot pivot
185 * @param selectedReflectionEnvironmentMappingId selected reflection environment mapping id
186 */
187 void setEntityDetailsMultiple(const Vector3& pivot, const string& selectedReflectionEnvironmentMappingId);
188
189 /**
190 * Update entity details
191 * @param transformations transformations
192 */
193 void updateEntityDetails(const Transformations& transformations);
194
195 /**
196 * Update entity details
197 * @param translation translation
198 * @param rotation rotation
199 * @param scale scale
200 */
201 void updateEntityDetails(const Vector3& translation, const Vector3& rotation, const Vector3& scale);
202
203 /**
204 * Get prototype icon
205 * @param prototypeType prototype type
206 */
207 inline const string getPrototypeIcon(Prototype_Type* prototypeType) {
208 if (prototypeType == Prototype_Type::EMPTY) return "empty.png"; else
209 if (prototypeType == Prototype_Type::ENVIRONMENTMAPPING) return "reflection.png"; else
210 if (prototypeType == Prototype_Type::MODEL) return "mesh.png"; else
211 if (prototypeType == Prototype_Type::PARTICLESYSTEM) return "particle.png"; else
212 if (prototypeType == Prototype_Type::TERRAIN) return "terrain.png"; else
213 if (prototypeType == Prototype_Type::TRIGGER) return "trigger.png"; else return "";
214 }
215
216 /**
217 * Set outliner content
218 */
219 void setOutlinerContent();
220
221 /**
222 * Set outliner add drop down content
223 */
225
226 /**
227 * Set details content
228 */
229 void setDetailsContent();
230
231 /**
232 * Update details panel
233 * @param outlinerNode outliner node
234 */
235 void updateDetails(const string& outlinerNode);
236
237 /**
238 * Unselect entities
239 */
240 void unselectEntities();
241
242 /**
243 * Unselect entity
244 * @param entityId entity id
245 */
246 void unselectEntity(const string& entityId);
247
248 /**
249 * Select entity
250 * @param entityId entity id
251 */
252 void selectEntity(const string& entityId);
253
254 /**
255 * Select exactly given entities
256 * @param selectedOutlinerEntityIds selected entity outliner ids
257 */
258 void selectEntities(const vector<string>& selectedOutlinerEntityIds);
259
260 /**
261 * On replace prototype
262 */
263 void onReplacePrototype();
264
265 /**
266 * Rename entity
267 * @param entityName entity name
268 */
269 void startRenameEntity(const string& entityName);
270
271 /**
272 * Rename entity
273 */
274 void renameEntity();
275
276 /**
277 * Save
278 * @param pathName path name
279 * @param fileName file name
280 */
281 void save(const string& pathName, const string& fileName);
282
283 /**
284 * Update info text line
285 * @param text text
286 */
287 void updateInfoText(const MutableString& text);
288
289 /**
290 * Shows the error pop up
291 * @param caption caption
292 * @param message message
293 */
294 void showErrorPopUp(const string& caption, const string& message);
295
296};
Transformations which contain scale, rotations and translation.
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
3D vector 3 class
Definition: Vector3.h:22
Pop ups controller accessor class.
Definition: PopUps.h:19
void updateInfoText(const MutableString &text)
Update info text line.
void onContextMenuRequested(GUIElementNode *node, int mouseX, int mouseY) override
On mouse over.
void updateEntityDetails(const Transformations &transformations)
Update entity details.
void onValueChanged(GUIElementNode *node) override
On value changed.
void selectEntities(const vector< string > &selectedOutlinerEntityIds)
Select exactly given entities.
void updateDetails(const string &outlinerNode)
Update details panel.
void onActionPerformed(GUIActionListenerType type, GUIElementNode *node) override
void setEntityDetailsMultiple(const Vector3 &pivot, const string &selectedReflectionEnvironmentMappingId)
Set entity details for multiple entity selection.
const string getPrototypeIcon(Prototype_Type *prototypeType)
Get prototype icon.
SceneEditorTabController(SceneEditorTabView *view)
Public constructor.
void showErrorPopUp(const string &caption, const string &message)
Shows the error pop up.
void updateReflectionEnvironmentMappingDetailsDropDown(const string &selectedReflectionEnvironmentMappingId)
Update reflection details drop down.
void setEntityDetails(const string &entityId)
Set entity details.
Mutable string class.
Definition: MutableString.h:16
GUI action listener interface.
GUI change listener interface.
Tab controller, which connects UI with logic.
Definition: TabController.h:23