TDME2 1.9.121
LODObject3D.cpp
Go to the documentation of this file.
2
3#include <string>
4
5#include <tdme/tdme.h>
10
11using std::string;
12
18
19LODObject3D::LODObject3D(
20 const string& id,
21 Model* modelLOD1,
22 LODLevelType levelTypeLOD2,
23 float modelLOD2MinDistance,
24 Model* modelLOD2,
25 LODLevelType levelTypeLOD3,
26 float modelLOD3MinDistance,
27 Model* modelLOD3,
28 float lodNoneMinDistance
29):
30 id(id),
31 modelLOD1(modelLOD1),
32 levelTypeLOD2(levelTypeLOD2),
33 modelLOD2MinDistance(modelLOD2MinDistance),
34 modelLOD2(modelLOD2),
35 levelTypeLOD3(levelTypeLOD3),
36 modelLOD3MinDistance(modelLOD3MinDistance),
37 modelLOD3(modelLOD3),
38 lodNoneMinDistance(lodNoneMinDistance)
39{
40 this->enabled = true;
41 this->pickable = false;
42 this->contributesShadows = false;
43 this->receivesShadows = false;
44 this->effectColorMul.set(1.0f, 1.0f, 1.0f, 1.0f);
45 this->effectColorAdd.set(0.0f, 0.0f, 0.0f, 0.0f);
46 this->effectColorMulLOD2.set(1.0f, 1.0f, 1.0f, 1.0f);
47 this->effectColorAddLOD2.set(0.0f, 0.0f, 0.0f, 0.0f);
48 this->effectColorMulLOD3.set(1.0f, 1.0f, 1.0f, 1.0f);
49 this->effectColorAddLOD3.set(0.0f, 0.0f, 0.0f, 0.0f);
50
51 if (modelLOD1 != nullptr) {
52 objectLOD1 = new Object3D(id + ".lod1", modelLOD1);
54 }
55 if (modelLOD2 != nullptr) {
56 objectLOD2 = new Object3D(id + ".lod2", modelLOD2);
58 }
59 if (modelLOD3 != nullptr) {
60 objectLOD3 = new Object3D(id + ".lod3", modelLOD3);
62 }
63
67
68 if (objectLOD1 != nullptr) objectLOD1->setShader(shaderId);
69 if (objectLOD2 != nullptr) objectLOD2->setShader(shaderId);
70 if (objectLOD3 != nullptr) objectLOD3->setShader(shaderId);
77
78 levelLOD = 1;
79}
80
82 // delegate to LOD objects
83 if (objectLOD1 != nullptr) delete objectLOD1;
84 if (objectLOD2 != nullptr) delete objectLOD2;
85 if (objectLOD3 != nullptr) delete objectLOD3;
86}
87
89{
90 if (this->engine != nullptr) this->engine->deregisterEntity(this);
91 this->engine = engine;
92 if (engine != nullptr) engine->registerEntity(this);
93 if (objectLOD1 != nullptr) objectLOD1->setEngine(engine);
94 if (objectLOD2 != nullptr) objectLOD2->setEngine(engine);
95 if (objectLOD3 != nullptr) objectLOD3->setEngine(engine);
96}
97
99{
100}
101
103{
105 // delegate to LOD objects
106 if (objectLOD1 != nullptr) objectLOD1->fromTransformations(*this);
107 if (objectLOD2 != nullptr) objectLOD2->fromTransformations(*this);
108 if (objectLOD3 != nullptr) objectLOD3->fromTransformations(*this);
109 // update entity
110 if (parentEntity == nullptr && frustumCulling == true && engine != nullptr && enabled == true) engine->partition->updateEntity(this);
111 // reset current LOD object
112 objectLOD = nullptr;
113}
114
116{
118 // delegate to LOD objects
119 if (objectLOD1 != nullptr) objectLOD1->fromTransformations(*this);
120 if (objectLOD2 != nullptr) objectLOD2->fromTransformations(*this);
121 if (objectLOD3 != nullptr) objectLOD3->fromTransformations(*this);
122 // update entity
123 if (parentEntity == nullptr && frustumCulling == true && engine != nullptr && enabled == true) engine->partition->updateEntity(this);
124 // reset current LOD object
125 objectLOD = nullptr;
126}
127
128void LODObject3D::setEnabled(bool enabled)
129{
130 // return if enable state has not changed
131 if (this->enabled == enabled) return;
132 // frustum if root entity
133 if (parentEntity == nullptr) {
134 // frustum culling enabled?
135 if (frustumCulling == true) {
136 // yeo, add or remove from partition
137 if (enabled == true) {
138 if (engine != nullptr) engine->partition->addEntity(this);
139 } else {
140 if (engine != nullptr) engine->partition->removeEntity(this);
141 }
142 }
143 }
144 // reset current LOD object
145 objectLOD = nullptr;
146}
147
149 return frustumCulling;
150}
151
152void LODObject3D::setFrustumCulling(bool frustumCulling) {
153 // check if enabled and engine attached
154 if (enabled == true && engine != nullptr) {
155 // had frustum culling
156 if (this->frustumCulling == true) {
157 // yep, remove if set to false now
158 if (frustumCulling == false) engine->partition->removeEntity(this);
159 } else {
160 // yep, add if set to true now
161 if (frustumCulling == true) engine->partition->addEntity(this);
162 }
163 }
164 this->frustumCulling = frustumCulling;
165 // delegate change to engine
166 if (engine != nullptr) engine->registerEntity(this);
167}
168
170{
171 // delegate to LOD objects
172 if (objectLOD1 != nullptr) objectLOD1->dispose();
173 if (objectLOD2 != nullptr) objectLOD2->dispose();
174 if (objectLOD3 != nullptr) objectLOD3->dispose();
175}
176
178{
179 // delegate to LOD objects
180 if (objectLOD1 != nullptr) objectLOD1->initialize();
181 if (objectLOD2 != nullptr) objectLOD2->initialize();
182 if (objectLOD3 != nullptr) objectLOD3->initialize();
183}
184
185void LODObject3D::setEnableEarlyZRejection(bool enableEarlyZRejection) {
186 // delegate to LOD objects
190}
Engine main class.
Definition: Engine.h:122
void deregisterEntity(Entity *entity)
Removes a entity from internal lists, those entities can also be sub entities from entity hierarchy o...
Definition: Engine.cpp:392
void registerEntity(Entity *entity)
Adds a entity to internal lists, those entities can also be sub entities from entity hierarchy or par...
Definition: Engine.cpp:406
Partition * partition
Definition: Engine.h:255
LOD object 3D to be used with engine class.
Definition: LODObject3D.h:47
void dispose() override
Dispose this object 3d.
~LODObject3D()
Public destructor.
Definition: LODObject3D.cpp:81
void initialize() override
Initiates this object 3d.
void update() override
Update transformations.
void fromTransformations(const Transformations &transformations) override
Set up this transformations from given transformations.
void setEnableEarlyZRejection(bool enableEarlyZRejection)
Enable/disable early z rejection.
void setFrustumCulling(bool frustumCulling) override
Set frustum culling.
void setEngine(Engine *engine) override
Set up engine.
Definition: LODObject3D.cpp:88
void setEnabled(bool enabled) override
Enable/disable rendering.
bool isFrustumCulling() override
void setRenderer(Renderer *renderer) override
Set up renderer.
Definition: LODObject3D.cpp:98
Object 3D to be used with engine class.
Definition: Object3D.h:60
void dispose() override
Dispose this object 3d.
Definition: Object3D.cpp:106
void setShader(const string &id)
Set shader.
Definition: Object3D.cpp:116
void setParentEntity(Entity *entity) override
Set parent entity, needs to be called before adding to engine.
Definition: Object3D.h:161
void initialize() override
Initiates this object 3d.
Definition: Object3D.cpp:111
void setRenderPass(RenderPass renderPass) override
Set render pass.
Definition: Object3D.h:339
void fromTransformations(const Transformations &transformations) override
Set up this transformations from given transformations.
Definition: Object3D.cpp:52
void setEnableEarlyZRejection(bool enableEarlyZRejection)
Enable/disable early z rejection.
Definition: Object3D.h:469
void setDistanceShader(const string &id)
Set distance shader.
Definition: Object3D.cpp:136
void setEngine(Engine *engine) override
Set up engine.
Definition: Object3D.cpp:41
void setDistanceShaderDistance(float distanceShaderDistance)
Set distance shader distance.
Definition: Object3D.h:394
Transformations which contain scale, rotations and translation.
virtual void fromTransformations(const Transformations &transformations)
Set up this transformations from given transformations.
virtual void update()
Computes transformation matrix.
void set(const array< float, 4 > &color)
Set up color.
Definition: Color4Base.h:68
Representation of a 3d model.
Definition: Model.h:32
Partition interface.
Definition: Partition.h:19
virtual void updateEntity(Entity *entity)=0
Updates a entity.
virtual void addEntity(Entity *entity)=0
Adds a entity.
virtual void removeEntity(Entity *entity)=0
Removes a entity.