TDME2 1.9.121
Object3D.cpp
Go to the documentation of this file.
2
3#include <string>
4
5#include <tdme/tdme.h>
11#include <tdme/math/Matrix4x4.h>
13#include <tdme/math/Vector3.h>
15
16using std::string;
17
28
29Object3D::Object3D(const string& id, Model* model, int instances): Object3DInternal(id, model, instances)
30{
31 setShader("default");
32 setDistanceShader("default");
33}
34
35Object3D::Object3D(const string& id, Model* model): Object3DInternal(id, model, 1)
36{
37 setShader("default");
38 setDistanceShader("default");
39}
40
42{
43 if (this->engine != nullptr) this->engine->deregisterEntity(this);
44 this->engine = engine;
45 if (engine != nullptr) engine->registerEntity(this);
46}
47
49{
50}
51
53{
54 Object3DInternal::fromTransformations(transformations);
55 if (parentEntity == nullptr && frustumCulling == true && engine != nullptr && enabled == true) engine->partition->updateEntity(this);
56}
57
59{
60 Object3DInternal::update();
61 if (parentEntity == nullptr && frustumCulling == true && engine != nullptr && enabled == true) engine->partition->updateEntity(this);
62}
63
64void Object3D::setEnabled(bool enabled)
65{
66 // return if enable state has not changed
67 if (this->enabled == enabled) return;
68
69 // frustum if root entity
70 if (parentEntity == nullptr) {
71 // frustum culling enabled?
72 if (frustumCulling == true) {
73 // yeo, add or remove from partition
74 if (enabled == true) {
75 if (engine != nullptr) engine->partition->addEntity(this);
76 } else {
77 if (engine != nullptr) engine->partition->removeEntity(this);
78 }
79 }
80 }
81 // call parent class::setEnabled()
82 Object3DInternal::setEnabled(enabled);
83}
84
86 return frustumCulling;
87}
88
89void Object3D::setFrustumCulling(bool frustumCulling) {
90 // check if enabled and engine attached
91 if (enabled == true && engine != nullptr) {
92 // had frustum culling
93 if (this->frustumCulling == true) {
94 // yep, remove if set to false now
95 if (frustumCulling == false) engine->partition->removeEntity(this);
96 } else {
97 // yep, add if set to true now
98 if (frustumCulling == true) engine->partition->addEntity(this);
99 }
100 }
101 this->frustumCulling = frustumCulling;
102 // delegate change to engine
103 if (engine != nullptr) engine->registerEntity(this);
104}
105
107{
108 Object3DInternal::dispose();
109}
110
112{
113 Object3DInternal::initialize();
114}
115
116void Object3D::setShader(const string& id) {
117 if (model->getShaderModel() == ShaderModel::PBR) {
118 shaderId = StringTools::startsWith(id, "pbr-") == true || id.empty() == true?id:"pbr-" + id;
120 } else
121 if (model->getShaderModel() == ShaderModel::SPECULAR) {
122 shaderId = StringTools::startsWith(id, "pbr-") == true?StringTools::substring(id, string("pbr-").size()):id;
124 }
127 Engine::getLightingShader()->hasShader("defer_" + shaderId) == false ||
129 //
130 if (engine != nullptr) {
132 engine->registerEntity(this);
133 }
134}
135
136void Object3D::setDistanceShader(const string& id) {
137 if (model->getShaderModel() == ShaderModel::PBR) {
138 distanceShaderId = StringTools::startsWith(id, "pbr-") == true || id.empty() == true?id:"pbr-" + id;
140 } else
141 if (model->getShaderModel() == ShaderModel::SPECULAR) {
142 distanceShaderId = StringTools::startsWith(id, "pbr-") == true?StringTools::substring(id, string("pbr-").size()):id;
144 }
147 Engine::getLightingShader()->hasShader("defer_" + shaderId) == false ||
149 //
150 if (engine != nullptr) {
152 engine->registerEntity(this);
153 }
154}
Engine main class.
Definition: Engine.h:122
static LightingShader * getLightingShader()
Definition: Engine.h:414
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
static uint8_t getUniqueShaderId(const string &shaderId)
Definition: Engine.h:732
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
void setShader(const string &shaderId)
Set shader.
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
EntityShaderParameters shaderParameters
Definition: Object3D.h:89
uint8_t uniqueShaderId
Definition: Object3D.h:77
void update() override
Update transformations.
Definition: Object3D.cpp:58
Object3D(const string &id, Model *model, int instances)
Public constructor.
Definition: Object3D.cpp:29
void fromTransformations(const Transformations &transformations) override
Set up this transformations from given transformations.
Definition: Object3D.cpp:52
void setDistanceShader(const string &id)
Set distance shader.
Definition: Object3D.cpp:136
Entity * parentEntity
Definition: Object3D.h:73
EntityShaderParameters distanceShaderParameters
Definition: Object3D.h:90
void setFrustumCulling(bool frustumCulling) override
Set frustum culling.
Definition: Object3D.cpp:89
void setEngine(Engine *engine) override
Set up engine.
Definition: Object3D.cpp:41
void setEnabled(bool enabled) override
Enable/disable rendering.
Definition: Object3D.cpp:64
uint8_t uniqueDistanceShaderId
Definition: Object3D.h:79
bool isFrustumCulling() override
Definition: Object3D.cpp:85
void setRenderer(Renderer *renderer) override
Set up renderer.
Definition: Object3D.cpp:48
Transformations which contain scale, rotations and translation.
Representation of a 3d model.
Definition: Model.h:32
ShaderModel * getShaderModel()
Definition: Model.h:155
Interface to lighting shader program.
bool hasShader(const string &shaderId)
Returns if shader with given shader id does exist.
4x4 3D Matrix class
Definition: Matrix4x4.h:24
Quaternion class.
Definition: Quaternion.h:22
3D vector 3 class
Definition: Vector3.h:22
String tools class.
Definition: StringTools.h:20
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.