From efcf1a88cd0d0bee3973705b5975827be97f5a3a Mon Sep 17 00:00:00 2001 From: Clyne Sullivan Date: Fri, 6 Jan 2017 08:51:53 -0500 Subject: particles, rain --- include/particle.hpp | 42 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 include/particle.hpp (limited to 'include/particle.hpp') diff --git a/include/particle.hpp b/include/particle.hpp new file mode 100644 index 0000000..d9aa29f --- /dev/null +++ b/include/particle.hpp @@ -0,0 +1,42 @@ +#ifndef PARTICLE_HPP_ +#define PARTICLE_HPP_ + +#include + +#include + +#include + +enum class ParticleType : char { + Drop, + Confetti +}; + +struct Particle { + vec2 location; + vec2 velocity; + ParticleType type; + int timeLeft; + + Particle(vec2 p, ParticleType t = ParticleType::Drop) + : location(p), type(t), timeLeft(3000) {} // TODO times +} __attribute__ ((packed)); + +class ParticleSystem : public entityx::System { +private: + std::vector parts; + bool max; + +public: + ParticleSystem(int count = 1024, bool m = false); + + void add(const vec2& pos, const ParticleType& type); + void addMultiple(const int& count, const ParticleType& type, std::function f); + + void render(void) const; + void update(entityx::EntityManager &en, entityx::EventManager &ev, entityx::TimeDelta dt) override; + + int getCount(void) const; +}; + +#endif // PARTICLE_HPP_ -- cgit v1.2.3