diff options
| author | max-001 <maxsmits21@kpnmail.nl> | 2024-11-05 16:29:18 +0100 |
|---|---|---|
| committer | max-001 <maxsmits21@kpnmail.nl> | 2024-11-05 16:29:18 +0100 |
| commit | ae6a103946e437ca85cc69c5fc2cbf68d35ffeae (patch) | |
| tree | a0bd09748c68950353f05d245bed4de470548fc6 /src/crepe/ParticleSystem.cpp | |
| parent | a5d3564f6d051986376c98abb9c098a8a7183fe0 (diff) | |
| parent | 5b248d068a94902be9ca4d00fe07d551f64c49b9 (diff) | |
Merge remote-tracking branch 'origin/master' into max/gameobject
Diffstat (limited to 'src/crepe/ParticleSystem.cpp')
| -rw-r--r-- | src/crepe/ParticleSystem.cpp | 62 |
1 files changed, 0 insertions, 62 deletions
diff --git a/src/crepe/ParticleSystem.cpp b/src/crepe/ParticleSystem.cpp deleted file mode 100644 index af6c550..0000000 --- a/src/crepe/ParticleSystem.cpp +++ /dev/null @@ -1,62 +0,0 @@ -#include <cmath> -#include <ctime> - -#include "api/ParticleEmitter.h" - -#include "ComponentManager.h" -#include "ParticleSystem.h" - -using namespace crepe; - -ParticleSystem::ParticleSystem() : elapsed_time(0.0f) {} - -void ParticleSystem::update() { - ComponentManager & mgr = ComponentManager::get_instance(); - std::vector<std::reference_wrapper<ParticleEmitter>> emitters - = mgr.get_components_by_type<ParticleEmitter>(); - float delta_time = 0.10; - for (ParticleEmitter & emitter : emitters) { - float update_amount = 1 / static_cast<float>(emitter.emission_rate); - for (float i = 0; i < delta_time; i += update_amount) { - emit_particle(emitter); - } - for (size_t j = 0; j < emitter.particles.size(); j++) { - if (emitter.particles[j].active) { - emitter.particles[j].update(delta_time); - } - } - } -} - -void ParticleSystem::emit_particle(ParticleEmitter & emitter) { - Position initial_position = {emitter.position.x, emitter.position.y}; - float random_angle = 0.0f; - if (emitter.max_angle < emitter.min_angle) { - random_angle = ((emitter.min_angle - + (std::rand() - % (static_cast<uint32_t>(emitter.max_angle + 360 - - emitter.min_angle + 1)))) - % 360); - } else { - random_angle = emitter.min_angle - + (std::rand() - % (static_cast<uint32_t>(emitter.max_angle - - emitter.min_angle + 1))); - } - float angle_in_radians = random_angle * (M_PI / 180.0f); - float random_speed_offset = (static_cast<float>(std::rand()) / RAND_MAX) - * (2 * emitter.speed_offset) - - emitter.speed_offset; - float velocity_x - = (emitter.speed + random_speed_offset) * std::cos(angle_in_radians); - float velocity_y - = (emitter.speed + random_speed_offset) * std::sin(angle_in_radians); - Position initial_velocity = {velocity_x, velocity_y}; - for (size_t i = 0; i < emitter.particles.size(); i++) { - if (!emitter.particles[i].active) { - emitter.particles[i].reset(emitter.end_lifespan, initial_position, - initial_velocity); - break; - } - } -} |