TDME2 1.9.121
ModelEditorTabController.h
Go to the documentation of this file.
1#pragma once
2
3#include <array>
4#include <map>
5#include <string>
6#include <vector>
7
8#include <tdme/tdme.h>
16#include <tdme/math/fwd-tdme.h>
22
23using std::array;
24using std::map;
25using std::string;
26using std::vector;
27
51
52/**
53 * Model editor tab controller
54 * @author Andreas Drewke
55 * @version $Id$
56 */
58 : public TabController
59{
60
61private:
68 PopUps* popUps { nullptr };
69
70 array<string, 5> applyAnimationNodes = {
71 "animation_startframe",
72 "animation_endframe",
73 "animation_speed",
74 "animation_loop",
75 "animation_overlaybone"
76 };
77
78 array<string, 3> applySpecularMaterialNodes = {
79 "specularmaterial_shininess",
80 "specularmaterial_reflection",
81 "specularmaterial_maskedtransparency"
82 };
83
84 array<string, 6> applyPBRMaterialNodes = {
85 "pbrmaterial_enabled",
86 "pbrmaterial_metallic_factor",
87 "pbrmaterial_roughness_factor",
88 "pbrmaterial_normal_scale",
89 "pbrmaterial_exposure",
90 "pbrmaterial_maskedtransparency"
91 };
92
93 array<string, 4> applyAnimationPreviewNodes = {
94 "animationpreview_base",
95 "animationpreview_overlay1",
96 "animationpreview_overlay2",
97 "animationpreview_overlay3"
98 };
99
100 array<string, 4> applyLODNodes = {
101 "lod_min_distance",
102 };
103
106
107 /**
108 * Get LOD level
109 * @return created or existing LOD level with given level
110 */
111 PrototypeLODLevel* getLODLevel(int level);
112
113 /**
114 * @return prototype lod level or nullptr
115 */
116 Model* getLODLevelModel(int level);
117
118 /**
119 * @return current selected model
120 */
122
123 /**
124 * @return current selected material
125 */
127
128 /**
129 * @return current selected animation setup
130 */
132
133 /**
134 * Create outliner model nodes xml
135 * @param prefix prefix
136 * @param subNodes sub nodes
137 * @param xml xml
138 */
139 void createOutlinerModelNodesXML(const string& prefix, const map<string, Node*>& subNodes, string& xml);
140
141public:
142 /**
143 * Public constructor
144 * @param view view
145 */
147
148 /**
149 * Destructor
150 */
152
153 /**
154 * Get view
155 */
157
158 /**
159 * @return prototype display sub screen controller
160 */
163 }
164
165 /**
166 * @return prototype bounding volume sub screen controller
167 */
170 }
171
172 /**
173 * @return prototype sounds sub screen controller
174 */
177 }
178
179 // overridden method
180 GUIScreenNode* getScreenNode() override;
181
182 // overridden methods
183 void initialize(GUIScreenNode* screenNode) override;
184 void dispose() override;
185 void save() override;
186 void saveAs() override;
187
188 /**
189 * Set outliner content
190 */
191 void setOutlinerContent();
192
193 /**
194 * Set outliner add drop down content
195 */
197
198 /**
199 * Set details content
200 */
201 void setDetailsContent();
202
203 /**
204 * @return current material
205 */
207
208 /**
209 * Set up model statistics
210 * @param statsOpaqueFaces stats opaque faces
211 * @param statsTransparentFaces stats transparent faces
212 * @param statsMaterialCount stats material count
213 */
214 void setStatistics(int statsOpaqueFaces, int statsTransparentFaces, int statsMaterialCount);
215
216 /**
217 * Unset statistics
218 */
219 void unsetStatistics();
220
221 /**
222 * On model reload
223 */
224 void onModelReload();
225
226 /**
227 * On model load
228 */
229 void onModelLoad();
230
231 /**
232 * On model reload
233 */
234 void onModelReimport();
235
236 /**
237 * On LOD load
238 */
239 void onLODLoad(int lodLevel);
240
241 /**
242 * On tools compute normals
243 */
245
246 /**
247 * On tools optimize model
248 */
250
251 /**
252 * Save file
253 * @param pathName path name
254 * @param fileName file name
255 */
256 void saveFile(const string& pathName, const string& fileName);
257
258 /**
259 * Load file
260 * @param pathName path name
261 * @param fileName file name
262 */
263 void loadFile(const string& pathName, const string& fileName);
264
265 /**
266 * Set material details
267 */
268 void setMaterialDetails();
269
270 /**
271 * Update material details
272 */
274
275 /**
276 * Update material color details
277 */
279
280 /**
281 * Apply specular material details
282 */
284
285 /**
286 * Apply PBR material details
287 */
289
290 /**
291 * Set animation details
292 */
293 void setAnimationDetails();
294
295 /**
296 * Apply animation details
297 */
299
300 /**
301 * Set animation preview details
302 */
304
305 /**
306 * Apply animation preview details
307 */
309
310 /**
311 * Update details panel
312 * @param outlinerNode outliner node
313 */
314 void updateDetails(const string& outlinerNode);
315
316 /**
317 * On material load diffuse texture
318 */
320
321 /**
322 * On material clear diffuse texture
323 */
325
326 /**
327 * On material load diffuse transparency texture
328 */
330
331 /**
332 * On material clear diffuse transparency texture
333 */
335
336 /**
337 * On material load normal texture
338 */
340
341 /**
342 * On material clear normal texture
343 */
345
346 /**
347 * On material load specular texture
348 */
350
351 /**
352 * On material clear specular texture
353 */
355
356 /**
357 * On material load PBR base color texture
358 */
360
361 /**
362 * On material clear PBR base color texture
363 */
365
366 /**
367 * On material load PBR metallic roughness texture
368 */
370
371 /**
372 * On material clear PBR metallic roughness texture
373 */
375
376 /**
377 * On material load PBR normal texture
378 */
380
381 /**
382 * On material load PBR normal texture
383 */
385
386 /**
387 * On preview animations attachment 1 model load
388 */
390
391 /**
392 * On preview animations attachment 1 model clear
393 */
395
396 /**
397 * Start rename animation
398 * @param lodLevel lod level
399 * @param animationId animation id
400 */
401 void startRenameAnimation(int lodLevel, const string& animationId);
402
403 /**
404 * Rename animation
405 */
406 void renameAnimation();
407
408 /**
409 * Create animation setup
410 * @param lodLevel lod level
411 */
412 void createAnimationSetup(int lodLevel);
413
414 /**
415 * Create LOD
416 */
417 void createLOD();
418
419 /**
420 * Create LOD none
421 */
422 void createLODNone();
423
424 /**
425 * Set LOD details
426 * @param lodLevel lod level
427 */
428 void setLODDetails(int lodLevel);
429
430 /**
431 * Set LOD color details
432 * @param lodLevel lod level
433 */
434 void updateLODColorDetails(int lodLevel);
435
436 /**
437 * Apply LOD details
438 * @param lodLevel LOD level
439 */
440 void applyLODDetails(int lodLevel);
441
442 /**
443 * Get outliner node within model or LOD models
444 * @param outlinerNode outliner node
445 * @param modelOutlinerNode model outliner node
446 * @param model model
447 * @param lodLevel lod level
448 * @return success
449 */
450 bool getOutlinerNodeLOD(const string& outlinerNode, string& modelOutlinerNode, Model** model = nullptr, int* lodLevel = nullptr);
451
452 // overridden methods
453 void onValueChanged(GUIElementNode* node) override;
454 void onActionPerformed(GUIActionListenerType type, GUIElementNode* node) override;
455 void onFocus(GUIElementNode* node) override;
456 void onUnfocus(GUIElementNode* node) override;
457 void onContextMenuRequested(GUIElementNode* node, int mouseX, int mouseY) override;
458
459 /**
460 * Update info text line
461 * @param text text
462 */
463 void updateInfoText(const MutableString& text);
464
465 /**
466 * Shows the error pop up
467 * @param caption caption
468 * @param message message
469 */
470 void showErrorPopUp(const string& caption, const string& message);
471
472};
Shader parameter model class.
Represents a material.
Definition: Material.h:21
Representation of a 3d model.
Definition: Model.h:32
Model node.
Definition: Node.h:31
Prototype LOD level definition.
Prototype definition.
Definition: Prototype.h:49
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 onMaterialClearPBRBaseColorTexture()
On material clear PBR base color texture.
void saveFile(const string &pathName, const string &fileName)
Save file.
void updateInfoText(const MutableString &text)
Update info text line.
void setOutlinerAddDropDownContent()
Set outliner add drop down content.
void onMaterialLoadPBRNormalTexture()
On material load PBR normal texture.
void onMaterialClearPBRMetallicRoughnessTexture()
On material clear PBR metallic roughness texture.
void onMaterialClearSpecularTexture()
On material clear specular texture.
void onContextMenuRequested(GUIElementNode *node, int mouseX, int mouseY) override
On mouse over.
void onPreviewAnimationsAttachment1ModelLoad()
On preview animations attachment 1 model load.
void setStatistics(int statsOpaqueFaces, int statsTransparentFaces, int statsMaterialCount)
Set up model statistics.
void onMaterialClearPBRNormalTexture()
On material load PBR normal texture.
void startRenameAnimation(int lodLevel, const string &animationId)
Start rename animation.
void onValueChanged(GUIElementNode *node) override
On value changed.
ModelEditorTabController(ModelEditorTabView *view)
Public constructor.
void onMaterialLoadPBRMetallicRoughnessTexture()
On material load PBR metallic roughness texture.
void onMaterialLoadPBRBaseColorTexture()
On material load PBR base color texture.
void updateDetails(const string &outlinerNode)
Update details panel.
void onMaterialLoadDiffuseTransparencyTexture()
On material load diffuse transparency texture.
void onActionPerformed(GUIActionListenerType type, GUIElementNode *node) override
void onPreviewAnimationsAttachment1ModelClear()
On preview animations attachment 1 model clear.
void showErrorPopUp(const string &caption, const string &message)
Shows the error pop up.
void createOutlinerModelNodesXML(const string &prefix, const map< string, Node * > &subNodes, string &xml)
Create outliner model nodes xml.
void loadFile(const string &pathName, const string &fileName)
Load file.
bool getOutlinerNodeLOD(const string &outlinerNode, string &modelOutlinerNode, Model **model=nullptr, int *lodLevel=nullptr)
Get outliner node within model or LOD models.
void onMaterialClearDiffuseTransparencyTexture()
On material clear diffuse transparency texture.
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