45FogParticleSystemInternal::FogParticleSystemInternal(
const string&
id,
ParticleEmitter* emitter, int32_t maxPoints,
float pointSize,
Texture* texture, int32_t textureHorizontalSprites, int32_t textureVerticalSprites,
float fps)
88 for (
auto i = 0; i <
particles.size(); i++) {
97 auto haveBoundingBox =
false;
99 float distanceFromCamera;
103 auto activeParticles = 0;
104 for (
auto i = 0; i <
particles.size(); i++) {
106 if (particle.active ==
false)
continue;
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);
121 point = localTransformationsMatrix.multiply(particle.position);
126 if (haveBoundingBox ==
false) {
129 haveBoundingBox =
true;
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];
141 if (activeParticles == 0) {
181 auto haveBoundingBox =
false;
186 auto activeParticles = 0;
188 for (
auto i = 0; i <
particles.size(); i++) {
190 if (particle.active ==
false)
continue;
192 particle.spriteIndex+= (
static_cast<float>(timeDelta) / 1000.0f) *
fps;
196 point = localTransformationsMatrix.multiply(particle.position);
200 if (haveBoundingBox ==
false) {
203 haveBoundingBox =
true;
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];
218 if (activeParticles == 0) {
static TextureManager * getTextureManager()
int64_t getDeltaTime()
Gets the time passed between last and current frame.
const string & getId() const
void set(const array< float, 4 > &color)
Set up color.
Axis aligned bounding box used for frustum, this is not directly connectable with physics engine.
void fromBoundingVolumeWithTransformations(BoundingBox *original, const Transformations &transformations)
Create bounding volume from given original(of same type) with applied transformations.
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 updateParticles() override
Updates the particle entity.
BoundingBox boundingBoxTransformed
virtual ~FogParticleSystemInternal()
Destructor.
void initialize()
Initialize.
int32_t textureHorizontalSprites
void update() override
Update transformations.
vector< Particle > particles
ParticleEmitter * emitter
int32_t textureVerticalSprites
void fromTransformations(const Transformations &transformations) override
Set up this transformations from given transformations.
TransparentRenderPointsPool * pointsRenderPool
Transformations localTransformations
void updateInternal()
Update bounding volume.
int32_t CONTEXTINDEX_DEFAULT
Transparent render points pool.
void addPoint(const Vector3 &point, uint16_t spriteIndex, const Color4 &color, int particleSystemType, void *particleSystem)
Creates an transparent render point entity in pool.
void getTranslation(Vector3 &translation) const
Get translation.
Vector3 multiply(const Vector3 &v) const
Multiplies a vector3 with this matrix into destination vector.
Vector3 & sub(const Vector3 &v)
Subtracts a vector.
Vector3 & add(const Vector3 &v)
Adds a vector.
array< float, 3 > & getArray() const
Particle emitter interface.
virtual const Vector3 & getCenter() const =0
virtual void emit(Particle *particle)=0
Emits particles.
Particle system entity internal interface.