TDME2 1.9.121
PointsParticleSystemInternal.h
Go to the documentation of this file.
1#pragma once
2
3#include <string>
4#include <vector>
5
6#include <tdme/tdme.h>
20#include <tdme/math/Math.h>
21#include <tdme/math/Matrix4x4.h>
22#include <tdme/math/Vector3.h>
23
24using std::string;
25using std::vector;
26
40
41/**
42 * Points particle system
43 * @author Andreas Drewke
44 * @version $Id$
45 */
47 : public Transformations
48 , public virtual ParticleSystemEntityInternal
49{
50
51protected:
52 string id;
53 Engine* engine { nullptr };
54 Renderer* renderer { nullptr };
56 bool enabled;
57 bool active;
59 vector<Particle> particles;
60 int32_t maxPoints;
61 float pointSize;
63 Texture* texture { nullptr };
64 int32_t textureId;
67 float fps;
69
77
79
80 /**
81 * Update bounding volume
82 */
83 inline void updateInternal() {
86 pointSizeScale = Math::max(scale.getX(), Math::max(scale.getY(), scale.getZ()));
89 boundingBoxTransformed.getMin().sub(0.05f); // scale a bit up to make picking work better
90 boundingBoxTransformed.getMax().add(0.05f); // same here
92 }
93
94public:
95 /**
96 * Public constructor
97 * @param id id
98 * @param emitter emitter
99 * @param maxPoints max points
100 * @param pointSize point size
101 * @param autoEmit auto emit
102 * @param texture texture
103 * @param textureHorizonalSprites texture horizonal sprites
104 * @param textureVerticalSprites texture vertical sprites
105 * @param fps frames per seconds
106 */
107 PointsParticleSystemInternal(const string& id, ParticleEmitter* emitter, int32_t maxPoints, float pointSize, bool autoEmit, Texture* texture = nullptr, int32_t textureHorizontalSprites = 1, int32_t textureVerticalSprites = 1, float fps = 10.0f);
108
109 /**
110 * Destructor
111 */
113
114 /**
115 * Initialize
116 */
117 void initialize();
118
119 // overridden methods
120 inline ParticleEmitter* getEmitter() override {
121 return emitter;
122 }
123
124 inline const string& getId() override {
125 return id;
126 }
128 this->renderer = renderer;
129 }
130 inline void setEngine(Engine* engine) {
131 this->engine = engine;
132 }
133 inline bool isEnabled() override {
134 return enabled;
135 }
136 inline bool isActive() override {
137 return active;
138 }
139 inline void setEnabled(bool enabled) override {
140 this->enabled = enabled;
141 }
142 inline const Color4& getEffectColorMul() const override {
143 return effectColorMul;
144 }
145 inline void setEffectColorMul(const Color4& effectColorMul) override {
146 this->effectColorMul = effectColorMul;
147 }
148 inline const Color4& getEffectColorAdd() const override {
149 return effectColorAdd;
150 }
151 inline void setEffectColorAdd(const Color4& effectColorAdd) override {
152 this->effectColorAdd = effectColorAdd;
153 }
154 inline bool isPickable() override {
155 return pickable;
156 }
157 inline void setPickable(bool pickable) override {
158 this->pickable = pickable;
159 }
160 inline bool isAutoEmit() override {
161 return autoEmit;
162 }
163 inline void setAutoEmit(bool autoEmit) override {
164 this->autoEmit = autoEmit;
165 }
166
167 /**
168 * @return if entity contributes to shadows
169 */
170 inline bool isContributesShadows() {
171 return false;
172 }
173
174 /**
175 * Enable/disable contributes shadows
176 * @param contributesShadows contributes shadows
177 */
178 inline void setContributesShadows(bool contributesShadows) {
179 //
180 }
181
182 /**
183 * @return if entity receives shadows
184 */
185 inline bool isReceivesShadows() {
186 return false;
187 }
188
189 /**
190 * Enable/disable receives shadows
191 * @param receivesShadows receives shadows
192 */
193 inline void setReceivesShadows(bool receivesShadows) {
194 //
195 }
196
197 /**
198 * @return point size
199 */
200 inline float getPointSize() {
201 return pointSize * pointSizeScale;
202 }
203
204 /**
205 * @return texture id
206 */
207 inline int32_t getTextureId() {
208 return textureId;
209 }
210
211 /**
212 * @return texture horizontal sprites
213 */
216 }
217
218 /**
219 * @return texture vertical sprites
220 */
223 }
224
225 /**
226 * Update transformations
227 */
228 void update() override;
229 void fromTransformations(const Transformations& transformations) override;
230 void updateParticles() override;
231 void dispose();
232 int32_t emitParticles() override;
233 inline const Transformations& getLocalTransformations() override {
235 }
236 inline void setLocalTransformations(const Transformations& transformations) override {
237 this->localTransformations = transformations;
239 }
240
241 /**
242 * @return render points pool
243 */
245
246};
Engine main class.
Definition: Engine.h:122
Transformations which contain scale, rotations and translation.
const Matrix4x4 & getTransformationsMatrix() const
const Vector3 & getScale() const
Color 4 definition.
Definition: Color4.h:20
Axis aligned bounding box used for frustum, this is not directly connectable with physics engine.
Definition: BoundingBox.h:25
void fromBoundingVolumeWithTransformations(BoundingBox *original, const Transformations &transformations)
Create bounding volume from given original(of same type) with applied transformations.
Definition: BoundingBox.cpp:79
void update()
Updates this bounding box.
void setContributesShadows(bool contributesShadows)
Enable/disable contributes shadows.
const Color4 & getEffectColorAdd() const override
The effect color will be added to fragment color.
void setLocalTransformations(const Transformations &transformations) override
Set local transformations.
void setEffectColorMul(const Color4 &effectColorMul) override
Set the effect color that will be multiplied with fragment color.
void fromTransformations(const Transformations &transformations) override
Set up this transformations from given transformations.
const Color4 & getEffectColorMul() const override
The effect color will be multiplied with fragment color.
PointsParticleSystemInternal(const string &id, ParticleEmitter *emitter, int32_t maxPoints, float pointSize, bool autoEmit, Texture *texture=nullptr, int32_t textureHorizontalSprites=1, int32_t textureVerticalSprites=1, float fps=10.0f)
Public constructor.
int32_t emitParticles() override
Adds particles to this particle entity at given position.
void setReceivesShadows(bool receivesShadows)
Enable/disable receives shadows.
void setEffectColorAdd(const Color4 &effectColorAdd) override
Set the effect color that will be added to fragment color.
Standard math functions.
Definition: Math.h:21
4x4 3D Matrix class
Definition: Matrix4x4.h:24
void getScale(Vector3 &scale) const
Get scale.
Definition: Matrix4x4.h:282
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 & sub(const Vector3 &v)
Subtracts a vector.
Definition: Vector3.h:325
Vector3 & add(const Vector3 &v)
Adds a vector.
Definition: Vector3.h:301