TDME2 1.9.121
TerrainEditorTabView.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>
13#include <tdme/math/Vector3.h>
22
23using std::string;
24using std::unordered_map;
25using std::unordered_set;
26using std::vector;
27
40
41/**
42 * Terrain editor tab view
43 * @author Andreas Drewke
44 * @version $Id$
45 */
47 : public TabView
48{
49protected:
50 Engine* engine { nullptr };
51
52private:
53 EditorView* editorView { nullptr };
54 string tabId;
55 PopUps* popUps { nullptr };
58
60
61 Prototype* prototype { nullptr };
62
63 float skyDomeTranslation { 0.0f };
64
68
70 vector<Model*> terrainModels;
71
72 struct Water {
74 vector<Model*> waterModels;
75 };
76 unordered_map<int, Water> waters;
77
79 unordered_set<int> temporaryPartitionIdxs;
80
81 bool brushingEnabled { false };
82 bool brushMoved { false };
84 Texture* brushTexture { nullptr };
85 float brushScale { 1.0f };
86 float brushDensityStrength { 1.0f };
87 int rampMode { -1 };
88 array<Vector3,2> rampVertices;
89 array<float,2> rampHeight;
90
91public:
92 /**
93 * Public constructor
94 * @param editorView editor view
95 * @param tabId tab id
96 * @param prototype prototype
97 */
99
100 /**
101 * Destructor
102 */
104
105 /**
106 * @return editor view
107 */
109 return editorView;
110 }
111
112 /**
113 * @return associated tab controller
114 */
115 inline TabController* getTabController() override {
117 }
118
119 /**
120 * @return pop up views
121 */
122 inline PopUps* getPopUps() {
123 return popUps;
124 }
125
126 /**
127 * @return prototype
128 */
130 return prototype;
131 }
132
133 // overridden methods
134 void handleInputEvents() override;
135 void display() override;
136 inline const string& getTabId() override {
137 return tabId;
138 }
139 void initialize() override;
140 void dispose() override;
141 Engine* getEngine() override;
142 void activate() override;
143 void deactivate() override;
144 void reloadOutliner() override;
145 inline bool hasFixedSize() override{ return false; };
146 void updateRendering() override;
147
148 /**
149 * Saving prototype as tmodel prototype
150 * @param pathName path name
151 * @param fileName file name
152 */
153 void saveFile(const string& pathName, const string& fileName);
154
155 /**
156 * Initialize sky
157 */
158 void initSky();
159
160 /**
161 * Update sky
162 */
163 void updateSky();
164
165 /**
166 * Reset engine
167 */
168 void reset();
169
170 /**
171 * Initialize terrain
172 */
173 void initializeTerrain();
174
175 /**
176 * Unset terrain
177 */
178 void unsetTerrain();
179
180 /**
181 * Set terrain models
182 * @param terrainBoundingBox terrain bounding box
183 * @param terrainModels terrain models
184 */
186
187 /**
188 * Set brush
189 * @param texture brush texture
190 * @param scale scale
191 * @param densityStrength density strength
192 */
193 void setBrush(Texture* texture, float scale, float densityStrength);
194
195 /**
196 * Set brush scale
197 * @param scale scale
198 */
199 void setBrushScale(float scale);
200
201 /**
202 * Set brush density/strength
203 * @param densityStrength density/strength
204 */
205 void setBrushDensityStrength(float densityStrength);
206
207 /**
208 * Unset brush
209 */
210 void unsetBrush();
211
212 /**
213 * Unset water
214 */
215 void unsetWater();
216
217 /**
218 * Remove water
219 * @param waterIdx water index
220 */
221 void removeWater(int waterIdx);
222
223 /**
224 * Add water
225 * @param waterIdx water index
226 * @param waterModels water models
227 * @param waterReflectionEnvironmentMappingPosition water reflection environment mapping position
228 */
229 void addWater(int waterIdx, vector<Model*> waterModels, const Vector3& waterReflectionEnvironmentMappingPosition);
230
231 /**
232 * Add foliage using render groups at given partition indices
233 */
234 void addFoliage();
235
236 /**
237 * Add temporary foliage
238 * @param newFoliageMaps new foliage maps
239 */
240 void addTemporaryFoliage(const vector<unordered_map<int, vector<Transformations>>>& newFoliageMaps);
241
242 /**
243 * Update temporary foliage
244 */
245 void updateTemporaryFoliage(const unordered_set<int>& partitionIdxSet);
246
247 /**
248 * Recreate temporary foliage at given partition indices
249 * @param partitionIdxSet partition indices set
250 */
251 inline void recreateTemporaryFoliage(const unordered_set<int>& partitionIdxSet) {
252 for (auto partitionIdx: partitionIdxSet) recreateTemporaryFoliage(partitionIdx);
253 }
254
255 /**
256 * Recreate temporary foliage at given partition index
257 * @param partitionIdx partition index
258 */
259 void recreateTemporaryFoliage(int partitionIdx);
260
261 /**
262 * Recreate foliage using render groups at given partition indices that has been transformed to temporary foliage
263 * @param partitionIdxSet partition index set
264 */
265 void recreateFoliage(const unordered_set<int>& partitionIdxSet);
266
267};
Engine main class.
Definition: Engine.h:122
Frame buffer class.
Definition: FrameBuffer.h:21
Representation of a 3d model.
Definition: Model.h:32
Axis aligned bounding box used for frustum, this is not directly connectable with physics engine.
Definition: BoundingBox.h:25
Prototype definition.
Definition: Prototype.h:49
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 tmodel prototype.
void recreateFoliage(const unordered_set< int > &partitionIdxSet)
Recreate foliage using render groups at given partition indices that has been transformed to temporar...
bool hasFixedSize() override
If this viewport framebuffer has a fixed size.
void addWater(int waterIdx, vector< Model * > waterModels, const Vector3 &waterReflectionEnvironmentMappingPosition)
Add water.
void updateTemporaryFoliage(const unordered_set< int > &partitionIdxSet)
Update temporary foliage.
void addFoliage()
Add foliage using render groups at given partition indices.
TerrainEditorTabView(EditorView *editorView, const string &tabId, Prototype *prototype)
Public constructor.
void setBrushDensityStrength(float densityStrength)
Set brush density/strength.
void handleInputEvents() override
Handle input events that have not yet been processed.
void addTemporaryFoliage(const vector< unordered_map< int, vector< Transformations > > > &newFoliageMaps)
Add temporary foliage.
void recreateTemporaryFoliage(const unordered_set< int > &partitionIdxSet)
Recreate temporary foliage at given partition indices.
void setBrush(Texture *texture, float scale, float densityStrength)
Set brush.
void setTerrain(BoundingBox &terrainBoundingBox, vector< Model * > terrainModels)
Set terrain models.
Tab controller, which connects UI with logic.
Definition: TabController.h:23