TDME2 1.9.121
ParticleSystemGroup.cpp
Go to the documentation of this file.
2
3#include <string>
4#include <vector>
5
6#include <tdme/tdme.h>
16
17using std::string;
18using std::vector;
19
30
31ParticleSystemGroup::ParticleSystemGroup(const string& id, bool autoEmit, bool contributesShadows, bool receivesShadows, const vector<ParticleSystemEntity*>& particleSystems) :
32 id(id), autoEmit(autoEmit), contributesShadows(contributesShadows), receivesShadows(receivesShadows), particleSystems(particleSystems)
33{
34 this->enabled = true;
35 this->pickable = false;
36 this->effectColorMul.set(1.0f, 1.0f, 1.0f, 1.0f);
37 this->effectColorAdd.set(0.0f, 0.0f, 0.0f, 0.0f);
38 this->contributesShadows = false;
39 this->receivesShadows = false;
40 // TODO: put parent entity into a interface
41 for (auto particleSystem: particleSystems) {
42 auto ops = dynamic_cast<ObjectParticleSystem*>(particleSystem);
43 if (ops != nullptr) ops->setParentEntity(this);
44 auto pps = dynamic_cast<PointsParticleSystem*>(particleSystem);
45 if (pps != nullptr) pps->setParentEntity(this);
46 auto fps = dynamic_cast<FogParticleSystem*>(particleSystem);
47 if (fps != nullptr) fps->setParentEntity(this);
48 }
49}
50
52 for (auto particleSystem: particleSystems) delete particleSystem;
53}
54
56{
57 for (auto particleSystem: particleSystems) dynamic_cast<Entity*>(particleSystem)->initialize();
58}
59
61{
63 //
64 for (auto particleSystem: particleSystems) dynamic_cast<Entity*>(particleSystem)->fromTransformations(transformations);
65 // update bounding box transformed
67 // update object
68 if (parentEntity == nullptr && frustumCulling == true && engine != nullptr && enabled == true) engine->partition->updateEntity(this);
69}
70
72{
74 //
75 for (auto particleSystem: particleSystems) dynamic_cast<Entity*>(particleSystem)->fromTransformations(*this);
76 // update bounding box transformed
78 // update object
79 if (parentEntity == nullptr && frustumCulling == true && engine != nullptr && enabled == true) engine->partition->updateEntity(this);
80}
81
83{
84 // return if enable state has not changed
85 if (this->enabled == enabled) return;
86
87 // frustum if root entity
88 if (parentEntity == nullptr) {
89 // frustum culling enabled?
90 if (frustumCulling == true) {
91 // yeo, add or remove from partition
92 if (enabled == true) {
93 if (engine != nullptr) engine->partition->addEntity(this);
94 } else {
95 if (engine != nullptr) engine->partition->removeEntity(this);
96 }
97 }
98 }
99
100 //
101 this->enabled = enabled;
102}
103
105{
106 // skip if no ps attached
107 if (particleSystems.size() == 0) return;
108
109 // update particles
110 for (auto particleSystem: particleSystems) particleSystem->updateParticles();
111
112 //
113 if (parentEntity == nullptr && frustumCulling == true && engine != nullptr && enabled == true) engine->partition->updateEntity(this);
114}
115
116void ParticleSystemGroup::setFrustumCulling(bool frustumCulling) {
117 // check if enabled and engine attached
118 if (enabled == true && engine != nullptr) {
119 // had frustum culling
120 if (this->frustumCulling == true) {
121 // yep, remove if set to false now
122 if (frustumCulling == false) engine->partition->removeEntity(this);
123 } else {
124 // yep, add if set to true now
125 if (frustumCulling == true) engine->partition->addEntity(this);
126 }
127 }
128 this->frustumCulling = frustumCulling;
129 // delegate change to engine
130 if (engine != nullptr) engine->registerEntity(this);
131}
132
134 // delegate to sub particle systems
135 for (auto particleSystem: particleSystems) particleSystem->setAutoEmit(autoEmit);
136 this->autoEmit = autoEmit;
137 // delegate change to engine
138 if (engine != nullptr) engine->registerEntity(this);
139}
140
142{
143 for (auto particleSystem: particleSystems) dynamic_cast<Entity*>(particleSystem)->dispose();
144}
145
147{
148 if (this->engine != nullptr) this->engine->deregisterEntity(this);
149 this->engine = engine;
150 if (engine != nullptr) engine->registerEntity(this);
151 for (auto particleSystem: particleSystems) dynamic_cast<Entity*>(particleSystem)->setEngine(engine);
152}
153
155{
156 for (auto particleSystem: particleSystems) dynamic_cast<Entity*>(particleSystem)->setRenderer(renderer);
157}
158
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
TDME engine entity.
Definition: Entity.h:31
Fog particle system entity to be used with engine class.
void setParentEntity(Entity *entity) override
Set parent entity, needs to be called before adding to engine.
Object 3D to be used with engine class.
Definition: Object3D.h:60
Object particle system entity to be used with engine class.
void setParentEntity(Entity *entity) override
Set parent entity, needs to be called before adding to engine.
Particle system group, which combines several particle systems into a group, to be used with engine c...
void updateParticles() override
Updates the particle entity.
void dispose() override
Dispose this object 3d.
vector< ParticleSystemEntity * > particleSystems
void initialize() override
Initiates this object 3d.
void update() override
Computes transformation matrix.
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.
Point particle system entity to be used with engine class.
void setParentEntity(Entity *entity) override
Set parent entity, needs to be called before adding to engine.
Transformations which contain scale, rotations and translation.
virtual void fromTransformations(const Transformations &transformations)
Set up this transformations from given transformations.
virtual void update()
Computes transformation matrix.
void set(const array< float, 4 > &color)
Set up color.
Definition: Color4Base.h:68
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
Particle system entity interface.
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.