TDME2 1.9.121
PointParticleEmitter.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
21PointParticleEmitter::PointParticleEmitter(int32_t count, int64_t lifeTime, int64_t lifeTimeRnd, float mass, float massRnd, const Vector3& position, 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->mass = mass;
27 this->massRnd = massRnd;
28 this->position.set(position);
29 this->positionTransformed.set(position);
30 this->velocity.set(velocity);
31 this->velocityRnd.set(velocityRnd);
32 this->colorStart.set(colorStart);
33 this->colorEnd.set(colorEnd);
34}
35
37{
38 // set up particle
39 particle->active = true;
40 particle->spriteIndex = 0.0f;
41 particle->position.set(0.0f, 0.0f, 0.0f);
42 particle->velocity.set(
43 velocity[0] + (Math::random() * velocityRnd[0] * (Math::random() > 0.5 ? +1.0f : -1.0f)),
44 velocity[1] + (Math::random() * velocityRnd[1] * (Math::random() > 0.5 ? +1.0f : -1.0f)),
45 velocity[2] + (Math::random() * velocityRnd[2] * (Math::random() > 0.5 ? +1.0f : -1.0f))
46 );
47 particle->mass = mass + static_cast<float>((Math::random() * (massRnd)));
48 particle->lifeTimeMax = lifeTime + static_cast< int64_t >((Math::random() * lifeTimeRnd));
49 particle->lifeTimeCurrent = 0LL;
50 particle->color.set(colorStart);
51 particle->colorAdd.set(
52 (colorEnd.getRed() - colorStart.getRed()) / particle->lifeTimeMax,
54 (colorEnd.getBlue() - colorStart.getBlue()) / particle->lifeTimeMax,
56 );
57}
58
60{
61 //
62 auto& transformationsMatrix = transformations.getTransformationsMatrix();
63 // apply translations
64 positionTransformed = transformationsMatrix.multiply(position);
65}
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
Vector3 & set(float x, float y, float z)
Set up vector.
Definition: Vector3.h:73