TDME2 1.9.121
CircleParticleEmitter.cpp
Go to the documentation of this file.
2
3#include <tdme/tdme.h>
8#include <tdme/math/Math.h>
10#include <tdme/math/Vector3.h>
11
20
21CircleParticleEmitter::CircleParticleEmitter(int32_t count, int64_t lifeTime, int64_t lifeTimeRnd, const Vector3& axis0, const Vector3& axis1, const Vector3& center, float radius, float mass, float massRnd, const Vector3& velocity, const Vector3& velocityRnd, const Color4& colorStart, const Color4& colorEnd)
22{
23 this->count = count;
24 this->lifeTime = lifeTime;
25 this->lifeTimeRnd = lifeTimeRnd;
26 this->axis0.set(axis0).normalize();
27 this->axis1.set(axis1).normalize();
28 this->center.set(center);
29 this->radius = radius;
30 this->axis0Transformed.set(axis0).normalize();
31 this->axis1Transformed.set(axis1).normalize();
32 this->centerTransformed.set(center);
34 this->mass = mass;
35 this->massRnd = massRnd;
36 this->velocity.set(velocity);
37 this->velocityRnd.set(velocityRnd);
38 this->colorStart.set(colorStart);
39 this->colorEnd.set(colorEnd);
40}
41
43{
44 Vector3 cosOnAxis0;
45 Vector3 sinOnAxis1;
46 // set up particle
47 particle->active = true;
48 particle->spriteIndex = 0.0f;
49 // emit particle in circle spanned on axis 0 and axis 1
50 auto rnd = static_cast<float>(Math::random());
51 cosOnAxis0.set(axis0Transformed).scale(Math::cos(Math::PI * 2 * rnd));
52 sinOnAxis1.set(axis1Transformed).scale(Math::sin(Math::PI * 2 * rnd));
53 particle->position.set(cosOnAxis0);
54 particle->position.add(sinOnAxis1);
56 // compute velocity
57 particle->velocity.set(
58 velocity[0] + (Math::random() * velocityRnd[0] * (Math::random() > 0.5 ? +1.0f : -1.0f)),
59 velocity[1] + (Math::random() * velocityRnd[1] * (Math::random() > 0.5 ? +1.0f : -1.0f)),
60 velocity[2] + (Math::random() * velocityRnd[2] * (Math::random() > 0.5 ? +1.0f : -1.0f))
61 );
62 // mass
63 particle->mass = mass + static_cast<float>((Math::random() * (massRnd)));
64 // life time
65 particle->lifeTimeMax = lifeTime + static_cast< int64_t >((Math::random() * lifeTimeRnd));
66 particle->lifeTimeCurrent = 0LL;
67 // color
68 particle->color.set(colorStart);
69 particle->colorAdd.set(
70 (colorEnd.getRed() - colorStart.getRed()) / particle->lifeTimeMax,
72 (colorEnd.getBlue() - colorStart.getBlue()) / particle->lifeTimeMax,
74 );
75}
76
78{
79 auto& transformationsMatrix = transformations.getTransformationsMatrix();
80 // apply rotation, scale, translation
81 centerTransformed = transformationsMatrix.multiply(center);
82 // apply transformations rotation + scale to axis
83 axis0Transformed = transformationsMatrix.multiplyNoTranslation(axis0).normalize();
84 axis1Transformed = transformationsMatrix.multiplyNoTranslation(axis1).normalize();
85 // scale and radius transformed
86 Vector3 scale;
87 transformationsMatrix.getScale(scale);
88 radiusTransformed = radius * Math::max(scale.getX(), Math::max(scale.getY(), scale.getZ()));
89}
Transformations which contain scale, rotations and translation.
const Matrix4x4 & getTransformationsMatrix() const
Color 4 base definition class.
Definition: Color4Base.h:19
void set(const array< float, 4 > &color)
Set up color.
Definition: Color4Base.h:68
Color 4 definition.
Definition: Color4.h:20
void fromTransformations(const Transformations &transformations) override
Update transformation with given transformations.
void emit(Particle *particle) override
Emits particles.
Standard math functions.
Definition: Math.h:21
4x4 3D Matrix class
Definition: Matrix4x4.h:24
3D vector 3 class
Definition: Vector3.h:22
float getY() const
Definition: Vector3.h:119
float getX() const
Definition: Vector3.h:103
float getZ() const
Definition: Vector3.h:136
Vector3 & normalize()
Normalize the vector.
Definition: Vector3.h:288
Vector3 & set(float x, float y, float z)
Set up vector.
Definition: Vector3.h:73
Vector3 & add(const Vector3 &v)
Adds a vector.
Definition: Vector3.h:301
Vector3 & scale(float scale)
Scale this vector.
Definition: Vector3.h:349