diff options
Diffstat (limited to 'include/systems/light.hpp')
-rw-r--r-- | include/systems/light.hpp | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/include/systems/light.hpp b/include/systems/light.hpp new file mode 100644 index 0000000..71c541a --- /dev/null +++ b/include/systems/light.hpp @@ -0,0 +1,34 @@ +#ifndef SYSTEM_LIGHT_HPP_ +#define SYSTEM_LIGHT_HPP_ + +#include <color.hpp> +#include <render.hpp> +#include <vector2.hpp> + +#include <entityx/entityx.h> +#include <vector> + +struct Light { + vec2 pos; + float radius; + Color color; + + Light(vec2 p = vec2(), float r = 0, Color c = Color()) + : pos(p), radius(r), color(c) {} +}; + +class LightSystem : public entityx::System<LightSystem> { +private: + static std::vector<Light> lights; + +public: + void update(entityx::EntityManager& en, entityx::EventManager& ev, entityx::TimeDelta dt) override; + + static void render(void); + + static int addLight(vec2 pos, float radius, Color color = Color(1, 1, 1)); + static void updateLight(int index, vec2 pos, float radius = -1); + static void removeLight(int index); +}; + +#endif // SYSTEM_LIGHT_HPP_ |