TDME2 1.9.121
LinesObject3D.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>
14
15using std::string;
16
24
25LinesObject3D::LinesObject3D(const string& id, float lineWidth, const vector<Vector3>& points, const Color4& color, const vector<Color4>& colors, Texture* texture):
26 LinesObject3DInternal(id, lineWidth, points, color, colors, texture)
27{
28}
29
31 if (this->engine != nullptr) this->engine->deregisterEntity(this);
32 this->engine = engine;
33 if (engine != nullptr) engine->registerEntity(this);
34 LinesObject3DInternal::setEngine(engine);
35}
36
38{
39 LinesObject3DInternal::fromTransformations(transformations);
40 if (parentEntity == nullptr && frustumCulling == true && engine != nullptr && enabled == true) engine->partition->updateEntity(this);
41}
42
44{
45 LinesObject3DInternal::update();
46 if (parentEntity == nullptr && frustumCulling == true && engine != nullptr && enabled == true) engine->partition->updateEntity(this);
47}
48
49void LinesObject3D::setEnabled(bool enabled)
50{
51 // return if enable state has not changed
52 if (this->enabled == enabled) return;
53
54 // frustum if root entity
55 if (parentEntity == nullptr) {
56 // frustum culling enabled?
57 if (frustumCulling == true) {
58 // yeo, add or remove from partition
59 if (enabled == true) {
60 if (engine != nullptr) engine->partition->addEntity(this);
61 } else {
62 if (engine != nullptr) engine->partition->removeEntity(this);
63 }
64 }
65 }
66 // call parent class::setEnabled()
67 LinesObject3DInternal::setEnabled(enabled);
68}
69
70void LinesObject3D::setFrustumCulling(bool frustumCulling) {
71 // check if enabled and engine attached
72 if (enabled == true && engine != nullptr) {
73 // had frustum culling
74 if (this->frustumCulling == true) {
75 // yep, remove if set to false now
76 if (frustumCulling == false) engine->partition->removeEntity(this);
77 } else {
78 // yep, add if set to true now
79 if (frustumCulling == true) engine->partition->addEntity(this);
80 }
81 }
82 this->frustumCulling = frustumCulling;
83 // delegate change to engine
84 if (engine != nullptr) engine->registerEntity(this);
85}
86
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
Object 3D to be used with engine class.
Definition: LinesObject3D.h:39
void update() override
Update transformations.
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.
Color 4 definition.
Definition: Color4.h:20
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.