TDME2 1.9.121
Prototype.cpp
Go to the documentation of this file.
2
3#include <tdme/tdme.h>
13#include <tdme/math/Vector3.h>
15
26
27Prototype::Prototype(int id, Prototype_Type* entityType, const string& name, const string& description, const string& fileName, const string& modelFileName, const string& thumbnail, Model* model, const Vector3& pivot):
28 BaseProperties(name, description)
29{
30 this->id = id;
31 this->type = entityType;
32 this->name = name;
33 this->description = description;
34 this->fileName = fileName;
35 this->modelFileName = modelFileName;
36 this->thumbnail = thumbnail;
37 this->model = model;
38 this->pivot.set(pivot);
40 this->physics = new PrototypePhysics();
41 } else
42 if (this->type == Prototype_Type::MODEL) {
43 if (model->getShaderModel() == ShaderModel::PBR) {
44 shaderId = StringTools::startsWith(shaderId, "pbr-") == true || shaderId.empty() == true?shaderId:"pbr-" + shaderId;
45 distanceShaderId = StringTools::startsWith(distanceShaderId, "pbr-") == true || distanceShaderId.empty() == true?distanceShaderId:"pbr-" + distanceShaderId;
46 }
47 this->physics = new PrototypePhysics();
48 } else
49 if (this->type == Prototype_Type::TERRAIN) {
50 this->terrain = new PrototypeTerrain();
51 }
52}
53
55 if (model != nullptr) delete model;
56 if (lodLevel2 != nullptr) delete lodLevel2;
57 if (lodLevel3 != nullptr) delete lodLevel3;
58 if (physics != nullptr) delete physics;
59 for (auto particleSystem: particleSystems) delete particleSystem;
60 for (auto i = 0; i < boundingVolumes.size(); i++) delete boundingVolumes[i];
61 for (auto sound: sounds) delete sound;
62 if (terrain != nullptr) delete terrain;
63}
64
66 if (this->model == model) return;
67 if (this->model != nullptr) delete this->model;
68 this->model = model;
69}
70
71bool Prototype::addBoundingVolume(int idx, PrototypeBoundingVolume* prototypeBoundingVolume)
72{
73 if (idx < 0)
74 return false;
75
76 if (idx > boundingVolumes.size())
77 return false;
78
79 if (idx == boundingVolumes.size()) {
80 boundingVolumes.push_back(prototypeBoundingVolume);
81 }
82 return false;
83}
84
86{
87 if (idx < 0 || idx >= boundingVolumes.size()) return;
88 delete boundingVolumes[idx];
89 boundingVolumes.erase(boundingVolumes.begin() + idx);
90}
91
93 if (this->type != Prototype_Type::MODEL) return;
94 if (lodLevel2 != nullptr) delete lodLevel2;
95 lodLevel2 = lodLevel;
96}
97
99 if (this->type != Prototype_Type::MODEL) return;
100 if (lodLevel3 != nullptr) delete lodLevel3;
101 lodLevel3 = lodLevel;
102}
103
104void Prototype::removeLODLevel(int lodLevel) {
105 if (lodLevel == 2) {
106 if (lodLevel2 != nullptr) {
107 delete lodLevel2;
108 }
109 if (lodLevel3 == nullptr) {
110 lodLevel2 = nullptr;
111 } else {
113 lodLevel3 = nullptr;
114 }
115 } else
116 if (lodLevel == 3) {
117 if (lodLevel3 != nullptr) {
118 delete lodLevel3;
119 }
120 lodLevel3 = nullptr;
121 }
122}
123
125 if (this->imposterLOD != nullptr) delete this->imposterLOD;
126 if (lodLevel2 != nullptr) {
127 delete lodLevel2;
128 lodLevel2 = nullptr;
129 }
130 if (lodLevel3 != nullptr) {
131 delete lodLevel3;
132 lodLevel3 = nullptr;
133 }
134 this->imposterLOD = imposterLOD;
135}
136
138 auto sound = getSound(id);
139 if (sound != nullptr) return nullptr;
140 auto audio = new PrototypeAudio(id);
141 soundsById[id] = audio;
142 sounds.push_back(audio);
143 return audio;
144}
145
Representation of a 3d model.
Definition: Model.h:32
ShaderModel * getShaderModel()
Definition: Model.h:155
Prototype audio definition.
Prototype LOD level definition.
Prototype physics body definitions.
static STATIC_DLL_IMPEXT Prototype_Type * MODEL
static STATIC_DLL_IMPEXT Prototype_Type * TERRAIN
static STATIC_DLL_IMPEXT Prototype_Type * PARTICLESYSTEM
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
vector< PrototypeBoundingVolume * > boundingVolumes
Definition: Prototype.h:68
PrototypeAudio * getSound(const string &id)
Returns sound of given sound id.
Definition: Prototype.h:488
virtual ~Prototype()
Destructor.
Definition: Prototype.cpp:54
PrototypeTerrain * terrain
Definition: Prototype.h:84
map< string, PrototypeAudio * > soundsById
Definition: Prototype.h:80
PrototypePhysics * physics
Definition: Prototype.h:69
PrototypeLODLevel * lodLevel3
Definition: Prototype.h:66
bool addBoundingVolume(int idx, PrototypeBoundingVolume *prototypeBoundingVolume)
Add bounding volume at given index.
Definition: Prototype.cpp:71
void setModel(Model *model)
Set model.
Definition: Prototype.cpp:65
PrototypeLODLevel * lodLevel2
Definition: Prototype.h:65
void removeBoundingVolume(int idx)
Remove bounding volume at given index.
Definition: Prototype.cpp:85
void setLODLevel2(PrototypeLODLevel *lodLevel)
Set LOD level 2.
Definition: Prototype.cpp:92
vector< PrototypeParticleSystem * > particleSystems
Definition: Prototype.h:70
vector< PrototypeAudio * > sounds
Definition: Prototype.h:81
PrototypeImposterLOD * imposterLOD
Definition: Prototype.h:67
void removeLODLevel(int lodLevel)
Remove LOD level.
Definition: Prototype.cpp:104
3D vector 3 class
Definition: Vector3.h:22
Vector3 & set(float x, float y, float z)
Set up vector.
Definition: Vector3.h:73
String tools class.
Definition: StringTools.h:20