blob: 941e3d75f72d6d7fcd925b8164e50103dd67c5b9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
#ifndef ATTACK_HPP_
#define ATTACK_HPP_
#include <entityx/entityx.h>
#include <forward_list>
#include <vector>
#include <texture.hpp>
#include <vector2.hpp>
struct Attack {
int power;
vec2 offset;
vec2 range;
vec2 vel; // TODO use
vec2 accel; // TODO use
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<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);
}
bool receive(const AttackEvent& ae);
void update(entityx::EntityManager& en, entityx::EventManager& ev, entityx::TimeDelta dt) override;
static void render(void);
};
#endif // ATTACK_HPP_
|