TDME2 1.9.121
EnvironmentMapping.cpp
Go to the documentation of this file.
2
3#include <string>
4
5#include <tdme/tdme.h>
10#include <tdme/engine/Engine.h>
13#include <tdme/math/Matrix4x4.h>
15#include <tdme/math/Vector3.h>
16
17using std::string;
18
28
29EnvironmentMapping::EnvironmentMapping(const string& id, int width, int height, BoundingBox boundingBox)
30{
31 this->id = id;
32 this->width = width;
33 this->height = height;
34 this->boundingBox = boundingBox;
35}
36
38 if (this->engine != nullptr) this->engine->deregisterEntity(this);
39 this->engine = engine;
40 if (engine != nullptr) engine->registerEntity(this);
41}
42
48
49}
52}
53
55{
57 Transformations translationTransformations;
58 translationTransformations.setTranslation(getTranslation());
59 translationTransformations.update();
61 if (parentEntity == nullptr && frustumCulling == true && engine != nullptr && enabled == true) engine->partition->updateEntity(this);
62}
63
65{
67 Transformations translationTransformations;
68 translationTransformations.setTranslation(getTranslation());
69 translationTransformations.update();
71 if (parentEntity == nullptr && frustumCulling == true && engine != nullptr && enabled == true) engine->partition->updateEntity(this);
72}
73
75{
76 // return if enable state has not changed
77 if (this->enabled == enabled) return;
78
79 // frustum if root entity
80 if (parentEntity == nullptr) {
81 // frustum culling enabled?
82 if (frustumCulling == true) {
83 // yeo, add or remove from partition
84 if (enabled == true) {
85 if (engine != nullptr) engine->partition->addEntity(this);
86 } else {
87 if (engine != nullptr) engine->partition->removeEntity(this);
88 }
89 }
90 }
91}
92
93void EnvironmentMapping::setFrustumCulling(bool frustumCulling) {
94 // check if enabled and engine attached
95 if (enabled == true && engine != nullptr) {
96 // had frustum culling
97 if (this->frustumCulling == true) {
98 // yep, remove if set to false now
99 if (frustumCulling == false) engine->partition->removeEntity(this);
100 } else {
101 // yep, add if set to true now
102 if (frustumCulling == true) engine->partition->addEntity(this);
103 }
104 }
105 this->frustumCulling = frustumCulling;
106 // delegate change to engine
107 if (engine != nullptr) engine->registerEntity(this);
108}
109
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
Environment mapping entity.
void dispose() override
Dispose this object 3d.
void initialize() override
Initiates this object 3d.
void update() override
Update transformations.
const Vector3 & getTranslation() const override
EnvironmentMappingRenderer * environmentMappingRenderer
void fromTransformations(const Transformations &transformations) override
Set up this transformations from given transformations.
void setFrustumCulling(bool frustumCulling) override
Set frustum culling.
void setEngine(Engine *engine) override
Set up engine.
void setEnabled(bool enabled) override
Enable/disable rendering.
Transformations which contain scale, rotations and translation.
void setTranslation(const Vector3 &translation)
Set translation.
virtual void fromTransformations(const Transformations &transformations)
Set up this transformations from given transformations.
virtual void update()
Computes transformation matrix.
Axis aligned bounding box used for frustum, this is not directly connectable with physics engine.
Definition: BoundingBox.h:25
void fromBoundingVolumeWithTransformations(BoundingBox *original, const Transformations &transformations)
Create bounding volume from given original(of same type) with applied transformations.
Definition: BoundingBox.cpp:79
void setRenderPassMask(int32_t renderPassMask)
Set up render pass mask.
void setTimeRenderUpdateFrequency(int64_t frequency)
Set up render update time frequency.
4x4 3D Matrix class
Definition: Matrix4x4.h:24
Quaternion class.
Definition: Quaternion.h:22
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.