aboutsummaryrefslogtreecommitdiffstats
path: root/include/particle.hpp
diff options
context:
space:
mode:
authorClyne Sullivan <tullivan99@gmail.com>2017-01-06 15:57:35 -0500
committerClyne Sullivan <tullivan99@gmail.com>2017-01-06 15:57:35 -0500
commit81ffc208ba15e77c1771f798907ee7e2a6331b3d (patch)
tree6c7ad1011a7ea7d956a76c860d546317d4f418a3 /include/particle.hpp
parenta77877d65dfa1ee74407d94e221f2c737fdf20dd (diff)
explosions (crashes)
Diffstat (limited to 'include/particle.hpp')
-rw-r--r--include/particle.hpp13
1 files changed, 7 insertions, 6 deletions
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<ParticleSystem> {
@@ -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<vec2(void)> f);
+ void add(const vec2& pos, const ParticleType& type, const int& timeleft = 3000);
+ void addMultiple(const int& count, const ParticleType& type, std::function<vec2(void)> f, const int& timeleft = 3000);
void render(void) const;
void update(entityx::EntityManager &en, entityx::EventManager &ev, entityx::TimeDelta dt) override;