diff options
author | Clyne Sullivan <tullivan99@gmail.com> | 2017-10-17 18:21:38 -0400 |
---|---|---|
committer | Clyne Sullivan <tullivan99@gmail.com> | 2017-10-17 18:21:38 -0400 |
commit | 03246da32a8452e6a76ccf2f7f97cda4472d1d29 (patch) | |
tree | fe69406b677e574365d14099e3d1cd69bde586ed /src/systems | |
parent | 2bd1eaef1b9ec848933a40049ec8866e2b83a47d (diff) |
skirl hostility
Diffstat (limited to 'src/systems')
-rw-r--r-- | src/systems/movement.cpp | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/src/systems/movement.cpp b/src/systems/movement.cpp index 73e5113..642fa6a 100644 --- a/src/systems/movement.cpp +++ b/src/systems/movement.cpp @@ -87,14 +87,16 @@ void MovementSystem::update(entityx::EntityManager &en, entityx::EventManager &e // make the entity wander // TODO initialX and range? if (entity.has_component<Wander>()) { + auto dim = entity.component<Solid>(); float aggro = 0; + vec2 self (position.x + dim->width / 2, position.y + dim->height / 2); LuaList vars = { LuaVariable("vely", direction.y), LuaVariable("velx", direction.x), LuaVariable("playerx", ppos.x), LuaVariable("playery", ppos.y), - LuaVariable("selfx", position.x), - LuaVariable("selfy", position.y), + LuaVariable("selfx", self.x), + LuaVariable("selfy", self.y), LuaVariable("aggro", aggro) }; @@ -106,6 +108,9 @@ void MovementSystem::update(entityx::EntityManager &en, entityx::EventManager &e entity.component<Wander>()->script(aggro ? "hostile" : "update", vars); if (hasAggro) entity.component<Aggro>()->yes = aggro > 0 ? 1 : 0; + + position.x = self.x - dim->width / 2; + position.y = self.y - dim->height / 2; } } }); |