TDME2 1.9.121
BoundingBoxParticleEmitter.h
Go to the documentation of this file.
1#pragma once
2
3#include <tdme/tdme.h>
10#include <tdme/math/fwd-tdme.h>
11#include <tdme/math/Vector3.h>
12
19
20/**
21 * Bounding box particle emitter
22 * @author Andreas Drewke
23 * @version $Id$
24 */
26 : public ParticleEmitter
27{
28private:
29 int32_t count;
30 int64_t lifeTime;
31 int64_t lifeTimeRnd;
32 float mass;
33 float massRnd;
40public:
41 /**
42 * Public constructor
43 * @param count particles to emit in one second
44 * @param lifeTime life time in milli seconds
45 * @param lifeTimeRnd life time rnd in milli seconds
46 * @param mass mass in kg
47 * @param massRnd mass rnd in kg
48 * @param obb oriented bounding box
49 * @param velocity velocity in meter / seconds
50 * @param velocityRnd velocity rnd in meter / seconds
51 * @param colorStart color start
52 * @param colorEnd color end
53 */
55
56 /**
57 * Destructor
58 */
60
61 // overridden methods
62 inline const Vector3& getCenter() const override {
63 return obbTransformed->getCenter();
64 }
65
66 inline int32_t getCount() const override {
67 return count;
68 }
69
70 inline const Vector3& getVelocity() const {
71 return velocity;
72 }
73
74 inline const Vector3& getVelocityRnd() const {
75 return velocityRnd;
76 }
77
78 inline const Color4& getColorStart() const override {
79 return colorStart;
80 }
81
82 inline void setColorStart(const Color4& colorStart) override {
83 this->colorStart = colorStart;
84 }
85
86 inline const Color4& getColorEnd() const override {
87 return colorEnd;
88 }
89
90 inline void setColorEnd(const Color4& colorEnd) override {
91 this->colorEnd = colorEnd;
92 }
93
94 void emit(Particle* particle) override;
95 void fromTransformations(const Transformations& transformations) override;
96
97};
Transformations which contain scale, rotations and translation.
Color 4 definition.
Definition: Color4.h:20
Oriented bounding box physics primitive.
void setColorEnd(const Color4 &colorEnd) override
Set end color.
void setColorStart(const Color4 &colorStart) override
Set start color.
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)
Public constructor.
void fromTransformations(const Transformations &transformations) override
Update transformation with given transformations.
3D vector 3 class
Definition: Vector3.h:22