TDME2 1.9.121
PrototypeTerrainBrushPrototype.h
Go to the documentation of this file.
1#pragma once
2
3#include <string>
4
5#include <tdme/tdme.h>
7
8using std::string;
9
10/**
11 * Prototype terrain brush prototype definition
12 * @author Andreas Drewke
13 * @version $Id$
14 */
16{
17private:
18 string fileName;
19 float count { 1.0f };
20 bool normalAlign { false };
21 float rotationXMin { -5.0f };
22 float rotationXMax { 5.0f };
23 float rotationYMin { 0.0f };
24 float rotationYMax { 360.0f };
25 float rotationZMin { -5.0f };
26 float rotationZMax { 5.0f };
27 float scaleMin { 0.8f };
28 float scaleMax { 1.2f };
29 float heightMin { 0.0f };
30 float heightMax { 100.0f };
31 float slopeMin { 0.0f };
32 float slopeMax { 30.0f };
33
34public:
35
36 /**
37 * Public constructor
38 */
40 }
41
42 /**
43 * Destructor
44 */
46 }
47
48 /**
49 * @return prototype file name
50 */
51 const string& getFileName() const {
52 return fileName;
53 }
54
55 /**
56 * Set prototype file name
57 * @param fileName file name
58 */
59 void setFileName(const string &fileName) {
60 this->fileName = fileName;
61 }
62
63 /**
64 * @return count
65 */
66 float getCount() const {
67 return count;
68 }
69
70 /**
71 * Set count
72 * @param count count
73 */
74 void setCount(float count) {
75 this->count = count;
76 }
77
78 /**
79 * @return align to normal
80 */
81 bool isNormalAlign() const {
82 return normalAlign;
83 }
84
85 /**
86 * Set align to normal
87 * @param normalAlign normal align
88 */
90 this->normalAlign = normalAlign;
91 }
92
93 /**
94 * @return rotation x min
95 */
96 float getRotationXMin() const {
97 return rotationXMin;
98 }
99
100 /**
101 * Set rotation x min
102 * @param rotationXMin rotation x min
103 */
105 this->rotationXMin = rotationXMin;
106 }
107
108 /**
109 * @return rotation x max
110 */
111 float getRotationXMax() const {
112 return rotationXMax;
113 }
114
115 /**
116 * Set rotation x max
117 * @param rotationXMax rotation x max
118 */
120 this->rotationXMax = rotationXMax;
121 }
122
123 /**
124 * @return rotation y min
125 */
126 float getRotationYMin() const {
127 return rotationYMin;
128 }
129
130 /**
131 * Set rotation y min
132 * @param rotationYMin rotation Y min
133 */
135 this->rotationYMin = rotationYMin;
136 }
137
138 /**
139 * @return rotation y max
140 */
141 float getRotationYMax() const {
142 return rotationYMax;
143 }
144
145 /**
146 * Set rotation y max
147 * @param rotationYMax rotation y max
148 */
150 this->rotationYMax = rotationYMax;
151 }
152
153 /**
154 * @return rotation z min
155 */
156 float getRotationZMin() const {
157 return rotationZMin;
158 }
159
160 /**
161 * Set rotation z min
162 * @param rotationZMin rotation Z min
163 */
165 this->rotationZMin = rotationZMin;
166 }
167
168 /**
169 * @return rotation z max
170 */
171 float getRotationZMax() const {
172 return rotationZMax;
173 }
174
175 /**
176 * Set rotation z max
177 * @param rotationZMax rotation z max
178 */
180 this->rotationZMax = rotationZMax;
181 }
182
183 /**
184 * @return scale min
185 */
186 float getScaleMin() const {
187 return scaleMin;
188 }
189
190 /**
191 * Set scale min
192 * @param scaleMin scale min
193 */
194 void setScaleMin(float scaleMin) {
195 this->scaleMin = scaleMin;
196 }
197
198 /**
199 * @return scale max
200 */
201 float getScaleMax() const {
202 return scaleMax;
203 }
204
205 /**
206 * Set scale max
207 * @param scaleMax scale max
208 */
209 void setScaleMax(float scaleMax) {
210 this->scaleMax = scaleMax;
211 }
212
213 /**
214 * @return height min
215 */
216 float getHeightMin() const {
217 return heightMin;
218 }
219
220 /**
221 * Set height min
222 * @param heightMin height min
223 */
225 this->heightMin = heightMin;
226 }
227
228 /**
229 * @return height max
230 */
231 float getHeightMax() const {
232 return heightMax;
233 }
234
235 /**
236 * Set height max
237 * @param heightMax height max
238 */
240 this->heightMax = heightMax;
241 }
242
243 /**
244 * @return slope min
245 */
246 float getSlopeMin() const {
247 return slopeMin;
248 }
249
250 /**
251 * Set slope min
252 * @param slopeMin slope min
253 */
254 void setSlopeMin(float slopeMin) {
255 this->slopeMin = slopeMin;
256 }
257
258 /**
259 * @return slope max
260 */
261 float getSlopeMax() const {
262 return slopeMax;
263 }
264
265 /**
266 * Set slope max
267 * @param slopeMax slope max
268 */
269 void setSlopeMax(float slopeMax) {
270 this->slopeMax = slopeMax;
271 }
272
273};
void setFileName(const string &fileName)
Set prototype file name.