TDME2 1.9.121
ParticleSystemGroup.h
Go to the documentation of this file.
1#pragma once
2
3#include <string>
4#include <vector>
5
6#include <tdme/tdme.h>
10#include <tdme/engine/Entity.h>
14#include <tdme/math/fwd-tdme.h>
15#include <tdme/math/Math.h>
17
18using std::string;
19using std::vector;
20
31
32/**
33 * Particle system group, which combines several particle systems into a group, to be used with engine class
34 * @author Andreas Drewke
35 * @version $Id$
36 */
38 : public Transformations
40{
41private:
42 Engine* engine { nullptr };
43 Entity* parentEntity { nullptr };
44 bool frustumCulling { true };
46
47 string id;
50 bool enabled;
57 vector<ParticleSystemEntity*> particleSystems;
59
60 // overridden methods
61 inline void setParentEntity(Entity* entity) override {
62 this->parentEntity = entity;
63 }
64 inline Entity* getParentEntity() override {
65 return parentEntity;
66 }
67 inline void applyParentTransformations(const Transformations& parentTransformations) override {
69 for (auto particleSystem: particleSystems) particleSystem->applyParentTransformations(parentTransformations);
70 }
71
72public:
73 /**
74 * Public constructor
75 * @param id id
76 * @param autoEmit auto emit
77 * @param contributesShadows contributes shadows
78 * @param receivesShadows receives shadows
79 * @param particleSystems particle systems
80 */
81 ParticleSystemGroup(const string& id, bool autoEmit, bool contributesShadows, bool receivesShadows, const vector<ParticleSystemEntity*>& particleSystems);
82
83 /**
84 * Destructor
85 */
87
88 // overridden method
89 inline EntityType getEntityType() override {
91 }
92
93 /**
94 * @return particle systems
95 */
96 inline const vector<ParticleSystemEntity*>& getParticleSystems() {
97 return particleSystems;
98 }
99
100 // overridden methods
101 void setEngine(Engine* engine) override;
102 void setRenderer(Renderer* renderer) override;
103 void initialize() override;
104 void dispose() override;
105
106 inline bool isEnabled() override {
107 return enabled;
108 }
109
110 void setEnabled(bool enabled) override;
111
112 inline bool isFrustumCulling() override {
113 return frustumCulling;
114 }
115
116 void setFrustumCulling(bool frustumCulling) override;
117 void fromTransformations(const Transformations& transformations) override;
118 void update() override;
119
120 inline BoundingBox* getBoundingBox() override {
121 if (particleSystems.empty() == false) {
122 // compute new bounding box
124 for (auto i = 1; i < particleSystems.size(); i++) {
126 }
128
129 // update bounding box transformed
131 }
132
133 //
134 return &boundingBox;
135 }
136
138 if (particleSystems.empty() == false) {
139 // compute new bounding box
141 for (auto i = 1; i < particleSystems.size(); i++) {
143 }
145
146 // update bounding box transformed
148 }
149
150 //
152 }
153
154 inline ParticleEmitter* getEmitter() override {
155 return nullptr;
156 }
157
158 inline const Color4& getEffectColorAdd() const override {
159 return effectColorAdd;
160 }
161
162 inline void setEffectColorAdd(const Color4& effectColorAdd) override {
163 for (auto particleSystem: particleSystems) particleSystem->setEffectColorAdd(effectColorAdd);
164 this->effectColorAdd = effectColorAdd;
165 }
166
167 inline const Color4& getEffectColorMul() const override {
168 return effectColorMul;
169 }
170
171 inline void setEffectColorMul(const Color4& effectColorMul) override {
172 for (auto particleSystem: particleSystems) particleSystem->setEffectColorMul(effectColorMul);
173 this->effectColorMul = effectColorMul;
174 }
175
176 inline const string& getId() override {
177 return id;
178 }
179
180 inline bool isContributesShadows() override {
181 return contributesShadows;
182 }
183
184 inline void setContributesShadows(bool contributesShadows) override {
185 this->contributesShadows = contributesShadows;
186 for (auto particleSystem: particleSystems) {
187 auto ops = dynamic_cast<ObjectParticleSystem*>(particleSystem);
188 if (ops != nullptr) ops->setContributesShadows(contributesShadows);
189 }
190 }
191
192 inline bool isReceivesShadows() override {
193 return receivesShadows;
194 }
195
196 inline void setReceivesShadows(bool receivesShadows) override {
197 this->receivesShadows = receivesShadows;
198 for (auto particleSystem: particleSystems) {
199 auto ops = dynamic_cast<ObjectParticleSystem*>(particleSystem);
200 if (ops != nullptr) ops->setReceivesShadows(receivesShadows);
201 }
202 }
203
204 inline bool isPickable() override {
205 return pickable;
206 }
207
208 inline void setPickable(bool pickable) override {
209 this->pickable = true;
210 }
211
212 inline const Vector3& getTranslation() const override {
214 }
215
216 inline void setTranslation(const Vector3& translation) override {
218 }
219
220 inline const Vector3& getScale() const override {
222 }
223
224 inline void setScale(const Vector3& scale) override {
226 }
227
228 inline const Vector3& getPivot() const override {
230 }
231
232 inline void setPivot(const Vector3& pivot) override {
234 }
235
236 inline const int getRotationCount() const override {
238 }
239
240 inline Rotation& getRotation(const int idx) override {
242 }
243
244 inline void addRotation(const Vector3& axis, const float angle) override {
245 Transformations::addRotation(axis, angle);
246 }
247
248 inline void removeRotation(const int idx) override {
250 }
251
252 inline const Vector3& getRotationAxis(const int idx) const override {
254 }
255
256 inline void setRotationAxis(const int idx, const Vector3& axis) override {
258 }
259
260 inline const float getRotationAngle(const int idx) const override {
262 }
263
264 inline void setRotationAngle(const int idx, const float angle) override {
266 }
267
268 inline const Quaternion& getRotationsQuaternion() const override {
270 }
271
272 inline const Matrix4x4& getTransformationsMatrix() const override {
274 }
275
276 inline const Transformations& getTransformations() const override {
277 return *this;
278 }
279
280 inline RenderPass getRenderPass() const override {
281 return renderPass;
282 }
283
284 inline void setRenderPass(RenderPass renderPass) override {
285 this->renderPass = renderPass;
286 }
287
288 inline bool isActive() override {
289 for (auto particleSystem: particleSystems) {
290 if (particleSystem->isActive() == true) return true;
291 }
292 return false;
293 }
294
295 inline bool isAutoEmit() override {
296 return autoEmit;
297 }
298
299 inline int32_t emitParticles() override {
300 auto emittedParticles = 0;
301 for (auto particleSystem: particleSystems) emittedParticles+= particleSystem->emitParticles();
302 return emittedParticles;
303 }
304
305 void setAutoEmit(bool autoEmit) override;
306 void updateParticles() override;
307
308 inline const Transformations& getLocalTransformations() override {
310 }
311
312 inline void setLocalTransformations(const Transformations& transformations) override {
313 localTransformations = transformations;
314 for (auto particleSystem: particleSystems) particleSystem->setLocalTransformations(localTransformations);
315 }
316
317};
Engine main class.
Definition: Engine.h:122
TDME engine entity.
Definition: Entity.h:31
friend class ParticleSystemGroup
Definition: Entity.h:34
@ ENTITYTYPE_PARTICLESYSTEMGROUP
Definition: Entity.h:71
Object particle system entity to be used with engine class.
void setReceivesShadows(bool receivesShadows) override
Enable/disable receives shadows.
void setContributesShadows(bool contributesShadows) override
Enable/disable contributes shadows.
Particle system group, which combines several particle systems into a group, to be used with engine c...
void updateParticles() override
Updates the particle entity.
const Matrix4x4 & getTransformationsMatrix() const override
const Color4 & getEffectColorAdd() const override
The effect color will be added to fragment color.
ParticleEmitter * getEmitter() override
void setLocalTransformations(const Transformations &transformations) override
Set local transformations.
RenderPass getRenderPass() const override
void dispose() override
Dispose this object 3d.
vector< ParticleSystemEntity * > particleSystems
void setTranslation(const Vector3 &translation) override
Set translation.
void setParentEntity(Entity *entity) override
Set parent entity, needs to be called before adding to engine.
void removeRotation(const int idx) override
Remove rotation.
void setPivot(const Vector3 &pivot) override
Set pivot.
const int getRotationCount() const override
const Quaternion & getRotationsQuaternion() const override
void initialize() override
Initiates this object 3d.
BoundingBox * getBoundingBox() override
void setRenderPass(RenderPass renderPass) override
Set render pass.
void setReceivesShadows(bool receivesShadows) override
Enable/disable receives shadows.
void addRotation(const Vector3 &axis, const float angle) override
Add rotation.
void update() override
Computes transformation matrix.
void setPickable(bool pickable) override
Set this object pickable.
const Transformations & getLocalTransformations() override
void setEffectColorMul(const Color4 &effectColorMul) override
Set effect color that will be multiplied with fragment color.
const vector< ParticleSystemEntity * > & getParticleSystems()
const Vector3 & getTranslation() const override
void fromTransformations(const Transformations &transformations) override
Set up this transformations from given transformations.
const Color4 & getEffectColorMul() const override
The effect color will be multiplied with fragment color.
const Vector3 & getScale() const override
const Vector3 & getPivot() const override
BoundingBox * getBoundingBoxTransformed() override
void setScale(const Vector3 &scale) override
Set scale.
void applyParentTransformations(const Transformations &parentTransformations) override
Apply parent transformations.
const float getRotationAngle(const int idx) const override
const Transformations & getTransformations() const override
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.
const Vector3 & getRotationAxis(const int idx) const override
void setContributesShadows(bool contributesShadows) override
Enable/disable contributes shadows.
void setRotationAxis(const int idx, const Vector3 &axis) override
Set rotation axis.
int32_t emitParticles() override
Adds particles to this particle entity at given position.
Rotation & getRotation(const int idx) override
Get rotation at given index.
void setEffectColorAdd(const Color4 &effectColorAdd) override
Set effect color that will be added to fragment color.
void setRenderer(Renderer *renderer) override
Set up renderer.
void setRotationAngle(const int idx, const float angle) override
Rotation representation.
Definition: Rotation.h:18
Transformations which contain scale, rotations and translation.
const Matrix4x4 & getTransformationsMatrix() const
Rotation & getRotation(const int idx)
Get rotation at given index.
void setRotationAngle(const int idx, const float angle)
void setRotationAxis(const int idx, const Vector3 &axis)
Set rotation axis.
void setTranslation(const Vector3 &translation)
Set translation.
void removeRotation(const int idx)
Remove rotation.
const Quaternion & getRotationsQuaternion() const
virtual void applyParentTransformations(const Transformations &parentTransformations)
Apply parent transformations.
const Vector3 & getScale() const
void setScale(const Vector3 &scale)
Set scale.
const Vector3 & getRotationAxis(const int idx) const
const int getRotationCount() const
const Vector3 & getPivot() const
const Vector3 & getTranslation() const
void setPivot(const Vector3 &pivot)
Set pivot.
void addRotation(const Vector3 &axis, const float angle)
Add rotation.
const float getRotationAngle(const int idx) const
Color 4 definition.
Definition: Color4.h:20
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 fromBoundingVolume(BoundingBox *original)
Set up this bounding volume from given bounding volume.
Definition: BoundingBox.cpp:70
void extend(BoundingBox *boundingBox)
Extend bounding box with given bounding box.
Definition: BoundingBox.h:148
void update()
Updates this bounding box.
Standard math functions.
Definition: Math.h:21
4x4 3D Matrix class
Definition: Matrix4x4.h:24
Quaternion class.
Definition: Quaternion.h:22
3D vector 3 class
Definition: Vector3.h:22
Particle system entity interface.