TDME2 1.9.121
FogParticleSystemInternal.h
Go to the documentation of this file.
1#pragma once
2
3#include <string>
4#include <vector>
5
6#include <tdme/tdme.h>
19#include <tdme/math/Matrix4x4.h>
20#include <tdme/math/Vector3.h>
21
22using std::string;
23using std::vector;
24
37
38/**
39 * Fog particle system
40 * @author Andreas Drewke
41 * @version $Id$
42 */
44 : public Transformations
45 , public virtual ParticleSystemEntityInternal
46{
47
48protected:
49 string id;
50 Engine* engine { nullptr };
51 Renderer* renderer { nullptr };
52 bool enabled;
53 bool active;
55 vector<Particle> particles;
56 int32_t maxPoints;
57 float pointSize;
59 Texture* texture { nullptr };
60 int32_t textureId;
63 float fps;
65
71
73
74 /**
75 * Update bounding volume
76 */
77 inline void updateInternal() {
80 pointSizeScale = Math::max(scale.getX(), Math::max(scale.getY(), scale.getZ()));
83 boundingBoxTransformed.getMin().sub(0.05f); // scale a bit up to make picking work better
84 boundingBoxTransformed.getMax().add(0.05f); // same here
86 }
87
88public:
89 /**
90 * Public constructor
91 * @param id id
92 * @param emitter emitter
93 * @param maxPoints max points
94 * @param pointSize point size
95 * @param texture texture
96 * @param textureHorizontalSprites texture horizonal sprites
97 * @param textureVerticalSprites texture vertical sprites
98 * @param fps frames per seconds
99 */
100 FogParticleSystemInternal(const string& id, ParticleEmitter* emitter, int32_t maxPoints, float pointSize, Texture* texture = nullptr, int32_t textureHorizontalSprites = 1, int32_t textureVerticalSprites = 1, float fps = 10.0f);
101
102 /**
103 * Destructor
104 */
106
107 /**
108 * Initialize
109 */
110 void initialize();
111
112 inline ParticleEmitter* getEmitter() override {
113 return emitter;
114 }
115
116 inline const string& getId() override {
117 return id;
118 }
119
120 /**
121 * Set renderer
122 * @param renderer renderer
123 */
125 this->renderer = renderer;
126 }
127
128 /**
129 * Set engine
130 * @param engine engine
131 */
132 inline void setEngine(Engine* engine) {
133 this->engine = engine;
134 }
135
136 inline bool isEnabled() override {
137 return enabled;
138 }
139
140 inline bool isActive() override {
141 return active;
142 }
143
144 inline void setEnabled(bool enabled) override {
145 this->enabled = enabled;
146 }
147
148 inline const Color4& getEffectColorMul() const override {
149 return effectColorMul;
150 }
151
152 inline void setEffectColorMul(const Color4& effectColorMul) override {
153 this->effectColorMul = effectColorMul;
154 }
155
156 inline const Color4& getEffectColorAdd() const override {
157 return effectColorAdd;
158 }
159
160 inline void setEffectColorAdd(const Color4& effectColorAdd) override {
161 this->effectColorAdd = effectColorAdd;
162 }
163
164 inline bool isPickable() override {
165 return pickable;
166 }
167
168 inline void setPickable(bool pickable) override {
169 this->pickable = pickable;
170 }
171
172 inline bool isAutoEmit() override {
173 return true;
174 }
175
176 inline void setAutoEmit(bool autoEmit) override {
177 // no op
178 }
179
180 /**
181 * @return if entity contributes to shadows
182 */
183 inline bool isContributesShadows() {
184 return false;
185 }
186
187 /**
188 * Enable/disable contributes shadows
189 * @param contributesShadows contributes shadows
190 */
191 inline void setContributesShadows(bool contributesShadows) {
192 //
193 }
194
195 /**
196 * @return if entity receives shadows
197 */
198 inline bool isReceivesShadows() {
199 return false;
200 }
201
202 /**
203 * Enable/disable receives shadows
204 * @param receivesShadows receives shadows
205 */
206 inline void setReceivesShadows(bool receivesShadows) {
207 //
208 }
209
210 /**
211 * @return point size
212 */
213 inline float getPointSize() {
214 return pointSize * pointSizeScale;
215 }
216
217 /**
218 * @return texture id
219 */
220 inline int32_t getTextureId() {
221 return textureId;
222 }
223
224 /**
225 * @return texture horizontal sprites
226 */
229 }
230
231 /**
232 * @return texture vertical sprites
233 */
236 }
237
238 // overridden methods
239 void update() override;
240 void fromTransformations(const Transformations& transformations) override;
241 void updateParticles() override;
242 void dispose();
243 inline int32_t emitParticles() override {
244 return 0;
245 }
246 inline const Transformations& getLocalTransformations() override {
248 }
249 inline void setLocalTransformations(const Transformations& transformations) override {
250 this->localTransformations = transformations;
252 }
253
254 /**
255 * @return render points pool
256 */
258 return pointsRenderPool;
259 }
260
261};
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 setPickable(bool pickable) override
Set this object pickable.
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.
FogParticleSystemInternal(const string &id, ParticleEmitter *emitter, int32_t maxPoints, float pointSize, Texture *texture=nullptr, int32_t textureHorizontalSprites=1, int32_t textureVerticalSprites=1, float fps=10.0f)
Public constructor.
const Color4 & getEffectColorMul() const override
The effect color will be multiplied with fragment color.
void setEnabled(bool enabled) override
Enable/disable rendering.
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.
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