TDME2 1.9.121
ObjectParticleSystem.cpp
Go to the documentation of this file.
2
3#include <string>
4#include <vector>
5
6#include <tdme/tdme.h>
12
13using std::string;
14using std::vector;
15
22
23ObjectParticleSystem::ObjectParticleSystem(const string& id, Model* model, const Vector3& scale, bool autoEmit, bool contributesShadows, bool receivesShadows, int32_t maxCount, ParticleEmitter* emitter) :
24 ObjectParticleSystemInternal(id, model, scale, autoEmit, contributesShadows, receivesShadows, maxCount, emitter)
25{
26}
27
29{
30 for (auto object: objects) object->setParentEntity(this);
31}
32
34{
35 ObjectParticleSystemInternal::fromTransformations(transformations);
36 if (parentEntity == nullptr && frustumCulling == true && engine != nullptr && enabled == true) engine->partition->updateEntity(this);
37}
38
40{
41 ObjectParticleSystemInternal::update();
42 if (parentEntity == nullptr && frustumCulling == true && engine != nullptr && enabled == true) engine->partition->updateEntity(this);
43}
44
46{
47 // return if enable state has not changed
48 if (this->enabled == enabled) return;
49 // frustum if root entity
50 if (parentEntity == nullptr) {
51 // frustum culling enabled?
52 if (frustumCulling == true) {
53 // yeo, add or remove from partition
54 if (enabled == true) {
55 if (engine != nullptr) engine->partition->addEntity(this);
56 } else {
57 if (engine != nullptr) engine->partition->removeEntity(this);
58 }
59 }
60 }
61 // call parent class::setEnabled()
62 ObjectParticleSystemInternal::setEnabled(enabled);
63}
64
66{
67 ObjectParticleSystemInternal::updateParticles();
68 if (parentEntity == nullptr && frustumCulling == true && engine != nullptr && enabled == true) engine->partition->updateEntity(this);
69}
70
72 return frustumCulling;
73}
74
75void ObjectParticleSystem::setFrustumCulling(bool frustumCulling) {
76 // check if enabled and engine attached
77 if (enabled == true && engine != nullptr) {
78 // had frustum culling
79 if (this->frustumCulling == true) {
80 // yep, remove if set to false now
81 if (frustumCulling == false) engine->partition->removeEntity(this);
82 } else {
83 // yep, add if set to true now
84 if (frustumCulling == true) engine->partition->addEntity(this);
85 }
86 }
87 this->frustumCulling = frustumCulling;
88 // delegate change to engine
90}
91
93 if (this->isAutoEmit() == autoEmit) return;
94 // delegate to base class
95 ObjectParticleSystemInternal::setAutoEmit(autoEmit);
96 // delegate change to engine
98}
99
101{
102 ObjectParticleSystemInternal::dispose();
103}
104
106{
107 if (this->engine != nullptr) this->engine->deregisterEntity(this);
108 this->engine = engine;
109 if (engine != nullptr) engine->registerEntity(this);
110 ObjectParticleSystemInternal::setEngine(engine);
111}
112
114{
115 ObjectParticleSystemInternal::setRenderer(renderer);
116}
117
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: Object3D.h:60
Object particle system entity to be used with engine class.
void updateParticles() override
Updates the particle entity.
void dispose() override
Dispose this object 3d.
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 setFrustumCulling(bool frustumCulling) override
Set frustum culling.
void setAutoEmit(bool autoEmit) override
Set auto emit.
void setEngine(Engine *engine) override
Set up engine.
void setEnabled(bool enabled) override
Enable/disable rendering.
void setRenderer(Renderer *renderer) override
Set up renderer.
Transformations which contain scale, rotations and translation.
Representation of a 3d model.
Definition: Model.h:32
Axis aligned bounding box used for frustum, this is not directly connectable with physics engine.
Definition: BoundingBox.h:25
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.