TDME2 1.9.121
CircleParticleEmitterPlaneVelocity.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
21CircleParticleEmitterPlaneVelocity::CircleParticleEmitterPlaneVelocity(int32_t count, int64_t lifeTime, int64_t lifeTimeRnd, const Vector3& axis0, const Vector3& axis1, const Vector3& center, float radius, float mass, float massRnd, float velocity, float 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->mass = mass;
31 this->massRnd = massRnd;
32 this->velocity = velocity;
33 this->velocityRnd = velocityRnd;
34 this->colorStart.set(colorStart);
35 this->colorEnd.set(colorEnd);
36 this->centerTransformed.set(center);
38 this->axis0Transformed.set(axis0).normalize();
39 this->axis1Transformed.set(axis1).normalize();
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 on circle spanned on axis 0 and axis 1
50 auto rnd = 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(particle->position).normalize().scale(velocity + (Math::random() * velocityRnd));
58 // mass
59 particle->mass = mass + static_cast<float>((Math::random() * (massRnd)));
60 // life time
61 particle->lifeTimeMax = lifeTime + static_cast< int64_t >((Math::random() * lifeTimeRnd));
62 particle->lifeTimeCurrent = 0LL;
63 // color
64 particle->color.set(colorStart);
65 particle->colorAdd.set(
66 (colorEnd.getRed() - colorStart.getRed()) / particle->lifeTimeMax,
68 (colorEnd.getBlue() - colorStart.getBlue()) / particle->lifeTimeMax,
69 (colorEnd.getAlpha() - colorStart.getAlpha()) / particle->lifeTimeMax);
70}
71
73{
74 auto& transformationsMatrix = transformations.getTransformationsMatrix();
75 // apply rotation, scale, translation
76 centerTransformed = transformationsMatrix.multiply(center);
77 // apply transformations rotation + scale to axis
78 axis0Transformed = transformationsMatrix.multiplyNoTranslation(axis0);
79 axis1Transformed = transformationsMatrix.multiplyNoTranslation(axis1);
80 // scale and radius transformed
81 Vector3 scale;
82 transformationsMatrix.getScale(scale);
83 radiusTransformed = radius * Math::max(scale.getX(), Math::max(scale.getY(), scale.getZ()));
84}
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.
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