TDME2 1.9.121
Prototype.h
Go to the documentation of this file.
1#pragma once
2
3#include <algorithm>
4#include <map>
5#include <string>
6#include <vector>
7
8#include <tdme/tdme.h>
16#include <tdme/engine/Entity.h>
18#include <tdme/math/fwd-tdme.h>
19#include <tdme/math/Vector3.h>
21
22using std::map;
23using std::remove;
24using std::string;
25using std::vector;
26
41
42/**
43 * Prototype definition
44 * @author Andreas Drewke
45 * @version $Id$
46 */
48 : public BaseProperties
49{
51 friend class Prototype_Type;
52
53public:
54 static constexpr int ID_NONE { -1 };
55
56private:
57 int id;
58 Prototype_Type* type { nullptr };
59 bool embedded { true };
60 string fileName;
62 string thumbnail;
63 Model* model { nullptr };
68 vector<PrototypeBoundingVolume*> boundingVolumes;
70 vector<PrototypeParticleSystem*> particleSystems;
71 bool terrainMesh { false };
72 bool renderGroups { false };
73 string shaderId { "default"};
74 string distanceShaderId { "default"};
75 float distanceShaderDistance { 10000.0f };
76 bool contributesShadows { true };
77 bool receivesShadows { true };
80 map<string, PrototypeAudio*> soundsById;
81 vector<PrototypeAudio*> sounds;
85
86 /**
87 * Set Id
88 * @param id id
89 */
90 inline void setId(int id) {
91 this->id = id;
92 }
93
94public:
95
96 /**
97 * Creates a prototype
98 * @param id id
99 * @param prototypType prototype type
100 * @param name name
101 * @param description description
102 * @param fileName file name
103 * @param modelFileName model file name
104 * @param thumbnail thumbnail PNG data
105 * @param model model
106 * @param pivot pivot
107 */
108 Prototype(int id, Prototype_Type* prototypeType, const string& name, const string& description, const string& fileName, const string& modelFileName, const string& thumbnail, Model* model, const Vector3& pivot);
109
110 /**
111 * Destructor
112 */
113 virtual ~Prototype();
114
115 /**
116 * @return id
117 */
118 inline int getId() {
119 return id;
120 }
121
122 /**
123 * @return type
124 */
126 return type;
127 }
128
129 /**
130 * @return if this prototype is embedded into a tscene file
131 */
132 inline bool isEmbedded() {
133 return embedded;
134 }
135
136 /**
137 * Set embedded
138 * @param embedded embedded
139 */
140 inline void setEmbedded(bool embedded) {
141 this->embedded = embedded;
142 }
143
144 /**
145 * @return prototype file name including relative path
146 */
147 inline const string& getFileName() {
148 return fileName;
149 }
150
151 /**
152 * Set up prototype file name including relative path
153 * @param fileName prototype file name including relative path
154 */
155 inline void setFileName(const string& fileName) {
156 this->fileName = fileName;
157 }
158
159 /**
160 * @return model file name
161 */
162 inline const string& getModelFileName() {
163 return modelFileName;
164 }
165
166 /**
167 * Set model file name
168 * @param fileName file name
169 */
170 inline void setModelFileName(const string& fileName) {
171 this->modelFileName = fileName;
172 }
173
174 /**
175 * @return thumbnail PNG data
176 */
177 inline const string& getThumbnail() {
178 return thumbnail;
179 }
180
181 /**
182 * @return model
183 */
184 inline Model* getModel() {
185 return model;
186 }
187
188 /**
189 * Set model
190 * @param model model
191 */
192 void setModel(Model* model);
193
194 /**
195 * Unset model without deleting current one
196 * @return model
197 */
198 inline Model* unsetModel() {
199 auto currentModel = model;
200 model = nullptr;
201 return currentModel;
202 }
203
204 /**
205 * @return pivot
206 */
207 inline Vector3& getPivot() {
208 return pivot;
209 }
210
211 /**
212 * @return bounding volume count
213 */
215 return boundingVolumes.size();
216 }
217
218 /**
219 * Get bounding volume at given index
220 * @param idx index
221 * @return prototype bounding volume
222 */
224 return idx >= 0 && idx < boundingVolumes.size()?boundingVolumes[idx]:nullptr;
225 }
226
227 /**
228 * Add bounding volume at given index
229 * @param idx index
230 * @param prototypeBoundingVolume prototype bounding volume
231 * @return scene editor bounding volume
232 */
233 bool addBoundingVolume(int idx, PrototypeBoundingVolume* prototypeBoundingVolume);
234
235 /**
236 * Remove bounding volume at given index
237 * @param idx index
238 */
239 void removeBoundingVolume(int idx);
240
241 /**
242 * @return physics
243 */
245 return physics;
246 }
247
248 /**
249 * @return LOD level 2
250 */
252 return lodLevel2;
253 }
254
255 /**
256 * Set LOD level 2
257 * @param lodLevel LOD level settings
258 */
259 void setLODLevel2(PrototypeLODLevel* lodLevel);
260
261 /**
262 * @return LOD level 3
263 */
265 return lodLevel3;
266 }
267
268 /**
269 * Set LOD level 3
270 * @param lodLevel LOD level settings
271 */
272 void setLODLevel3(PrototypeLODLevel* lodLevel);
273
274 /**
275 * Remove LOD level
276 * @param lodLevel LOD level
277 */
278 void removeLODLevel(int lodLevel);
279
280 /**
281 * @return imposter LOD
282 */
284 return imposterLOD;
285 }
286
287 /**
288 * Set imposter LOD
289 * @param imposterLOD imposter LOD
290 */
292
293 /**
294 * @return particle systems count
295 */
297 return particleSystems.size();
298 }
299
300 /**
301 * Add particle system
302 */
304 auto particleSystem = new PrototypeParticleSystem();
305 particleSystems.push_back(particleSystem);
306 return particleSystem;
307 }
308
309 /**
310 * Remove particle system at given index
311 * @param idx particle system index
312 * @return success
313 */
314 inline bool removeParticleSystemAt(int idx) {
315 if (idx < 0 || idx >= particleSystems.size()) return false;
316 auto particleSystem = particleSystems[idx];
317 particleSystems.erase(remove(particleSystems.begin(), particleSystems.end(), particleSystem), particleSystems.end());
318 delete particleSystem;
319 return true;
320 }
321
322 /**
323 * Get particle system at given index
324 * @param idx particle system index
325 * @return prototype particle system
326 */
328 if (idx < 0 || idx >= particleSystems.size()) return nullptr;
329 return particleSystems[idx];
330 }
331
332 /**
333 * @return if entity contributes to shadows
334 */
335 inline bool isContributesShadows() {
336 return contributesShadows;
337 }
338
339 /**
340 * Enable/disable contributes shadows
341 * @param contributesShadows contributes shadows
342 */
344 this->contributesShadows = contributesShadows;
345 }
346
347 /**
348 * @return if entity receives shadows
349 */
350 inline bool isReceivesShadows() {
351 return receivesShadows;
352 }
353
354 /**
355 * Enable/disable receives shadows
356 * @param receivesShadows receives shadows
357 */
359 this->receivesShadows = receivesShadows;
360 }
361
362 /**
363 * Is terrain mesh
364 * @return terrain mesh
365 */
366 inline bool isTerrainMesh() {
367 return terrainMesh;
368 }
369
370 /**
371 * Set terrain mesh
372 * @param terrainMesh terrain mesh
373 */
374 inline void setTerrainMesh(bool terrainMesh) {
375 this->terrainMesh = terrainMesh;
376 }
377
378 /**
379 * Is using render groups
380 * @return render groups enabled
381 */
382 inline bool isRenderGroups() {
383 return renderGroups;
384 }
385
386 /**
387 * Set using render groups
388 * @param renderGroups use render groups
389 */
390 inline void setRenderGroups(bool renderGroups) {
391 this->renderGroups = renderGroups;
392 }
393
394 /**
395 * Get shader
396 * @return shader id
397 */
398 inline const string& getShader() {
399 return shaderId;
400 }
401
402 /**
403 * Set shader
404 * @param id shader id
405 */
406 inline void setShader(const string& id) {
407 this->shaderId = id;
408 shaderParameters.setShader(id);
409 }
410
411 /**
412 * Get distance shader
413 * @return shader id
414 */
415 inline const string& getDistanceShader() {
416 return distanceShaderId;
417 }
418
419 /**
420 * Set distance shader
421 * @param id shader id
422 */
423 inline void setDistanceShader(const string& id) {
424 this->distanceShaderId = id;
425 distanceShaderParameters.setShader(id);
426 }
427
428 /**
429 * Get distance shader distance
430 * @return distance shader distance
431 */
434 }
435
436 /**
437 * Set distance shader distance
438 * @param distance distance
439 */
440 inline void setDistanceShaderDistance(float distance) {
441 this->distanceShaderDistance = distance;
442 }
443
444 /**
445 * Get shader parameters
446 * @return shader parameters
447 */
449 return shaderParameters;
450 }
451
452 /**
453 * Set shader parameters
454 * @param parameters shader parameters
455 */
457 shaderParameters = parameters;
458 }
459
460 /**
461 * Get distance shader parameters
462 * @return shader parameters
463 */
466 }
467
468 /**
469 * Set distance shader parameters
470 * @param parameters distance shader parameters
471 */
473 distanceShaderParameters = parameters;
474 }
475
476 /**
477 * @return sounds list
478 */
479 inline const vector<PrototypeAudio*>& getSounds() {
480 return sounds;
481 }
482
483 /**
484 * Returns sound of given sound id
485 * @param id id
486 * @return sound
487 */
488 inline PrototypeAudio* getSound(const string& id) {
489 auto soundIt = soundsById.find(id);
490 if (soundIt == soundsById.end()) return nullptr;
491 return soundIt->second;
492 }
493
494 /**
495 * Remove sound of given sound id
496 * @param id id
497 */
498 inline void removeSound(const string& id) {
499 auto soundIt = soundsById.find(id);
500 if (soundIt == soundsById.end()) return;
501 sounds.erase(remove(sounds.begin(), sounds.end(), soundIt->second), sounds.end());
502 soundsById.erase(soundIt);
503 }
504
505 /**
506 * Renames sound of given sound id with new id
507 * @param id existing id
508 * @param id new id
509 * @return success
510 */
511 inline bool renameSound(const string& id, const string& newId) {
512 auto soundIt = soundsById.find(id);
513 if (soundIt == soundsById.end()) return false;
514 auto sound = soundIt->second;
515 sound->setId(newId);
516 soundsById.erase(soundIt);
517 soundsById[newId] = sound;
518 return true;
519 }
520
521 /**
522 * Add sound with given id
523 * @param id id
524 * @return prototype audio
525 */
526 PrototypeAudio* addSound(const string& id);
527
528 /**
529 * @return environment map render pass mask
530 */
533 }
534
535 /**
536 * Set up environment render pass mask
537 * @param renderPassMask render pass mask
538 */
539 inline void setEnvironmentMapRenderPassMask(int renderPassMask) {
540 this->environmentMapRenderPassMask = renderPassMask;
541 }
542
543 /**
544 * @return environment map render update time frequency in milliseconds
545 */
548 }
549
550 /**
551 * Set up environment map render update time frequency
552 * @param frequency frequency in milliseconds
553 */
554 inline void setEnvironmentMapTimeRenderUpdateFrequency(int64_t frequency) {
556 }
557
558 /**
559 * @return terrain
560 */
562 return terrain;
563 }
564
565};
TDME2 engine entity shader parameters.
void setShader(const string &shaderId)
Set shader.
TDME engine entity.
Definition: Entity.h:31
static constexpr int RENDERPASS_ALL
Definition: Entity.h:57
Representation of a 3d model.
Definition: Model.h:32
Prototype audio definition.
Prototype LOD level definition.
Prototype physics body definitions.
Prototype definition.
Definition: Prototype.h:49
PrototypeAudio * addSound(const string &id)
Add sound with given id.
Definition: Prototype.cpp:137
void setLODLevel3(PrototypeLODLevel *lodLevel)
Set LOD level 3.
Definition: Prototype.cpp:98
void setImposterLOD(PrototypeImposterLOD *imposterLOD)
Set imposter LOD.
Definition: Prototype.cpp:124
void setContributesShadows(bool contributesShadows)
Enable/disable contributes shadows.
Definition: Prototype.h:343
PrototypeParticleSystem * addParticleSystem()
Add particle system.
Definition: Prototype.h:303
PrototypeLODLevel * getLODLevel2()
Definition: Prototype.h:251
vector< PrototypeBoundingVolume * > boundingVolumes
Definition: Prototype.h:68
void setFileName(const string &fileName)
Set up prototype file name including relative path.
Definition: Prototype.h:155
void setShader(const string &id)
Set shader.
Definition: Prototype.h:406
const vector< PrototypeAudio * > & getSounds()
Definition: Prototype.h:479
PrototypeImposterLOD * getImposterLOD()
Definition: Prototype.h:283
PrototypeAudio * getSound(const string &id)
Returns sound of given sound id.
Definition: Prototype.h:488
void removeSound(const string &id)
Remove sound of given sound id.
Definition: Prototype.h:498
void setDistanceShaderParameters(const EntityShaderParameters &parameters)
Set distance shader parameters.
Definition: Prototype.h:472
virtual ~Prototype()
Destructor.
Definition: Prototype.cpp:54
EntityShaderParameters shaderParameters
Definition: Prototype.h:78
void setId(int id)
Set Id.
Definition: Prototype.h:90
PrototypeTerrain * terrain
Definition: Prototype.h:84
const string & getShader()
Get shader.
Definition: Prototype.h:398
PrototypeLODLevel * getLODLevel3()
Definition: Prototype.h:264
map< string, PrototypeAudio * > soundsById
Definition: Prototype.h:80
float getDistanceShaderDistance()
Get distance shader distance.
Definition: Prototype.h:432
Prototype(int id, Prototype_Type *prototypeType, const string &name, const string &description, const string &fileName, const string &modelFileName, const string &thumbnail, Model *model, const Vector3 &pivot)
Creates a prototype.
Definition: Prototype.cpp:27
bool isRenderGroups()
Is using render groups.
Definition: Prototype.h:382
Model * unsetModel()
Unset model without deleting current one.
Definition: Prototype.h:198
bool isTerrainMesh()
Is terrain mesh.
Definition: Prototype.h:366
PrototypePhysics * physics
Definition: Prototype.h:69
const string & getDistanceShader()
Get distance shader.
Definition: Prototype.h:415
PrototypeLODLevel * lodLevel3
Definition: Prototype.h:66
bool addBoundingVolume(int idx, PrototypeBoundingVolume *prototypeBoundingVolume)
Add bounding volume at given index.
Definition: Prototype.cpp:71
void setDistanceShaderDistance(float distance)
Set distance shader distance.
Definition: Prototype.h:440
PrototypePhysics * getPhysics()
Definition: Prototype.h:244
void setModel(Model *model)
Set model.
Definition: Prototype.cpp:65
void setTerrainMesh(bool terrainMesh)
Set terrain mesh.
Definition: Prototype.h:374
PrototypeParticleSystem * getParticleSystemAt(int idx)
Get particle system at given index.
Definition: Prototype.h:327
void setDistanceShader(const string &id)
Set distance shader.
Definition: Prototype.h:423
const EntityShaderParameters & getDistanceShaderParameters()
Get distance shader parameters.
Definition: Prototype.h:464
PrototypeLODLevel * lodLevel2
Definition: Prototype.h:65
EntityShaderParameters distanceShaderParameters
Definition: Prototype.h:79
void setShaderParameters(EntityShaderParameters &parameters)
Set shader parameters.
Definition: Prototype.h:456
int64_t getEnvironmentMapTimeRenderUpdateFrequency()
Definition: Prototype.h:546
static constexpr int ID_NONE
Definition: Prototype.h:54
PrototypeBoundingVolume * getBoundingVolume(int idx)
Get bounding volume at given index.
Definition: Prototype.h:223
void setEnvironmentMapTimeRenderUpdateFrequency(int64_t frequency)
Set up environment map render update time frequency.
Definition: Prototype.h:554
void setEmbedded(bool embedded)
Set embedded.
Definition: Prototype.h:140
void removeBoundingVolume(int idx)
Remove bounding volume at given index.
Definition: Prototype.cpp:85
bool removeParticleSystemAt(int idx)
Remove particle system at given index.
Definition: Prototype.h:314
PrototypeTerrain * getTerrain()
Definition: Prototype.h:561
void setRenderGroups(bool renderGroups)
Set using render groups.
Definition: Prototype.h:390
void setLODLevel2(PrototypeLODLevel *lodLevel)
Set LOD level 2.
Definition: Prototype.cpp:92
const EntityShaderParameters & getShaderParameters()
Get shader parameters.
Definition: Prototype.h:448
const string & getModelFileName()
Definition: Prototype.h:162
vector< PrototypeParticleSystem * > particleSystems
Definition: Prototype.h:70
void setEnvironmentMapRenderPassMask(int renderPassMask)
Set up environment render pass mask.
Definition: Prototype.h:539
void setModelFileName(const string &fileName)
Set model file name.
Definition: Prototype.h:170
void setReceivesShadows(bool receivesShadows)
Enable/disable receives shadows.
Definition: Prototype.h:358
vector< PrototypeAudio * > sounds
Definition: Prototype.h:81
PrototypeImposterLOD * imposterLOD
Definition: Prototype.h:67
bool renameSound(const string &id, const string &newId)
Renames sound of given sound id with new id.
Definition: Prototype.h:511
void removeLODLevel(int lodLevel)
Remove LOD level.
Definition: Prototype.cpp:104
Scene prototype library definition.
Definition: SceneLibrary.h:27
3D vector 3 class
Definition: Vector3.h:22