TDME2 1.9.121
TerrainEditorTabController.h
Go to the documentation of this file.
1#pragma once
2
3#include <array>
4#include <string>
5#include <unordered_map>
6#include <vector>
7
8#include <tdme/tdme.h>
21
22#include <ext/tinyxml/tinyxml.h>
23
24using std::array;
25using std::string;
26using std::unordered_map;
27using std::vector;
28
44
48
49/**
50 * Terrain editor tab controller
51 * @author Andreas Drewke
52 * @version $Id$
53 */
55 : public TabController
56{
57
58private:
62 PopUps* popUps { nullptr };
63
64 vector<unordered_map<int, vector<Transformations>>> newFoliageMaps;
65 unordered_set<int> recreateFoliagePartitions;
66
74 Terrain2::BrushOperation currentTerrainBrushOperation { Terrain2::BRUSHOPERATION_NONE };
75 Terrain2::BrushOperation currentFoliageBrushOperation { Terrain2::BRUSHOPERATION_NONE };
76
77 Terrain2::FoliageBrush foliageBrush = {
78 .brushTexture = nullptr,
79 .brushScale = 1.0f,
80 .brushDensity = 1.0f
81 };
82 vector<Terrain2::FoliageBrushPrototype> foliageBrushPrototypes;
83
84 array<string, 2> textureBrushApplyNodes = {
85 "terrainbrush_size",
86 "terrainbrush_strength"
87 };
88
89 array<string, 2> foliageBrushApplyNodes = {
90 "foliagebrush_size",
91 "foliagebrush_density"
92 };
93
94 array<string, 16> foliageBrushPrototypeApplyNodes = {
95 "foliagebrush_prototype_object_count",
96 "foliagebrush_prototype_normalalign",
97 "foliagebrush_prototype_rotationrange_x_min",
98 "foliagebrush_prototype_rotationrange_x_max",
99 "foliagebrush_prototype_rotationrange_y_min",
100 "foliagebrush_prototype_rotationrange_y_max",
101 "foliagebrush_prototype_rotationrange_z_min",
102 "foliagebrush_prototype_rotationrange_z_max",
103 "foliagebrush_prototype_scalerange_min",
104 "foliagebrush_prototype_scalerange_max",
105 "foliagebrush_prototype_scalerange_max",
106 "foliagebrush_prototype_heightrange_max",
107 "foliagebrush_prototype_heightrange_min",
108 "foliagebrush_prototype_heightrange_max",
109 "foliagebrush_prototype_sloperange_max",
110 "foliagebrush_prototype_sloperange_max"
111 };
112
113public:
114 /**
115 * Public constructor
116 * @param view view
117 */
119
120 /**
121 * Destructor
122 */
124
125 /**
126 * Get view
127 */
129
130 // overridden method
131 GUIScreenNode* getScreenNode() override;
132
133 /**
134 * @return current terrain brush operation
135 */
136 inline Terrain2::BrushOperation getTerrainBrushOperation() {
138 }
139
140 /**
141 * @return current foliage brush operation
142 */
143 inline Terrain2::BrushOperation getFoliageBrushOperation() {
145 }
146
147 // overridden methods
148 void initialize(GUIScreenNode* screenNode) override;
149 void dispose() override;
150 void save() override;
151 void saveAs() override;
152
153 // overridden methods
154 void onValueChanged(GUIElementNode* node) override;
155 void onActionPerformed(GUIActionListenerType type, GUIElementNode* node) override;
156 void onFocus(GUIElementNode* node) override;
157 void onUnfocus(GUIElementNode* node) override;
158 void onContextMenuRequested(GUIElementNode* node, int mouseX, int mouseY) override;
159
160 /**
161 * Set outliner content
162 */
163 void setOutlinerContent();
164
165 /**
166 * Set outliner add drop down content
167 */
169
170 /**
171 * On create terrain
172 */
173 void onCreateTerrain();
174
175 /**
176 * Set brush scale
177 * @param scale scale
178 */
179 void setBrushScale(float scale);
180
181 /**
182 * Set brush density/strength
183 * @param densityStrength density/strength
184 */
185 void setBrushDensityStrength(float densityStrength);
186
187 /**
188 * Set terrain details
189 */
190 void setTerrainDetails();
191
192 /**
193 * Set terrain brush details
194 */
196
197 /**
198 * Update terrain brush details
199 */
201
202 /**
203 * Apply terrain brush details
204 */
206
207 /**
208 * Set foliage brush details
209 */
211
212 /**
213 * Update foliage brush details
214 */
216
217 /**
218 * Apply foliage brush details
219 */
221
222 /**
223 * Set foliage brush details
224 */
226
227 /**
228 * Apply foliage brush prototype details
229 */
231
232 /**
233 * Check if outliner selection is foliage brush prototype
234 * @param outlinerNode outliner node
235 * @param foliageBrushIdx foliage brush index
236 * @param foliageBrushPrototypeIdx foliage brush prototype index
237 */
238 bool checkOutlinerFoliageBrushPrototype(const string& outlinerNode, int& foliageBrushIdx, int& foliageBrushPrototypeIdx);
239
240 /**
241 * Update details
242 * @param outlinerNode outliner node
243 */
244 void updateDetails(const string& outlinerNode);
245
246 /**
247 * Initialize terrain
248 */
249 void initializeTerrain();
250
251 /**
252 * Apply current brush to terrain at given brush center position
253 * @param terrainBoundingBox terrain bounding box
254 * @param terrainModels terrain models
255 * @param brushCenterPosition brush center position
256 * @param deltaTime delta time between last frame and this frame
257 */
258 void applyTerrainBrush(BoundingBox& terrainBoundingBox, vector<Model*>& terrainModels, const Vector3& brushCenterPosition, int64_t deltaTime);
259
260 /**
261 * Determine current brush flatten height
262 * @param terrainBoundingBox terrain bounding box
263 * @param terrainModels terrain models
264 * @param brushCenterPosition brush center position
265 * @return success
266 */
267 bool determineCurrentBrushHeight(BoundingBox& terrainBoundingBox, vector<Model*> terrainModels, const Vector3& brushCenterPosition);
268
269 /**
270 * Determine ramp height
271 * @param terrainBoundingBox terrain bounding box
272 * @param terrainModels terrain models
273 * @param position position
274 * @param height height
275 * @return success
276 */
277 bool determineRampHeight(BoundingBox& terrainBoundingBox, vector<Model*> terrainModels, const Vector3& position, float& height);
278
279 /**
280 * Unset current brush flatten height
281 */
283
284 /**
285 * Apply current brush to terrain at given brush center position
286 * @param terrainBoundingBox terrain bounding box
287 * @param terrainModels terrain models
288 * @param position position
289 * @param rotation rotation
290 * @param scale scale
291 * @param minHeight min height
292 * @param maxHeigth max heigth
293 */
294 void applyRampTerrainBrush(BoundingBox& terrainBoundingBox, vector<Model*>& terrainModels, const Vector3& position, float rotation, const Vector2& scale, float minHeight, float maxHeight);
295
296 /**
297 * Create water using a auto fill like algorithm
298 * @param terrainBoundingBox terrain bounding box
299 * @param brushCenterPosition brush center position
300 * @param waterModels water models
301 * @param waterReflectionEnvironmentMappingPosition water reflection environment mapping position
302 */
303 void createWater(BoundingBox& terrainBoundingBox, const Vector3& brushCenterPosition, vector<Model*>& waterModels, Vector3& waterReflectionEnvironmentMappingPosition);
304
305 /**
306 * Delete water models
307 * @param waterPositionMapIdx water position map index
308 */
309 void deleteWater(int waterPositionMapIdx);
310
311 /**
312 * Set foliage brush
313 */
314 void setFoliageBrush();
315
316 /**
317 * Update foliage brush
318 * @param foliageBrush foliage brush
319 * @param foliageBrushPrototypes foliage brush prototypes
320 */
321 void updateFoliageBrush();
322
323 /**
324 * Apply current brush to foliage at given brush center position
325 * @param terrainBoundingBox terrain bounding box
326 * @param brushCenterPosition brush center position
327 * @param deltaTime delta time between last frame and this frame
328 */
329 void applyFoliageBrush(BoundingBox& terrainBoundingBox, const Vector3& brushCenterPosition, int64_t deltaTime);
330
331 /**
332 * @return UI terrain brush operation
333 */
334 Terrain2::BrushOperation getUITerrainBrushOperation();
335
336 /**
337 * @return UI water operation
338 */
339 Terrain2::BrushOperation getUIWaterOperation();
340
341 /**
342 * @return UI foliage brush operation
343 */
344 Terrain2::BrushOperation getUIFoliageBrushOperation();
345
346 /**
347 * Update info text line
348 * @param text text
349 */
350 void updateInfoText(const MutableString& text);
351
352 /**
353 * Shows the error pop up
354 * @param caption caption
355 * @param message message
356 */
357 void showErrorPopUp(const string& caption, const string& message);
358
359};
Transformations which contain scale, rotations and translation.
Axis aligned bounding box used for frustum, this is not directly connectable with physics engine.
Definition: BoundingBox.h:25
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
2D vector 2 class
Definition: Vector2.h:19
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 applyFoliageBrushPrototypeDetails()
Apply foliage brush prototype details.
void applyTerrainBrush(BoundingBox &terrainBoundingBox, vector< Model * > &terrainModels, const Vector3 &brushCenterPosition, int64_t deltaTime)
Apply current brush to terrain at given brush center position.
bool determineCurrentBrushHeight(BoundingBox &terrainBoundingBox, vector< Model * > terrainModels, const Vector3 &brushCenterPosition)
Determine current brush flatten height.
void setBrushDensityStrength(float densityStrength)
Set brush density/strength.
void onContextMenuRequested(GUIElementNode *node, int mouseX, int mouseY) override
On mouse over.
bool determineRampHeight(BoundingBox &terrainBoundingBox, vector< Model * > terrainModels, const Vector3 &position, float &height)
Determine ramp height.
void onValueChanged(GUIElementNode *node) override
On value changed.
bool checkOutlinerFoliageBrushPrototype(const string &outlinerNode, int &foliageBrushIdx, int &foliageBrushPrototypeIdx)
Check if outliner selection is foliage brush prototype.
void onActionPerformed(GUIActionListenerType type, GUIElementNode *node) override
vector< unordered_map< int, vector< Transformations > > > newFoliageMaps
void showErrorPopUp(const string &caption, const string &message)
Shows the error pop up.
void applyRampTerrainBrush(BoundingBox &terrainBoundingBox, vector< Model * > &terrainModels, const Vector3 &position, float rotation, const Vector2 &scale, float minHeight, float maxHeight)
Apply current brush to terrain at given brush center position.
TerrainEditorTabController(TerrainEditorTabView *view)
Public constructor.
void createWater(BoundingBox &terrainBoundingBox, const Vector3 &brushCenterPosition, vector< Model * > &waterModels, Vector3 &waterReflectionEnvironmentMappingPosition)
Create water using a auto fill like algorithm.
void applyFoliageBrush(BoundingBox &terrainBoundingBox, const Vector3 &brushCenterPosition, int64_t deltaTime)
Apply current brush to foliage at given brush center position.
Mutable string class.
Definition: MutableString.h:16
Terrain 2 utility.
Definition: Terrain2.h:33
An attribute is a name-value pair.
Definition: tinyxml.h:734
Always the top level node.
Definition: tinyxml.h:1317
The element is a container class.
Definition: tinyxml.h:886
GUI action listener interface.
GUI change listener interface.
Tab controller, which connects UI with logic.
Definition: TabController.h:23