#ifndef ATTACK_HPP_ #define ATTACK_HPP_ #include #include #include #include #include #include struct Attack { vec2 offset; vec2 range; vec2 vel; // TODO use vec2 accel; // TODO use LuaScript script; TextureIterator effect; }; struct AttackEvent { AttackEvent(vec2 p, Attack at, bool fp) : pos(p), attack(at), fromplayer(fp) {} vec2 pos; Attack attack; bool fromplayer; }; class AttackSystem : public entityx::System, public entityx::Receiver { private: struct AttackAnimation { vec2 pos; TextureIterator effect; unsigned int counter; AttackAnimation(vec2 p, TextureIterator ti) : pos(p), effect(ti), counter(0) {} }; std::forward_list attacks; static std::vector effects; public: void configure(entityx::EventManager& ev) { ev.subscribe(*this); } bool receive(const AttackEvent& ae); void update(entityx::EntityManager& en, entityx::EventManager& ev, entityx::TimeDelta dt) override; static void render(void); static void initLua(LuaScript& s); }; #endif // ATTACK_HPP_