TDME2 1.9.121
PointsParticleSystem.cpp
Go to the documentation of this file.
2
3#include <string>
4
5#include <tdme/tdme.h>
11
12using std::string;
13
20
21PointsParticleSystem::PointsParticleSystem(const string& id, ParticleEmitter* emitter, int32_t maxPoints, float pointSize, bool autoEmit, Texture* texture, int32_t textureHorizontalSprites, int32_t textureVerticalSprites, float fps) :
22 PointsParticleSystemInternal(id, emitter, maxPoints, pointSize, autoEmit, texture, textureHorizontalSprites, textureVerticalSprites, fps)
23{
24}
25
27{
28 PointsParticleSystemInternal::initialize();
29}
30
32{
33 PointsParticleSystemInternal::fromTransformations(transformations);
34 if (parentEntity == nullptr && frustumCulling == true && engine != nullptr && enabled == true) engine->partition->updateEntity(this);
35}
36
38{
39 PointsParticleSystemInternal::update();
40 if (parentEntity == nullptr && frustumCulling == true && engine != nullptr && enabled == true) engine->partition->updateEntity(this);
41}
42
44{
45 // return if enable state has not changed
46 if (this->enabled == enabled) return;
47 // frustum if root entity
48 if (parentEntity == nullptr) {
49 // frustum culling enabled?
50 if (frustumCulling == true) {
51 // yeo, add or remove from partition
52 if (enabled == true) {
53 if (engine != nullptr) engine->partition->addEntity(this);
54 } else {
55 if (engine != nullptr) engine->partition->removeEntity(this);
56 }
57 }
58 }
59 // call parent class::setEnabled()
60 PointsParticleSystemInternal::setEnabled(enabled);
61}
62
64{
65 PointsParticleSystemInternal::updateParticles();
66 if (parentEntity == nullptr && frustumCulling == true && engine != nullptr && enabled == true) engine->partition->updateEntity(this);
67}
68
70 return frustumCulling;
71}
72
73void PointsParticleSystem::setFrustumCulling(bool frustumCulling) {
74 // check if enabled and engine attached
75 if (enabled == true && engine != nullptr) {
76 // had frustum culling
77 if (this->frustumCulling == true) {
78 // yep, remove if set to false now
79 if (frustumCulling == false) engine->partition->removeEntity(this);
80 } else {
81 // yep, add if set to true now
82 if (frustumCulling == true) engine->partition->addEntity(this);
83 }
84 }
85 this->frustumCulling = frustumCulling;
86 // delegate change to engine
88}
89
91 if (this->isAutoEmit() == autoEmit) return;
92 // delegate to base class
93 PointsParticleSystemInternal::setAutoEmit(autoEmit);
94 // delegate change to engine
96}
97
99{
100 PointsParticleSystemInternal::dispose();
101}
102
104{
105 if (this->engine != nullptr) this->engine->deregisterEntity(this);
106 this->engine = engine;
107 if (engine != nullptr) engine->registerEntity(this);
108 PointsParticleSystemInternal::setEngine(engine);
109}
110
112{
113 PointsParticleSystemInternal::setRenderer(renderer);
114}
115
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
Point 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.
Axis aligned bounding box used for frustum, this is not directly connectable with physics engine.
Definition: BoundingBox.h:25
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.