aboutsummaryrefslogtreecommitdiffstats
path: root/include/attack.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/attack.hpp')
-rw-r--r--include/attack.hpp16
1 files changed, 15 insertions, 1 deletions
diff --git a/include/attack.hpp b/include/attack.hpp
index 2074ac2..37025e1 100644
--- a/include/attack.hpp
+++ b/include/attack.hpp
@@ -4,7 +4,9 @@
#include <entityx/entityx.h>
#include <forward_list>
+#include <vector>
+#include <texture.hpp>
#include <vector2.hpp>
struct Attack {
@@ -13,6 +15,8 @@ struct Attack {
vec2 range;
vec2 vel; // TODO use
vec2 accel; // TODO use
+
+ TextureIterator effect;
};
struct AttackEvent {
@@ -27,8 +31,17 @@ struct AttackEvent {
class AttackSystem : public entityx::System<AttackSystem>, public entityx::Receiver<AttackSystem> {
private:
+ struct AttackAnimation {
+ vec2 pos;
+ TextureIterator effect;
+ unsigned int counter;
+
+ AttackAnimation(vec2 p, TextureIterator ti)
+ : pos(p), effect(ti), counter(0) {}
+ };
+
std::forward_list<AttackEvent> attacks;
-
+ static std::vector<AttackAnimation> effects;
public:
void configure(entityx::EventManager& ev) {
ev.subscribe<AttackEvent>(*this);
@@ -36,6 +49,7 @@ public:
void receive(const AttackEvent& ae);
void update(entityx::EntityManager& en, entityx::EventManager& ev, entityx::TimeDelta dt) override;
+ static void render(void);
};
#endif // ATTACK_HPP_