#include #include #include #include #include #include #include #include #include #include #include #include LuaScript MovementSystem::hitPlayer; Attack MovementSystem::playerAttack; int MovementSystem::doAttack(lua_State* s) { vec2 pos (lua_tonumber(s, 1), lua_tonumber(s, 2)); game::events.emit(AttackEvent(pos, playerAttack, false)); return 0; } void MovementSystem::update(entityx::EntityManager &en, entityx::EventManager &ev, entityx::TimeDelta dt) { //bool fight = false; entityx::Entity toFight; (void)ev; en.each([&](entityx::Entity entity, Position &position, Direction &direction) { position.x += HLINES(direction.x) * dt; position.y += HLINES(direction.y) * dt; if (entity.has_component() && entity.has_component()) { auto animate = entity.component(); auto sprite = entity.component(); if (direction.x) animate->updateAnimation(1, sprite->sprite, dt); else animate->firstFrame(1, sprite->sprite); } if (entity.has_component() && entity.component()->talking) { direction.x = 0; } else { if (entity.has_component()) { auto& fl = entity.component()->faceLeft; if (direction.x != 0) fl = (direction.x < 0); } auto ppos = PlayerSystem::getPosition(); if (ppos.x > position.x && ppos.x < position.x + entity.component()->width) { /*if (entity.has_component()) { //auto dim = entity.component(); //ev.emit(vec2(position.x + dim->width, position.y + dim->height), ATTACKKKKKK, false); auto& h = entity.component()->health; if (h > 0) { fight = true; toFight = entity; h = 0; } } else*/ if (entity.has_component()) { static bool triggering = false; if (!triggering) { triggering = true; std::thread([&](entityx::Entity e) { UISystem::fadeToggle(); UISystem::waitForCover(); UISystem::dialogImportant(e.component()->text); UISystem::waitForDialog(); UISystem::fadeToggle(); e.destroy(); triggering = false; }, entity).detach(); } return; } } // make the entity wander // TODO initialX and range? if (entity.has_component()) { auto dim = entity.component(); 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", self.x), LuaVariable("selfy", self.y), LuaVariable("aggro", aggro) }; bool hasAggro = entity.has_component(); if (hasAggro) aggro = entity.component()->yes ? 1 : 0; if (aggro) entity.component()->script.addFunction("attack", doAttack); entity.component()->script(aggro ? "hostile" : "update", vars); if (hasAggro) entity.component()->yes = aggro > 0 ? 1 : 0; position.x = self.x - dim->width / 2; position.y = self.y - dim->height / 2; } } }); // if (fight) { // UISystem::fadeToggleFast(); // UISystem::waitForCover(); //game::engine.getSystem()->fight(toFight); // UISystem::fadeToggleFast(); // } }