From 3da25ab8c6ad1b52b808bfeffc0ad1b32621cfac Mon Sep 17 00:00:00 2001 From: Clyne Sullivan Date: Sat, 14 Jan 2017 09:56:58 -0500 Subject: particle improvements, inventory start --- src/particle.cpp | 48 +++++++++++++++++++++++++----------------------- 1 file changed, 25 insertions(+), 23 deletions(-) (limited to 'src/particle.cpp') diff --git a/src/particle.cpp b/src/particle.cpp index 2d92409..198387c 100644 --- a/src/particle.cpp +++ b/src/particle.cpp @@ -91,52 +91,54 @@ void ParticleSystem::update(entityx::EntityManager &en, entityx::EventManager &e auto& p = parts[i]; // update timers - p.timeLeft -= dt; + if (p.timeLeft > 0) + p.timeLeft -= dt; + else + continue; // update movement + auto& vel = p.velocity; switch (p.type) { case ParticleType::Drop: - if (p.velocity.y > -.6) - p.velocity.y -= 0.001f; + if (vel.y > -.6) + vel.y -= 0.001f; break; case ParticleType::Confetti: - if (p.velocity.x > -0.01 && p.velocity.x < 0.01) { - p.velocity.x = randGet() % 12 / 30.0f - 0.2f; + if (vel.x > -0.01 && vel.x < 0.01) { + vel.x = randGet() % 12 / 30.0f - 0.2f; + vel.y = -0.15f; } else { - p.velocity.x += (p.velocity.x > 0) ? -0.002f : 0.002f; + vel.x += (vel.x > 0) ? -0.002f : 0.002f; } - p.velocity.y = -0.15f; - p.timeLeft = 1000; break; case ParticleType::SmallBlast: - if (p.velocity.x == 0) { + if (vel.x == 0) { int degree = randGet() % 100; - p.velocity.x = cos(degree) / 4.0f; - p.velocity.y = sin(degree) / 4.0f; + vel.x = cos(degree) / 4.0f; + vel.y = sin(degree) / 4.0f; } else { - p.velocity.x += (p.velocity.x > 0) ? -0.001f : 0.001f; - p.velocity.y += (p.velocity.y > 0) ? -0.001f : 0.001f; - if ((p.velocity.x > -0.01 && p.velocity.x < 0.01) && - (p.velocity.y > -0.01 && p.velocity.y < 0.01)) { + vel.x += (vel.x > 0) ? -0.001f : 0.001f; + vel.y += (vel.y > 0) ? -0.001f : 0.001f; + if ((vel.x > -0.01 && vel.x < 0.01) && + (vel.y > -0.01 && vel.y < 0.01)) { p.timeLeft = 0; } } - break; case ParticleType::SmallPoof: - if (p.velocity.x == 0) { - p.velocity.y = 0.1f; - p.velocity.x = randGet() % 10 / 20.0f - 0.25f; + if (vel.x == 0) { + vel.y = 0.1f; + vel.x = randGet() % 10 / 20.0f - 0.25f; } else { - p.velocity.x += (p.velocity.x > 0) ? -0.001f : 0.001f; - p.velocity.y -= 0.0015f; + vel.x += (vel.x > 0) ? -0.001f : 0.001f; + vel.y -= 0.0015f; } break; } // really update movement - p.location.x += p.velocity.x * dt; - p.location.y += p.velocity.y * dt; + p.location.x += vel.x * dt; + p.location.y += vel.y * dt; // world collision auto height = worldSystem.isAboveGround(p.location); -- cgit v1.2.3