blob: 226fe2f5911b14da8b0e81e45eaab1e306d47600 (
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
|
#include <attack.hpp>
#include <components.hpp>
#include <engine.hpp>
#include <particle.hpp>
constexpr int shortSlashLength = 100;
constexpr int longSlashLength = 200;
// math helpers because we don't trust stdlib
template<typename T>
inline T abs(const T& n) {
static_assert(std::is_arithmetic<T>::value, "abs expects numbers");
return n >= 0 ? n : -n;
}
void AttackSystem::receive(const AttackEvent& ae)
{
attacks.emplace_front(ae);
}
void AttackSystem::update(entityx::EntityManager& en, entityx::EventManager& ev, entityx::TimeDelta dt)
{
(void)en;
(void)ev;
(void)dt;
for (const auto& a : attacks) {
switch (a.type) {
case AttackType::ShortSlash:
en.each<Position, Solid, Health>(
[&a](entityx::Entity e, Position& pos, Solid& dim, Health& h) {
(void)e;
if (e.has_component<Player>())
return;
vec2 eloc (pos.x + dim.width / 2, pos.y + dim.height / 2);
if (abs(eloc.x - a.pos.x) <= shortSlashLength) {
h.health -= a.power;
game::engine.getSystem<ParticleSystem>()->addMultiple(10, ParticleType::SmallBlast,
[&](){ return eloc; }, 500, 7);
}
}
);
break;
case AttackType::LongSlash:
break;
default:
break;
}
}
attacks.clear();
}
|