TDME2 1.9.121
FogParticleSystemInternal.cpp
Go to the documentation of this file.
2
3#include <string>
4#include <vector>
5
6#include <tdme/tdme.h>
17#include <tdme/engine/Engine.h>
18#include <tdme/engine/Timing.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
44
45FogParticleSystemInternal::FogParticleSystemInternal(const string& id, ParticleEmitter* emitter, int32_t maxPoints, float pointSize, Texture* texture, int32_t textureHorizontalSprites, int32_t textureVerticalSprites, float fps)
46{
47 this->id = id;
48 this->enabled = true;
49 // will be activated on emit and auto unactivated if no more active particles
50 this->active = false;
51 this->emitter = emitter;
52 particles.resize(maxPoints);
53 this->maxPoints = maxPoints;
54 this->effectColorMul.set(1.0f, 1.0f, 1.0f, 1.0f);
55 this->effectColorAdd.set(0.0f, 0.0f, 0.0f, 0.0f);
56 this->pickable = false;
57 this->pointSize = pointSize;
58 this->pointSizeScale = 1.0f;
59 this->pointsRenderPool = nullptr;
60 this->texture = texture;
61 this->textureId = 0;
62 this->textureHorizontalSprites = textureHorizontalSprites;
63 this->textureVerticalSprites = textureVerticalSprites;
64 this->fps = fps;
65}
66
68 delete emitter;
69}
70
72 this->textureId = this->texture == nullptr?engine->getTextureManager()->addTexture(this->texture = TextureReader::read("resources/engine/textures", "point.png"), renderer->CONTEXTINDEX_DEFAULT):engine->getTextureManager()->addTexture(this->texture, renderer->CONTEXTINDEX_DEFAULT);
74
75 //
76 Vector3 center;
77 auto& localTransformationsMatrix = localTransformations.getTransformationsMatrix();
78 localTransformationsMatrix.getTranslation(center);
79 center.add(emitter->getCenter());
80 // transformations
82 //
83 Vector3 point;
84
85 // enable particle system
86 active = true;
87 // emit particles
88 for (auto i = 0; i < particles.size(); i++) {
89 // emit particle
91 }
92
93 // bounding box transformed min, max xyz
94 auto& bbMinXYZ = boundingBox.getMin().getArray();
95 auto& bbMaxXYZ = boundingBox.getMax().getArray();
96 //
97 auto haveBoundingBox = false;
98 // compute distance from camera
99 float distanceFromCamera;
100 // process particles
102 //
103 auto activeParticles = 0;
104 for (auto i = 0; i < particles.size(); i++) {
105 auto& particle = particles[i];
106 if (particle.active == false) continue;
107
108 //
109 activeParticles++;
110
111 // color
112 int64_t timeRnd = (int64_t)(Math::random() * (float)particle.lifeTimeMax);
113 auto& color = particle.color.getArray();
114 auto& colorAdd = particle.colorAdd.getArray();
115 color[0] += colorAdd[0] * static_cast<float>(timeRnd);
116 color[1] += colorAdd[1] * static_cast<float>(timeRnd);
117 color[2] += colorAdd[2] * static_cast<float>(timeRnd);
118 color[3] += colorAdd[3] * static_cast<float>(timeRnd);
119
120 // set up bounding box
121 point = localTransformationsMatrix.multiply(particle.position);
122 point.add(center);
123
124 // set up bounding box
125 auto& pointXYZ = point.getArray();
126 if (haveBoundingBox == false) {
127 bbMinXYZ = pointXYZ;
128 bbMaxXYZ = pointXYZ;
129 haveBoundingBox = true;
130 } else {
131 if (pointXYZ[0] < bbMinXYZ[0]) bbMinXYZ[0] = pointXYZ[0];
132 if (pointXYZ[1] < bbMinXYZ[1]) bbMinXYZ[1] = pointXYZ[1];
133 if (pointXYZ[2] < bbMinXYZ[2]) bbMinXYZ[2] = pointXYZ[2];
134 if (pointXYZ[0] > bbMaxXYZ[0]) bbMaxXYZ[0] = pointXYZ[0];
135 if (pointXYZ[1] > bbMaxXYZ[1]) bbMaxXYZ[1] = pointXYZ[1];
136 if (pointXYZ[2] > bbMaxXYZ[2]) bbMaxXYZ[2] = pointXYZ[2];
137 }
138 }
139
140 // auto disable particle system if no more active particles
141 if (activeParticles == 0) {
142 active = false;
143 return;
144 }
145 // scale a bit up to make picking work better
146 // compute bounding boxes
152}
153
155{
158}
159
161{
164}
165
167{
168 if (enabled == false || active == false) return;
169
170 //
171 Vector3 center;
172 auto& localTransformationsMatrix = localTransformations.getTransformationsMatrix();
173 localTransformationsMatrix.getTranslation(center);
174 center.add(emitter->getCenter());
175 //
176 Vector3 point;
177 // bounding box transformed min, max xyz
178 auto& bbMinXYZ = boundingBox.getMin().getArray();
179 auto& bbMaxXYZ = boundingBox.getMax().getArray();
180 //
181 auto haveBoundingBox = false;
182 // transformations
184 // process particles
186 auto activeParticles = 0;
187 auto timeDelta = engine->getTiming()->getDeltaTime();
188 for (auto i = 0; i < particles.size(); i++) {
189 auto& particle = particles[i];
190 if (particle.active == false) continue;
191 // sprite index
192 particle.spriteIndex+= (static_cast<float>(timeDelta) / 1000.0f) * fps;
193 //
194 activeParticles++;
195 // set up bounding box
196 point = localTransformationsMatrix.multiply(particle.position);
197 point.add(center);
198 //
199 auto& pointXYZ = point.getArray();
200 if (haveBoundingBox == false) {
201 bbMinXYZ = pointXYZ;
202 bbMaxXYZ = pointXYZ;
203 haveBoundingBox = true;
204 } else {
205 if (pointXYZ[0] < bbMinXYZ[0]) bbMinXYZ[0] = pointXYZ[0];
206 if (pointXYZ[1] < bbMinXYZ[1]) bbMinXYZ[1] = pointXYZ[1];
207 if (pointXYZ[2] < bbMinXYZ[2]) bbMinXYZ[2] = pointXYZ[2];
208 if (pointXYZ[0] > bbMaxXYZ[0]) bbMaxXYZ[0] = pointXYZ[0];
209 if (pointXYZ[1] > bbMaxXYZ[1]) bbMaxXYZ[1] = pointXYZ[1];
210 if (pointXYZ[2] > bbMaxXYZ[2]) bbMaxXYZ[2] = pointXYZ[2];
211 }
212 // transform particle according to its transformations
213 point = transformationsMatrix.multiply(point);
214 // add to render points pool
215 pointsRenderPool->addPoint(point, static_cast<uint16_t>(particle.spriteIndex) % (textureHorizontalSprites * textureVerticalSprites), particle.color, 1, this);
216 }
217 // auto disable particle system if no more active particles
218 if (activeParticles == 0) {
219 active = false;
220 return;
221 }
222 // scale a bit up to make picking work better
228}
229
231{
232 if (pointsRenderPool != nullptr) delete pointsRenderPool;
233 pointsRenderPool = nullptr;
235}
236
Engine main class.
Definition: Engine.h:122
Timing * getTiming()
Definition: Engine.h:900
static TextureManager * getTextureManager()
Definition: Engine.h:564
Timing class.
Definition: Timing.h:17
int64_t getDeltaTime()
Gets the time passed between last and current frame.
Definition: Timing.h:83
Transformations which contain scale, rotations and translation.
const Matrix4x4 & getTransformationsMatrix() const
virtual void fromTransformations(const Transformations &transformations)
Set up this transformations from given transformations.
virtual void update()
Computes transformation matrix.
const string & getId() const
Definition: Texture.h:60
void set(const array< float, 4 > &color)
Set up color.
Definition: Color4Base.h:68
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 removeTexture(const string &textureId)
Removes a texture from manager / open gl stack.
TextureManager_TextureManaged * addTexture(const string &id, bool &created)
Adds a texture to manager.
void fromTransformations(const Transformations &transformations) override
Set up this transformations from given transformations.
void addPoint(const Vector3 &point, uint16_t spriteIndex, const Color4 &color, int particleSystemType, void *particleSystem)
Creates an transparent render point entity in pool.
Standard math functions.
Definition: Math.h:21
4x4 3D Matrix class
Definition: Matrix4x4.h:24
void getTranslation(Vector3 &translation) const
Get translation.
Definition: Matrix4x4.h:261
Vector3 multiply(const Vector3 &v) const
Multiplies a vector3 with this matrix into destination vector.
Definition: Matrix4x4.h:351
3D vector 3 class
Definition: Vector3.h:22
Vector3 & sub(const Vector3 &v)
Subtracts a vector.
Definition: Vector3.h:325
Vector3 & add(const Vector3 &v)
Adds a vector.
Definition: Vector3.h:301
array< float, 3 > & getArray() const
Definition: Vector3.h:171
virtual void emit(Particle *particle)=0
Emits particles.