TDME2 1.9.121
SphereParticleEmitter.h
Go to the documentation of this file.
1
2#pragma once
3
4#include <tdme/tdme.h>
11#include <tdme/math/fwd-tdme.h>
12#include <tdme/math/Vector3.h>
13
20
21/**
22 * Sphere particle emitter
23 * @author Andreas Drewke
24 * @version $Id$
25 */
27 : public ParticleEmitter
28{
29private:
30 int32_t count;
31 int64_t lifeTime;
32 int64_t lifeTimeRnd;
33 float mass;
34 float massRnd;
35 Sphere* sphere { nullptr };
41
42public:
43 /**
44 * @param count number of particles to emit in one second
45 * @param lifeTime life time in milli seconds
46 * @param lifeTimeRnd life time rnd in milli seconds
47 * @param mass mass in kg
48 * @param massRnd mass rnd in kg
49 * @param sphere sphere
50 * @param velocity velocity in meter / seconds
51 * @param velocityRnd velocity rnd in meter / seconds
52 * @param colorStart color start
53 * @param colorEnd color end
54 */
55 SphereParticleEmitter(int32_t count, int64_t lifeTime, int64_t lifeTimeRnd, float mass, float massRnd, Sphere* sphere, const Vector3& velocity, const Vector3& velocityRnd, const Color4& colorStart, const Color4& colorEnd);
56
57 /**
58 * Destructor
59 */
60 virtual ~SphereParticleEmitter();
61
62 // overridden methods
63 inline const Vector3& getCenter() const override {
65 }
66
67 inline int32_t getCount() const override {
68 return count;
69 }
70
71 inline const Vector3& getVelocity() const {
72 return velocity;
73 }
74
75 inline const Vector3& getVelocityRnd() const {
76 return velocityRnd;
77 }
78
79 inline const Color4& getColorStart() const override {
80 return colorStart;
81 }
82
83 inline void setColorStart(const Color4& colorStart) override {
84 this->colorStart = colorStart;
85 }
86
87 inline const Color4& getColorEnd() const override {
88 return colorEnd;
89 }
90
91 inline void setColorEnd(const Color4& colorEnd) override {
92 this->colorEnd = colorEnd;
93 }
94
95 void emit(Particle* particle) override;
96 void fromTransformations(const Transformations& transformations) override;
97
98};
Transformations which contain scale, rotations and translation.
Color 4 definition.
Definition: Color4.h:20
Sphere physics primitive.
Definition: Sphere.h:18
void setColorEnd(const Color4 &colorEnd) override
Set end color.
void setColorStart(const Color4 &colorStart) override
Set start color.
void fromTransformations(const Transformations &transformations) override
Update transformation with given transformations.
void emit(Particle *particle) override
Emits particles.
SphereParticleEmitter(int32_t count, int64_t lifeTime, int64_t lifeTimeRnd, float mass, float massRnd, Sphere *sphere, const Vector3 &velocity, const Vector3 &velocityRnd, const Color4 &colorStart, const Color4 &colorEnd)
3D vector 3 class
Definition: Vector3.h:22