TDME2 1.9.121
SphereParticleEmitter.cpp
Go to the documentation of this file.
2
3#include <tdme/tdme.h>
10#include <tdme/math/Math.h>
11#include <tdme/math/Vector3.h>
12
22
23SphereParticleEmitter::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)
24{
25 this->count = count;
26 this->lifeTime = lifeTime;
27 this->lifeTimeRnd = lifeTimeRnd;
28 this->mass = mass;
29 this->massRnd = massRnd;
30 this->sphere = sphere;
31 this->sphereTransformed = static_cast< Sphere* >(sphere->clone());
32 this->velocity.set(velocity);
33 this->velocityRnd.set(velocityRnd);
34 this->colorStart.set(colorStart);
35 this->colorEnd.set(colorEnd);
36}
37
39 delete sphere;
40 delete sphereTransformed;
41}
42
44{
45 // set up particle
46 particle->active = true;
47 particle->spriteIndex = 0.0f;
48 particle->position.set(
49 Math::random() * 2.0f - 1.0f,
50 Math::random() * 2.0f - 1.0f,
51 Math::random() * 2.0f - 1.0f
53 particle->velocity.set(
54 velocity[0] + (Math::random() * velocityRnd[0] * (Math::random() > 0.5 ? +1.0f : -1.0f)),
55 velocity[1] + (Math::random() * velocityRnd[1] * (Math::random() > 0.5 ? +1.0f : -1.0f)),
56 velocity[2] + (Math::random() * velocityRnd[2] * (Math::random() > 0.5 ? +1.0f : -1.0f))
57 );
58 particle->mass = mass + (Math::random() * (massRnd));
59 particle->lifeTimeMax = lifeTime + static_cast< int64_t >((Math::random() * lifeTimeRnd));
60 particle->lifeTimeCurrent = 0LL;
61 particle->color.set(colorStart);
62 particle->colorAdd.set(
63 (colorEnd.getRed() - colorStart.getRed()) / particle->lifeTimeMax,
65 (colorEnd.getBlue() - colorStart.getBlue()) / particle->lifeTimeMax,
67 );
68}
69
71{
72 auto& transformationsMatrix = transformations.getTransformationsMatrix();
73 // apply translations
74 Vector3 center;
75 Vector3 axis;
76 // translate center
77 center = transformationsMatrix.multiply(sphere->getCenter());
78 // scale and radius transformed
79 Vector3 scale;
80 transformationsMatrix.getScale(scale);
81 *sphereTransformed = Sphere(center, sphere->getRadius() * Math::max(scale.getX(), Math::max(scale.getY(), scale.getZ())));
82}
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
Sphere physics primitive.
Definition: Sphere.h:18
BoundingVolume * clone() const override
Clones this bounding volume.
Definition: Sphere.cpp:49
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
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 & scale(float scale)
Scale this vector.
Definition: Vector3.h:349