#include #include #include #include #include #include #include #include #include #include #include #include #include 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 vel = entity.component()->script(); direction.x = vel.x; /*auto& countdown = entity.component()->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()->fight(toFight); // UISystem::fadeToggleFast(); // } }