TDME2 1.9.121
BoundingBoxParticleEmitter.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
23BoundingBoxParticleEmitter::BoundingBoxParticleEmitter(int32_t count, int64_t lifeTime, int64_t lifeTimeRnd, float mass, float massRnd, OrientedBoundingBox* obb, 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->obb = obb;
31 this->velocity.set(velocity);
32 this->velocityRnd.set(velocityRnd);
33 this->colorStart.set(colorStart);
34 this->colorEnd.set(colorEnd);
35 this->obbTransformed = static_cast<OrientedBoundingBox*>(obb->clone());
36}
37
39 delete obb;
40 delete obbTransformed;
41}
42
44{
45 Vector3 tmpAxis;
46 // set up particle
47 particle->active = true;
48 particle->spriteIndex = 0.0f;
49 auto obbAxes = obbTransformed->getAxes();
50 auto& obbHalfExtensionXYZ = obbTransformed->getHalfExtension().getArray();
51 // emit particle in oriented bounding box
52 particle->position.set(0.0f, 0.0f, 0.0f);
53 particle->position.add(tmpAxis.set(obbAxes[0]).scale((static_cast<float>(Math::random()) * obbHalfExtensionXYZ[0] * 2.0f) - obbHalfExtensionXYZ[0]));
54 particle->position.add(tmpAxis.set(obbAxes[1]).scale((static_cast<float>(Math::random()) * obbHalfExtensionXYZ[1] * 2.0f) - obbHalfExtensionXYZ[1]));
55 particle->position.add(tmpAxis.set(obbAxes[2]).scale((static_cast<float>(Math::random()) * obbHalfExtensionXYZ[2] * 2.0f) - obbHalfExtensionXYZ[2]));
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 + (Math::random() * (massRnd));
64 // life time
65 particle->lifeTimeMax = lifeTime + (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,
73 (colorEnd.getAlpha() - colorStart.getAlpha()) / particle->lifeTimeMax);
74}
75
77{
78 Vector3 center;
79 Vector3 scale;
80 array<Vector3, 3> axes;
81 array<Vector3, 3> axesTransformed;
82 Vector3 halfExtension;
83 auto& transformationsMatrix = transformations.getTransformationsMatrix();
84 // apply rotation, scale, translation
85 center = transformationsMatrix.multiply(obb->getCenter());
86 // apply transformations rotation to axis
87 axesTransformed[0] = transformationsMatrix.multiplyNoTranslation(obb->getAxes()[0]);
88 axesTransformed[1] = transformationsMatrix.multiplyNoTranslation(obb->getAxes()[1]);
89 axesTransformed[2] = transformationsMatrix.multiplyNoTranslation(obb->getAxes()[2]);
90 // scale
91 scale.set(
92 axesTransformed[0].computeLength(),
93 axesTransformed[1].computeLength(),
94 axesTransformed[2].computeLength()
95 );
96 // set up axes
97 axes[0].set(axesTransformed[0]).normalize();
98 axes[1].set(axesTransformed[1]).normalize();
99 axes[2].set(axesTransformed[2]).normalize();
100 // apply scale to half extension
101 halfExtension.set(obb->getHalfExtension());
102 halfExtension.scale(scale);
103 *obbTransformed = OrientedBoundingBox(center, axes[0], axes[1], axes[2], halfExtension);
104}
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
Oriented bounding box physics primitive.
const array< Vector3, 3 > & getAxes() const
BoundingVolume * clone() const override
Clones this bounding volume.
void fromTransformations(const Transformations &transformations) override
Update transformation with given transformations.
Standard math functions.
Definition: Math.h:21
3D vector 3 class
Definition: Vector3.h:22
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
array< float, 3 > & getArray() const
Definition: Vector3.h:171