TDME2 1.9.121
EnvMapEditorTabView.h
Go to the documentation of this file.
1#pragma once
2
3#include <string>
4
5#include <tdme/tdme.h>
9#include <tdme/math/Vector3.h>
16
17using std::string;
18
29
30/**
31 * Environmap editor tab view
32 * @author Andreas Drewke
33 * @version $Id$
34 */
36 : public TabView
37{
38protected:
39 Engine* engine { nullptr };
40
41private:
42 EditorView* editorView { nullptr };
43 string tabId;
44 PopUps* popUps { nullptr };
47 Scene* scene { nullptr };
48 float skyDomeTranslation { 0.0f };
52 Prototype* prototype { nullptr };
53
54public:
55 /**
56 * Public constructor
57 * @param editorView editor view
58 * @param tabId tab id
59 * @param scene scene
60 * @param prototype prototype
61 */
63
64 /**
65 * Destructor
66 */
68
69 /**
70 * @return prototype
71 */
73 return prototype;
74 }
75
76 /**
77 * @return editor view
78 */
80 return editorView;
81 }
82
83 /**
84 * @return associated tab controller
85 */
86 inline TabController* getTabController() override {
88 }
89
90 /**
91 * @return pop up views
92 */
93 inline PopUps* getPopUps() {
94 return popUps;
95 }
96
97 // overridden methods
98 void handleInputEvents() override;
99 void display() override;
100 inline const string& getTabId() override {
101 return tabId;
102 }
103 void initialize() override;
104 void dispose() override;
105 Engine* getEngine() override;
106 void activate() override;
107 void deactivate() override;
108 void reloadOutliner() override;
109 void updateRendering() override;
110 inline bool hasFixedSize() override{ return false; };
111
112 /**
113 * Initialize sky
114 */
115 void initSky();
116
117 /**
118 * Update sky
119 */
120 void updateSky();
121
122 /**
123 * @return environment map translation
124 */
126
127 /**
128 * Set environment map translation
129 * @param translation translation
130 */
131 void setEnvironmentMapTranslation(const Vector3& translation);
132
133 /**
134 * @return environment map render passes
135 */
137
138 /**
139 * Set environment map render passes
140 * @param renderPassMask render pass mask
141 */
142 void setEnvironmentMapRenderPassMask(int32_t renderPassMask);
143
144 /**
145 * @return environment map frequency
146 */
148
149 /**
150 * Set environment map frequency
151 * @param frequency frequency
152 */
153 void setEnvironmentMapFrequency(int64_t frequency);
154
155 /**
156 * Saving prototype as tenvmap prototype
157 * @param pathName path name
158 * @param fileName file name
159 */
160 void saveFile(const string& pathName, const string& fileName);
161
162};
Engine main class.
Definition: Engine.h:122
Frame buffer class.
Definition: FrameBuffer.h:21
Prototype definition.
Definition: Prototype.h:49
Scene definition.
Definition: Scene.h:41
3D vector 3 class
Definition: Vector3.h:22
Pop ups controller accessor class.
Definition: PopUps.h:19
void saveFile(const string &pathName, const string &fileName)
Saving prototype as tenvmap prototype.
bool hasFixedSize() override
If this viewport framebuffer has a fixed size.
EnvMapEditorTabView(EditorView *editorView, const string &tabId, Scene *scene, Prototype *prototype)
Public constructor.
void handleInputEvents() override
Handle input events that have not yet been processed.
void setEnvironmentMapTranslation(const Vector3 &translation)
Set environment map translation.
void setEnvironmentMapRenderPassMask(int32_t renderPassMask)
Set environment map render passes.
void setEnvironmentMapFrequency(int64_t frequency)
Set environment map frequency.
Tab controller, which connects UI with logic.
Definition: TabController.h:23