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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
|
#include <systems/movement.hpp>
#include <components/position.hpp>
#include <components/direction.hpp>
#include <components/solid.hpp>
#include <components/animate.hpp>
#include <components/sprite.hpp>
#include <components/aggro.hpp>
#include <components/dialog.hpp>
#include <thread>
#include <attack.hpp>
#include <events.hpp>
#include <player.hpp>
#include <ui.hpp>
void MovementSystem::update(entityx::EntityManager &en, entityx::EventManager &ev, entityx::TimeDelta dt)
{
//bool fight = false;
entityx::Entity toFight;
(void)ev;
en.each<Position, Direction>([&](entityx::Entity entity, Position &position, Direction &direction) {
position.x += HLINES(direction.x) * dt;
position.y += HLINES(direction.y) * dt;
if (entity.has_component<Animate>() && entity.has_component<Sprite>()) {
auto animate = entity.component<Animate>();
auto sprite = entity.component<Sprite>();
if (direction.x)
animate->updateAnimation(1, sprite->sprite, dt);
else
animate->firstFrame(1, sprite->sprite);
}
if (entity.has_component<Dialog>() && entity.component<Dialog>()->talking) {
direction.x = 0;
} else {
if (entity.has_component<Sprite>()) {
auto& fl = entity.component<Sprite>()->faceLeft;
if (direction.x != 0)
fl = (direction.x < 0);
}
auto ppos = PlayerSystem::getPosition();
if (ppos.x > position.x && ppos.x < position.x + entity.component<Solid>()->width) {
if (entity.has_component<Aggro>()) {
//auto dim = entity.component<Solid>();
//ev.emit<AttackEvent>(vec2(position.x + dim->width, position.y + dim->height), ATTACKKKKKK, false);
/*auto& h = entity.component<Health>()->health;
if (h > 0) {
fight = true;
toFight = entity;
h = 0;
}*/
} else if (entity.has_component<Trigger>()) {
static bool triggering = false;
if (!triggering) {
triggering = true;
std::thread([&](entityx::Entity e) {
UISystem::fadeToggle();
UISystem::waitForCover();
UISystem::dialogImportant(e.component<Trigger>()->text);
UISystem::waitForDialog();
UISystem::fadeToggle();
e.destroy();
triggering = false;
}, entity).detach();
}
return;
}
}
// make the entity wander
// TODO initialX and range?
if (entity.has_component<Wander>()) {
auto vel = entity.component<Wander>()->script();
direction.x = vel.x;
/*auto& countdown = entity.component<Wander>()->countdown;
if (countdown > 0) {
countdown--;
} else {
countdown = 5000 + randGet() % 10 * 100;
direction.x = (randGet() % 3 - 1) * 0.004f;
}*/
}
}
});
// if (fight) {
// UISystem::fadeToggleFast();
// UISystem::waitForCover();
//game::engine.getSystem<WorldSystem>()->fight(toFight);
// UISystem::fadeToggleFast();
// }
}
|