From 81ffc208ba15e77c1771f798907ee7e2a6331b3d Mon Sep 17 00:00:00 2001 From: Clyne Sullivan Date: Fri, 6 Jan 2017 15:57:35 -0500 Subject: explosions (crashes) --- include/particle.hpp | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) (limited to 'include/particle.hpp') diff --git a/include/particle.hpp b/include/particle.hpp index d9aa29f..4d42b39 100644 --- a/include/particle.hpp +++ b/include/particle.hpp @@ -9,7 +9,8 @@ enum class ParticleType : char { Drop, - Confetti + Confetti, + SmallBlast }; struct Particle { @@ -18,8 +19,8 @@ struct Particle { ParticleType type; int timeLeft; - Particle(vec2 p, ParticleType t = ParticleType::Drop) - : location(p), type(t), timeLeft(3000) {} // TODO times + Particle(vec2 p, ParticleType t = ParticleType::Drop, int tl = 3000) + : location(p), type(t), timeLeft(tl) {} // TODO times } __attribute__ ((packed)); class ParticleSystem : public entityx::System { @@ -28,10 +29,10 @@ private: bool max; public: - ParticleSystem(int count = 1024, bool m = false); + ParticleSystem(int count = 2048, bool m = false); - void add(const vec2& pos, const ParticleType& type); - void addMultiple(const int& count, const ParticleType& type, std::function f); + void add(const vec2& pos, const ParticleType& type, const int& timeleft = 3000); + void addMultiple(const int& count, const ParticleType& type, std::function f, const int& timeleft = 3000); void render(void) const; void update(entityx::EntityManager &en, entityx::EventManager &ev, entityx::TimeDelta dt) override; -- cgit v1.2.3