blob: 2074ac25f005914a1d1137741de53ec397ded0f4 (
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
|
#ifndef ATTACK_HPP_
#define ATTACK_HPP_
#include <entityx/entityx.h>
#include <forward_list>
#include <vector2.hpp>
struct Attack {
int power;
vec2 offset;
vec2 range;
vec2 vel; // TODO use
vec2 accel; // TODO use
};
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:
std::forward_list<AttackEvent> attacks;
public:
void configure(entityx::EventManager& ev) {
ev.subscribe<AttackEvent>(*this);
}
void receive(const AttackEvent& ae);
void update(entityx::EntityManager& en, entityx::EventManager& ev, entityx::TimeDelta dt) override;
};
#endif // ATTACK_HPP_
|