TDME2 1.9.121
ImposterObject3D.cpp
Go to the documentation of this file.
2
3#include <string>
4#include <vector>
5
6#include <tdme/tdme.h>
11
12using std::string;
13using std::vector;
14
20
21ImposterObject3D::ImposterObject3D(
22 const string& id,
23 const vector<Model*>& billboardModels
24):
25 id(id),
26 billboardModels(billboardModels)
27{
28 this->enabled = true;
29 this->pickable = false;
30 this->contributesShadows = false;
31 this->receivesShadows = false;
32 this->effectColorMul.set(1.0f, 1.0f, 1.0f, 1.0f);
33 this->effectColorAdd.set(0.0f, 0.0f, 0.0f, 0.0f);
34
35 billboardObjects.resize(billboardModels.size());
36 for (auto i = 0; i < billboardModels.size(); i++) {
37 billboardObjects[i] = new Object3D(id + ".bb-" + to_string(i), billboardModels[i]);
38 billboardObjects[i]->setParentEntity(this);
39 }
40
42
47}
48
50 // delegate to billboard objects
52}
53
55{
56 if (this->engine != nullptr) this->engine->deregisterEntity(this);
57 this->engine = engine;
58 if (engine != nullptr) engine->registerEntity(this);
60}
61
63{
64}
65
67{
69 // delegate to billboard objects
70 auto imposterObjectTransformations = this->getTransformations();
71 imposterObjectTransformations.addRotation(Vector3(0.0f, 1.0f, 0.0f), -(360.0f / billboardModels.size()) * 0.5f);
73 imposterObjectTransformations.setRotationAngle(
74 imposterObjectTransformations.getRotationCount() - 1,
75 imposterObjectTransformations.getRotationAngle(imposterObjectTransformations.getRotationCount() - 1) + 360.0f / billboardModels.size()
76 );
77 imposterObjectTransformations.update();
78 billboardObject->fromTransformations(imposterObjectTransformations);
79 }
80 // update entity
81 if (parentEntity == nullptr && frustumCulling == true && engine != nullptr && enabled == true) engine->partition->updateEntity(this);
82}
83
85{
87 // delegate to billboard objects
88 auto imposterObjectTransformations = this->getTransformations();
89 imposterObjectTransformations.addRotation(Vector3(0.0f, 1.0f, 0.0f), -(360.0f / billboardModels.size()) * 0.5f);
91 imposterObjectTransformations.setRotationAngle(
92 imposterObjectTransformations.getRotationCount() - 1,
93 imposterObjectTransformations.getRotationAngle(imposterObjectTransformations.getRotationCount() - 1) + 360.0f / billboardModels.size()
94 );
95 imposterObjectTransformations.update();
96 billboardObject->fromTransformations(imposterObjectTransformations);
97 }
98 // update entity
99 if (parentEntity == nullptr && frustumCulling == true && engine != nullptr && enabled == true) engine->partition->updateEntity(this);
100}
101
103{
104 // return if enable state has not changed
105 if (this->enabled == enabled) return;
106 // frustum if root entity
107 if (parentEntity == nullptr) {
108 // frustum culling enabled?
109 if (frustumCulling == true) {
110 // yeo, add or remove from partition
111 if (enabled == true) {
112 if (engine != nullptr) engine->partition->addEntity(this);
113 } else {
114 if (engine != nullptr) engine->partition->removeEntity(this);
115 }
116 }
117 }
118}
119
121 return frustumCulling;
122}
123
124void ImposterObject3D::setFrustumCulling(bool frustumCulling) {
125 // check if enabled and engine attached
126 if (enabled == true && engine != nullptr) {
127 // had frustum culling
128 if (this->frustumCulling == true) {
129 // yep, remove if set to false now
130 if (frustumCulling == false) engine->partition->removeEntity(this);
131 } else {
132 // yep, add if set to true now
133 if (frustumCulling == true) engine->partition->addEntity(this);
134 }
135 }
136 this->frustumCulling = frustumCulling;
137 // delegate change to engine
138 if (engine != nullptr) engine->registerEntity(this);
139}
140
142{
143 // delegate to billboard objects
145}
146
148{
149 // delegate to billboard objects
151}
152
153void ImposterObject3D::setEnableEarlyZRejection(bool enableEarlyZRejection) {
154 // delegate to billboard objects
156}
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
Imposter object 3d to be used with engine class.
void dispose() override
Dispose this object 3d.
vector< Object3D * > billboardObjects
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.
~ImposterObject3D()
Public destructor.
const Transformations & getTransformations() const override
void setFrustumCulling(bool frustumCulling) override
Set frustum culling.
void setEngine(Engine *engine) override
Set up engine.
void setEnabled(bool enabled) override
Enable/disable rendering.
void setRenderer(Renderer *renderer) override
Set up renderer.
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 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
3D vector 3 class
Definition: Vector3.h:22
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.