TDME2 1.9.121
PrototypeTerrain.h
Go to the documentation of this file.
1#pragma once
2
3#include <unordered_map>
4#include <unordered_set>
5#include <vector>
6
7#include <tdme/tdme.h>
12
13using std::unordered_map;
14using std::unordered_set;
15using std::vector;
16
19
21
22/**
23 * Prototype terrain definition
24 * @author Andreas Drewke
25 * @version $Id$
26 */
28{
29private:
30 float width { -1 };
31 float depth { -1 };
32 vector<float> terrainHeightVector;
34 unordered_map<int, float> waterPositionMapsHeight;
35 unordered_map<int, unordered_map<int, unordered_set<int>>> waterPositionMaps;
37 unordered_map<int, Prototype*> foliageFoliagePrototypeMap;
38 vector<unordered_map<int, vector<Transformations>>> foliageMaps;
39 vector<PrototypeTerrainBrush*> brushes;
40
41public:
42
43 /**
44 * Public constructor
45 */
47 }
48
49 /**
50 * Destructor
51 */
53 for (auto& foliageFoliagePrototypeMapIt: foliageFoliagePrototypeMap) {
54 delete foliageFoliagePrototypeMapIt.second;
55 }
56 for (auto brush: brushes) delete brush;
57 }
58
59 /**
60 * @return width
61 */
62 inline float getWidth() const {
63 return width;
64 }
65
66 /**
67 * Set width
68 * @param width width
69 */
70 inline void setWidth(float width) {
71 this->width = width;
72 }
73
74 /**
75 * @return depth
76 */
77 inline float getDepth() const {
78 return depth;
79 }
80
81 /**
82 * Set depth
83 * @param depth depth
84 */
85 inline void setDepth(float depth) {
86 this->depth = depth;
87 }
88
89 /**
90 * @return terrain height vector
91 */
92 inline vector<float>& getHeightVector() {
94 }
95
96 /**
97 * @return water position maps height
98 */
99 inline unordered_map<int, float>& getWaterPositionMapsHeight() {
101 }
102
103 /**
104 * @return water position maps
105 */
106 inline unordered_map<int, unordered_map<int, unordered_set<int>>>& getWaterPositionMaps() {
107 return waterPositionMaps;
108 }
109
110 /**
111 * Get water position maps indices
112 * @return water position maps indices
113 */
114 inline vector<int> getWaterPositionMapsIndices() {
115 vector<int> waterPositionMapsIndices;
116 for (auto waterPositionMapsIt: waterPositionMaps) {
117 waterPositionMapsIndices.push_back(waterPositionMapsIt.first);
118 }
119 return waterPositionMapsIndices;
120 }
121
122 /**
123 * @return allocated water position map idx
124 */
126 return waterPositionMapIdx++;
127 }
128
129 /**
130 * Get water position map height at given water position map index
131 * @param idx water position map index
132 * @return water position map height at given water position map index
133 */
134 inline float getWaterPositionMapHeight(int idx) {
135 return waterPositionMapsHeight[idx];
136 }
137
138 /**
139 * Set water position map height at given water position map index
140 * @param idx water position map index
141 * @param waterHeight waterHeight water height
142 */
143 inline void setWaterPositionMapHeight(int idx, float waterHeight) {
144 waterPositionMapsHeight[idx] = waterHeight;
145 }
146
147 /**
148 * Get water position map at given index
149 * @param idx index
150 * @return water position map
151 */
152 inline unordered_map<int, unordered_set<int>>& getWaterPositionMap(int idx) {
153 return waterPositionMaps[idx];
154 }
155
156 /**
157 * Remove water position map at given water position map index
158 * @param idx water position map index
159 */
160 inline void removeWaterPositionMap(int idx) {
161 waterPositionMapsHeight.erase(idx);
162 waterPositionMaps.erase(idx);
163 }
164
165 /**
166 * Get or allocate a foliage prototype index
167 * @param prototype prototype
168 * @return prototype index
169 */
170 inline int getFoliagePrototypeIndex(Prototype* prototype) {
171 auto foliagePrototypeMapIdx = 0;
172 for (auto& foliageFoliagePrototypeMapIt: foliageFoliagePrototypeMap) {
173 if (foliageFoliagePrototypeMapIt.first > foliagePrototypeMapIdx) foliagePrototypeMapIdx = foliageFoliagePrototypeMapIt.first;
174 if (prototype->getFileName() == foliageFoliagePrototypeMapIt.second->getFileName()) return foliageFoliagePrototypeMapIt.first;
175 }
179 }
180
181 /**
182 * Get foliage prototype indices
183 * @return foliage prototype indices
184 */
185 inline vector<int> getFoliagePrototypeIndices() {
186 vector<int> foliagePrototypeIndices;
187 for (auto& foliageFoliagePrototypeMapIt: foliageFoliagePrototypeMap) {
188 foliagePrototypeIndices.push_back(foliageFoliagePrototypeMapIt.first);
189 }
190 return foliagePrototypeIndices;
191 }
192
193 /**
194 * Get foliage prototype by given index
195 * @param idx protoype index
196 * @return prototype or nullptr
197 */
198 inline Prototype* getFoliagePrototype(int prototypeIdx) {
199 auto foliageFoliagePrototypeIt = foliageFoliagePrototypeMap.find(prototypeIdx);
200 if (foliageFoliagePrototypeIt == foliageFoliagePrototypeMap.end()) {
201 return nullptr;
202 }
203 return foliageFoliagePrototypeIt->second;
204 }
205
206 /**
207 * @return foliage maps
208 */
209 inline vector<unordered_map<int, vector<Transformations>>>& getFoliageMaps() {
210 return foliageMaps;
211 }
212
213 /**
214 * Get foliage prototype entity ids
215 * @param prototypeIdx prototype index
216 * @return entity ids
217 */
218 inline const vector<string> getFoliagePrototypeEntityIds(int prototypeIdx) {
219 vector<string> foliagePrototypeEntityIds;
220 auto prototypeEntityIdx = 0;
221 for (auto& foliageMapPartition: foliageMaps) {
222 for (auto& foliageMapPartitionIt: foliageMapPartition) {
223 auto& transformationsVector = foliageMapPartition[prototypeIdx];
224 if (transformationsVector.empty() == true) continue;
225 auto foliagePrototype = getFoliagePrototype(prototypeIdx);
226 if (foliagePrototype->isRenderGroups() == false) {
227 for (auto& transformations: transformationsVector) {
228 foliagePrototypeEntityIds.push_back("tdme.foliage." + to_string(prototypeIdx) + "." + to_string(prototypeEntityIdx++));
229 }
230 }
231 }
232 }
233 return foliagePrototypeEntityIds;
234 }
235
236 /**
237 * Get foliage prototype entity transformations indexed by entity id
238 * @param prototypeIdx prototype index
239 * @return transformations indexed by entity id
240 */
241 inline const map<string, Transformations> getFoliagePrototypeEntityTransformations(int prototypeIdx) {
242 map<string, Transformations> foliagePrototypeEntityTransformations;
243 auto prototypeEntityIdx = 0;
244 for (auto& foliageMapPartition: foliageMaps) {
245 auto& transformationsVector = foliageMapPartition[prototypeIdx];
246 if (transformationsVector.empty() == true) continue;
247 auto foliagePrototype = getFoliagePrototype(prototypeIdx);
248 if (foliagePrototype->isRenderGroups() == false) {
249 for (auto& transformations: transformationsVector) {
250 foliagePrototypeEntityTransformations["tdme.foliage." + to_string(prototypeIdx) + "." + to_string(prototypeEntityIdx++)] = transformations;
251 }
252 }
253 }
254 return foliagePrototypeEntityTransformations;
255 }
256
257 /**
258 * @return prototype terrain brushes
259 */
260 inline const vector<PrototypeTerrainBrush*>& getBrushes() const {
261 return brushes;
262 }
263
264 /**
265 * Get prototype terrain brush
266 * @param idx index
267 * @return prototype terrain brush prototype
268 */
270 if (idx < 0 || idx >= brushes.size()) return nullptr;
271 return brushes[idx];
272 }
273
274 /**
275 * Add prototype terrain brush
276 * @param idx index
277 */
279 auto brush = new PrototypeTerrainBrush();
280 brushes.push_back(brush);
281 return brush;
282 }
283
284 /**
285 * Remove prototype terrain brush
286 * @param idx index
287 */
288 bool removeBrush(int idx) {
289 if (idx < 0 || idx >= brushes.size()) return false;
290 auto brush = brushes[idx];
291 brushes.erase(brushes.begin() + idx);
292 delete brush;
293 return true;
294 }
295
296};
Transformations which contain scale, rotations and translation.
Prototype terrain brush prototype definition.
unordered_map< int, Prototype * > foliageFoliagePrototypeMap
const vector< PrototypeTerrainBrush * > & getBrushes() const
PrototypeTerrainBrush * addBrush()
Add prototype terrain brush.
void setWidth(float width)
Set width.
vector< int > getWaterPositionMapsIndices()
Get water position maps indices.
unordered_map< int, float > & getWaterPositionMapsHeight()
vector< unordered_map< int, vector< Transformations > > > & getFoliageMaps()
int getFoliagePrototypeIndex(Prototype *prototype)
Get or allocate a foliage prototype index.
void setDepth(float depth)
Set depth.
unordered_map< int, float > waterPositionMapsHeight
const map< string, Transformations > getFoliagePrototypeEntityTransformations(int prototypeIdx)
Get foliage prototype entity transformations indexed by entity id.
void setWaterPositionMapHeight(int idx, float waterHeight)
Set water position map height at given water position map index.
unordered_map< int, unordered_set< int > > & getWaterPositionMap(int idx)
Get water position map at given index.
Prototype * getFoliagePrototype(int prototypeIdx)
Get foliage prototype by given index.
vector< int > getFoliagePrototypeIndices()
Get foliage prototype indices.
const vector< string > getFoliagePrototypeEntityIds(int prototypeIdx)
Get foliage prototype entity ids.
unordered_map< int, unordered_map< int, unordered_set< int > > > & getWaterPositionMaps()
bool removeBrush(int idx)
Remove prototype terrain brush.
void removeWaterPositionMap(int idx)
Remove water position map at given water position map index.
PrototypeTerrainBrush * getBrush(int idx)
Get prototype terrain brush.
vector< unordered_map< int, vector< Transformations > > > foliageMaps
vector< PrototypeTerrainBrush * > brushes
unordered_map< int, unordered_map< int, unordered_set< int > > > waterPositionMaps
float getWaterPositionMapHeight(int idx)
Get water position map height at given water position map index.
Prototype definition.
Definition: Prototype.h:49