TDME2 1.9.121
SceneEditorTabView.h
Go to the documentation of this file.
1#pragma once
2
3#include <string>
4#include <unordered_map>
5#include <unordered_set>
6#include <vector>
7
8#include <tdme/tdme.h>
22
23using std::string;
24using std::unordered_map;
25using std::unordered_set;
26using std::vector;
27
43
44/**
45 * Scene editor tab view
46 * @author Andreas Drewke
47 * @version $Id$
48 */
50{
51private:
52 /**
53 * Entity color
54 */
55 struct EntityColor {
56 float colorMulR;
57 float colorMulG;
58 float colorMulB;
59 float colorAddR;
60 float colorAddG;
61 float colorAddB;
62
63 /**
64 * Public constructor
65 */
66 inline EntityColor() {
67 this->colorMulR = 1.0f;
68 this->colorMulG = 1.0f;
69 this->colorMulB = 1.0f;
70 this->colorAddR = 0.0f;
71 this->colorAddG = 0.0f;
72 this->colorAddB = 0.0f;
73 }
74
75 /**
76 * Public constructor
77 * @param sceneEditorView scene editor view
78 * @param colorMulR colorMulR
79 * @param colorMulG colorMulG
80 * @param colorMulB colorMulB
81 * @param colorAddR colorAddR
82 * @param colorAddG colorAddG
83 * @param colorAddB colorAddB
84 */
85 inline EntityColor(float colorMulR, float colorMulG, float colorMulB, float colorAddR, float colorAddG, float colorAddB) {
86 this->colorMulR = colorMulR;
87 this->colorMulG = colorMulG;
88 this->colorMulB = colorMulB;
89 this->colorAddR = colorAddR;
90 this->colorAddG = colorAddG;
91 this->colorAddB = colorAddB;
92 }
93 };
94
95 static constexpr int MOUSE_DOWN_LAST_POSITION_NONE { -1 };
96
97 Engine* engine { nullptr };
99 EditorView* editorView { nullptr };
100 string tabId;
101 PopUps* popUps { nullptr };
104 Scene* scene { nullptr };
105
107 unordered_map<string, EntityColor> entityColors;
108
112
114
124
127
129 vector<string> selectedEntityIds;
130 unordered_set<string> selectedEntityIdsById;
131 vector<SceneEntity*> copiedEntities;
134 bool needGizmoUpdate { false };
135
139
143
145 float gridY;
146 Model* gridModel { nullptr };
147
148public:
149 /**
150 * Public constructor
151 * @param editorView editor view
152 * @param tabId tab id
153 * @param scene scene
154 */
156
157 /**
158 * Destructor
159 */
161
162 /**
163 * @return editor view
164 */
166 return editorView;
167 }
168
169 /**
170 * @return pop up views
171 */
172 inline PopUps* getPopUps() {
173 return popUps;
174 }
175
176 /**
177 * @return scene
178 */
180 return scene;
181 }
182
183 // overridden methods
184 void handleInputEvents() override;
185 void display() override;
186 inline const string& getTabId() override {
187 return tabId;
188 }
189 void initialize() override;
190 void dispose() override;
191 void activate() override;
192 void deactivate() override;
193 Engine* getEngine() override;
194 inline TabController* getTabController() override {
196 }
197 void reloadOutliner() override;
198 void onCameraTranslation() override;
199 void onCameraRotation() override;
200 void onCameraScale() override;
201 inline bool hasFixedSize() override{ return false; };
202 void updateRendering() override;
203
204 /**
205 * Clear scene
206 */
207 void clearScene();
208
209 /**
210 * Reload scene
211 */
212 void reloadScene();
213
214 /**
215 * Reload outliner
216 * @param outlinerNode selected outliner node
217 */
218 void reloadOutliner(const string& outlinerNode);
219
220 /**
221 * Remove sky
222 */
223 void removeSky();
224
225 /**
226 * Update sky
227 */
228 void updateSky();
229
230 /**
231 * Update sky position
232 */
233 void updateSkyPosition();
234
235 /**
236 * Update lights
237 */
238 void updateLights();
239
240 /**
241 * Set highlight entity color effect
242 * @param object object
243 */
245
246 /**
247 * Set standard entity color effect
248 * @param object object
249 */
251
252 /**
253 * Reset scale to scene editor object scale
254 * @param object object
255 */
256 void resetEntity(Entity* object);
257
258 /**
259 * Select entities
260 * @param entityIds entity ids
261 */
262 void selectEntities(const vector<string>& entityIds);
263
264 /**
265 * Unselect entities
266 */
267 void unselectEntities();
268
269 /**
270 * Copy current selected entities
271 */
272 void copyEntities();
273
274 /**
275 * Initialize place entity mode
276 * @param prototype prototype
277 */
278 void setPlaceEntityMode(Prototype* prototype);
279
280 /**
281 * Finish place entity mode
282 * @param cancelled cancelled place entity mode?
283 */
284 void unsetPlaceEntityMode(bool cancelled);
285
286 /**
287 * Places selected entity on selected object
288 */
289 void placeEntity();
290
291 /**
292 * Removes selected entities
293 */
294 void removeEntities();
295
296 /**
297 * Set paste mode
298 */
299 void setPasteMode();
300
301 /**
302 * cancel paste
303 */
304 void unsetPasteMode();
305
306 /**
307 * Paste entities
308 * @param displayOnly display only
309 */
310 void pasteEntities(bool displayOnly);
311
312 /**
313 * Compute multiple selection pivot
314 */
316
317 /**
318 * Get selected reflection environment mapping id
319 */
321
322 /**
323 * Center entities
324 */
325 void centerEntities();
326
327 /**
328 * Select same entities
329 */
330 void selectSameEntities();
331
332 /**
333 * Open prototype
334 */
335 void openPrototype();
336
337 /**
338 * Update gizmo
339 */
340 void updateGizmo();
341
342 /**
343 * Apply base information
344 * @param name name
345 * @param description description
346 * @return success
347 */
348 bool applyBase(const string& name, const string& description);
349
350 /**
351 * Apply translation
352 * @param translation translation
353 */
354 void applyTranslation(const Vector3& translation);
355
356 /**
357 * Apply rotation
358 * @param rotation rotation
359 */
360 void applyRotation(const Vector3& rotation);
361
362 /**
363 * Apply scale
364 * @param rotation rotation
365 */
366 void applyScale(const Vector3& scale);
367
368 /**
369 * Apply reflection environment mapping id
370 * @param environmentMappingId environment mapping id
371 */
372 void applyReflectionEnvironmentMappingId(const string& reflectionEnvironmentMappingId);
373
374 /**
375 * Update grid
376 */
377 void updateGrid();
378
379 /**
380 * Remove grid
381 */
382 void removeGrid();
383
384 /**
385 * @return grid enabled
386 */
387 bool isGridEnabled();
388
389 /**
390 * @param gridEnabled grid enabled
391 */
392 void setGridEnabled(bool gridEnabled);
393
394 /**
395 * @return grid y
396 */
397 float getGridY();
398
399 /**
400 * Set grid y position
401 * @param gridY grid y
402 */
403 void setGridY(float gridY);
404
405 /**
406 * Get snapping
407 * @param snappingEnabled snapping enabled
408 * @param snappingX snapping along X axis
409 * @param snappingZ snapping along Z axis
410 */
411 void getSnapping(bool& snappingEnabled, float& snappingX, float& snappingZ);
412
413 /**
414 * Set snapping
415 * @param snappingEnabled snapping enabled
416 * @param snappingX snapping along X axis
417 * @param snappingZ snapping along Z axis
418 */
419 void setSnapping(bool snappingEnabled, float snappingX, float snappingZ);
420
421 /**
422 * Add prototype to scene
423 * @param prototype prototype
424 */
425 void addPrototype(Prototype* prototype);
426
427};
Engine main class.
Definition: Engine.h:122
TDME engine entity.
Definition: Entity.h:31
Frame buffer class.
Definition: FrameBuffer.h:21
Representation of a 3d model.
Definition: Model.h:32
Prototype definition.
Definition: Prototype.h:49
Scene entity definition.
Definition: SceneEntity.h:24
Scene definition.
Definition: Scene.h:41
3D vector 3 class
Definition: Vector3.h:22
Gizmo tool for views.
Definition: Gizmo.h:26
Pop ups controller accessor class.
Definition: PopUps.h:19
void applyTranslation(const Vector3 &translation)
Apply translation.
SceneEditorTabView(EditorView *editorView, const string &tabId, Scene *scene)
Public constructor.
void pasteEntities(bool displayOnly)
Paste entities.
void setStandardEntityColorEffect(Entity *object)
Set standard entity color effect.
void placeEntity()
Places selected entity on selected object.
bool hasFixedSize() override
If this viewport framebuffer has a fixed size.
void setHighlightEntityColorEffect(Entity *object)
Set highlight entity color effect.
void onCameraRotation() override
On rotation event to be overloaded.
const Vector3 computeMultipleSelectionPivot()
Compute multiple selection pivot.
unordered_map< string, EntityColor > entityColors
bool applyBase(const string &name, const string &description)
Apply base information.
void setSnapping(bool snappingEnabled, float snappingX, float snappingZ)
Set snapping.
const string getSelectedReflectionEnvironmentMappingId()
Get selected reflection environment mapping id.
void resetEntity(Entity *object)
Reset scale to scene editor object scale.
void handleInputEvents() override
Handle input events that have not yet been processed.
void setGridY(float gridY)
Set grid y position.
void onCameraTranslation() override
On translation event to be overloaded.
static STATIC_DLL_IMPEXT vector< string > ENTITYCOLOR_NAMES
void selectEntities(const vector< string > &entityIds)
Select entities.
void getSnapping(bool &snappingEnabled, float &snappingX, float &snappingZ)
Get snapping.
void unsetPlaceEntityMode(bool cancelled)
Finish place entity mode.
void applyScale(const Vector3 &scale)
Apply scale.
void setPlaceEntityMode(Prototype *prototype)
Initialize place entity mode.
void copyEntities()
Copy current selected entities.
void addPrototype(Prototype *prototype)
Add prototype to scene.
void applyReflectionEnvironmentMappingId(const string &reflectionEnvironmentMappingId)
Apply reflection environment mapping id.
void onCameraScale() override
On scale event to be overloaded.
void applyRotation(const Vector3 &rotation)
Apply rotation.
Tab controller, which connects UI with logic.
Definition: TabController.h:23
EntityColor(float colorMulR, float colorMulG, float colorMulB, float colorAddR, float colorAddG, float colorAddB)
Public constructor.
#define STATIC_DLL_IMPEXT
Definition: tdme.h:11