TDME2
1.9.121
src
tdme
engine
subsystems
particlesystem
SphereParticleEmitter.cpp
Go to the documentation of this file.
1
#include <
tdme/engine/subsystems/particlesystem/SphereParticleEmitter.h
>
2
3
#include <
tdme/tdme.h
>
4
#include <
tdme/engine/model/Color4.h
>
5
#include <
tdme/engine/model/Color4Base.h
>
6
#include <
tdme/engine/primitives/BoundingVolume.h
>
7
#include <
tdme/engine/primitives/Sphere.h
>
8
#include <
tdme/engine/subsystems/particlesystem/Particle.h
>
9
#include <
tdme/engine/Transformations.h
>
10
#include <
tdme/math/Math.h
>
11
#include <
tdme/math/Vector3.h
>
12
13
using
tdme::engine::model::Color4
;
14
using
tdme::engine::model::Color4Base
;
15
using
tdme::engine::primitives::BoundingVolume
;
16
using
tdme::engine::primitives::Sphere
;
17
using
tdme::engine::subsystems::particlesystem::Particle
;
18
using
tdme::engine::subsystems::particlesystem::SphereParticleEmitter
;
19
using
tdme::engine::Transformations
;
20
using
tdme::math::Math
;
21
using
tdme::math::Vector3
;
22
23
SphereParticleEmitter::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
38
SphereParticleEmitter::~SphereParticleEmitter
() {
39
delete
sphere
;
40
delete
sphereTransformed
;
41
}
42
43
void
SphereParticleEmitter::emit
(
Particle
* particle)
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
52
).
normalize
().
scale
(
sphereTransformed
->
getRadius
());
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
,
64
(
colorEnd
.
getGreen
() -
colorStart
.
getGreen
()) / particle->
lifeTimeMax
,
65
(
colorEnd
.
getBlue
() -
colorStart
.
getBlue
()) / particle->
lifeTimeMax
,
66
(
colorEnd
.
getAlpha
() -
colorStart
.
getAlpha
()) / particle->
lifeTimeMax
67
);
68
}
69
70
void
SphereParticleEmitter::fromTransformations
(
const
Transformations
& transformations)
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
}
BoundingVolume.h
Color4Base.h
Color4.h
Math.h
Particle.h
SphereParticleEmitter.h
Sphere.h
Transformations.h
Vector3.h
tdme::engine::Transformations
Transformations which contain scale, rotations and translation.
Definition:
Transformations.h:27
tdme::engine::Transformations::getTransformationsMatrix
const Matrix4x4 & getTransformationsMatrix() const
Definition:
Transformations.h:169
tdme::engine::model::Color4Base
Color 4 base definition class.
Definition:
Color4Base.h:19
tdme::engine::model::Color4Base::set
void set(const array< float, 4 > &color)
Set up color.
Definition:
Color4Base.h:68
tdme::engine::model::Color4Base::getRed
float getRed() const
Definition:
Color4Base.h:111
tdme::engine::model::Color4Base::getGreen
float getGreen() const
Definition:
Color4Base.h:125
tdme::engine::model::Color4Base::getAlpha
float getAlpha() const
Definition:
Color4Base.h:153
tdme::engine::model::Color4Base::getBlue
float getBlue() const
Definition:
Color4Base.h:139
tdme::engine::model::Color4
Color 4 definition.
Definition:
Color4.h:20
tdme::engine::primitives::BoundingVolume
Bounding volume interface.
Definition:
BoundingVolume.h:26
tdme::engine::primitives::BoundingVolume::getCenter
const Vector3 & getCenter() const
Definition:
BoundingVolume.cpp:71
tdme::engine::primitives::Sphere
Sphere physics primitive.
Definition:
Sphere.h:18
tdme::engine::primitives::Sphere::getRadius
float getRadius() const
Definition:
Sphere.cpp:28
tdme::engine::primitives::Sphere::clone
BoundingVolume * clone() const override
Clones this bounding volume.
Definition:
Sphere.cpp:49
tdme::engine::subsystems::particlesystem::SphereParticleEmitter
Sphere particle emitter.
Definition:
SphereParticleEmitter.h:28
tdme::engine::subsystems::particlesystem::SphereParticleEmitter::colorEnd
Color4 colorEnd
Definition:
SphereParticleEmitter.h:40
tdme::engine::subsystems::particlesystem::SphereParticleEmitter::~SphereParticleEmitter
virtual ~SphereParticleEmitter()
Destructor.
Definition:
SphereParticleEmitter.cpp:38
tdme::engine::subsystems::particlesystem::SphereParticleEmitter::count
int32_t count
Definition:
SphereParticleEmitter.h:30
tdme::engine::subsystems::particlesystem::SphereParticleEmitter::velocityRnd
Vector3 velocityRnd
Definition:
SphereParticleEmitter.h:38
tdme::engine::subsystems::particlesystem::SphereParticleEmitter::velocity
Vector3 velocity
Definition:
SphereParticleEmitter.h:37
tdme::engine::subsystems::particlesystem::SphereParticleEmitter::colorStart
Color4 colorStart
Definition:
SphereParticleEmitter.h:39
tdme::engine::subsystems::particlesystem::SphereParticleEmitter::lifeTimeRnd
int64_t lifeTimeRnd
Definition:
SphereParticleEmitter.h:32
tdme::engine::subsystems::particlesystem::SphereParticleEmitter::fromTransformations
void fromTransformations(const Transformations &transformations) override
Update transformation with given transformations.
Definition:
SphereParticleEmitter.cpp:70
tdme::engine::subsystems::particlesystem::SphereParticleEmitter::mass
float mass
Definition:
SphereParticleEmitter.h:33
tdme::engine::subsystems::particlesystem::SphereParticleEmitter::sphere
Sphere * sphere
Definition:
SphereParticleEmitter.h:35
tdme::engine::subsystems::particlesystem::SphereParticleEmitter::lifeTime
int64_t lifeTime
Definition:
SphereParticleEmitter.h:31
tdme::engine::subsystems::particlesystem::SphereParticleEmitter::sphereTransformed
Sphere * sphereTransformed
Definition:
SphereParticleEmitter.h:36
tdme::engine::subsystems::particlesystem::SphereParticleEmitter::emit
void emit(Particle *particle) override
Emits particles.
Definition:
SphereParticleEmitter.cpp:43
tdme::engine::subsystems::particlesystem::SphereParticleEmitter::massRnd
float massRnd
Definition:
SphereParticleEmitter.h:34
tdme::math::Math
Standard math functions.
Definition:
Math.h:21
tdme::math::Vector3
3D vector 3 class
Definition:
Vector3.h:22
tdme::math::Vector3::getY
float getY() const
Definition:
Vector3.h:119
tdme::math::Vector3::getX
float getX() const
Definition:
Vector3.h:103
tdme::math::Vector3::getZ
float getZ() const
Definition:
Vector3.h:136
tdme::math::Vector3::normalize
Vector3 & normalize()
Normalize the vector.
Definition:
Vector3.h:288
tdme::math::Vector3::set
Vector3 & set(float x, float y, float z)
Set up vector.
Definition:
Vector3.h:73
tdme::math::Vector3::scale
Vector3 & scale(float scale)
Scale this vector.
Definition:
Vector3.h:349
tdme::engine::subsystems::particlesystem::Particle
Particle entity.
Definition:
Particle.h:20
tdme::engine::subsystems::particlesystem::Particle::active
bool active
Definition:
Particle.h:21
tdme::engine::subsystems::particlesystem::Particle::colorAdd
Color4 colorAdd
Definition:
Particle.h:29
tdme::engine::subsystems::particlesystem::Particle::velocity
Vector3 velocity
Definition:
Particle.h:23
tdme::engine::subsystems::particlesystem::Particle::mass
float mass
Definition:
Particle.h:25
tdme::engine::subsystems::particlesystem::Particle::lifeTimeCurrent
int64_t lifeTimeCurrent
Definition:
Particle.h:27
tdme::engine::subsystems::particlesystem::Particle::spriteIndex
float spriteIndex
Definition:
Particle.h:22
tdme::engine::subsystems::particlesystem::Particle::lifeTimeMax
int64_t lifeTimeMax
Definition:
Particle.h:26
tdme::engine::subsystems::particlesystem::Particle::position
Vector3 position
Definition:
Particle.h:24
tdme::engine::subsystems::particlesystem::Particle::color
Color4 color
Definition:
Particle.h:28
tdme.h
Generated by
1.9.3