aboutsummaryrefslogtreecommitdiffstats
path: root/src/components.cpp
diff options
context:
space:
mode:
authorClyne Sullivan <tullivan99@gmail.com>2017-02-13 20:20:38 -0500
committerClyne Sullivan <tullivan99@gmail.com>2017-02-13 20:20:38 -0500
commit29876964587eda6e4d4bfc6543ea31efe983cf0a (patch)
tree29e7e626bbfc7b6d1a26d788d710c7908048be92 /src/components.cpp
parent183331ccf1aa3f4142697e9e37528f084fae7466 (diff)
base component class; skirl fight plus
Diffstat (limited to 'src/components.cpp')
-rw-r--r--src/components.cpp20
1 files changed, 11 insertions, 9 deletions
diff --git a/src/components.cpp b/src/components.cpp
index a66a1db..19ba0fb 100644
--- a/src/components.cpp
+++ b/src/components.cpp
@@ -22,10 +22,11 @@ static std::vector<std::string> randomDialog (readFileA("assets/dialog_en-us"));
void MovementSystem::update(entityx::EntityManager &en, entityx::EventManager &ev, entityx::TimeDelta dt)
{
- std::string arena;
+ bool fight = false;
+ entityx::Entity toFight;
(void)ev;
- en.each<Position, Direction>([&arena, dt](entityx::Entity entity, Position &position, Direction &direction) {
+ en.each<Position, Direction>([&](entityx::Entity entity, Position &position, Direction &direction) {
position.x += direction.x * dt;
position.y += direction.y * dt;
@@ -52,11 +53,12 @@ void MovementSystem::update(entityx::EntityManager &en, entityx::EventManager &e
if (entity.has_component<Aggro>()) {
auto ppos = game::engine.getSystem<PlayerSystem>()->getPosition();
if (ppos.x > position.x && ppos.x < position.x + entity.component<Solid>()->width) {
- auto& h = entity.component<Health>()->health;
- if (h > 0) {
- arena = entity.component<Aggro>()->arena;
- h = 0;
- }
+ //auto& h = entity.component<Health>()->health;
+ //if (h > 0) {
+ fight = true;
+ toFight = entity;
+ // h = 0;
+ //}
} else
direction.x = (ppos.x > position.x) ? .05 : -.05;
} else if (entity.has_component<Wander>()) {
@@ -72,10 +74,10 @@ void MovementSystem::update(entityx::EntityManager &en, entityx::EventManager &e
}
});
- if (!arena.empty()) {
+ if (fight) {
ui::toggleWhiteFast();
ui::waitForCover();
- game::engine.getSystem<WorldSystem>()->load(arena);
+ game::engine.getSystem<WorldSystem>()->fight(toFight);
ui::toggleWhiteFast();
}
}