X-Git-Url: https://git.localhorst.tv/?a=blobdiff_plain;f=src%2Fmap%2FMapState.cpp;h=162db8b216186731f8852c0a4e9cc10bf7bbd128;hb=d969efe468d2d9775ab2c5388be1cde8efa0b9ad;hp=b529e216541ac3894ee574bb4460cee4a8e06595;hpb=a1c89e41e38eca790e168b8acd3beee974685fcd;p=l2e.git diff --git a/src/map/MapState.cpp b/src/map/MapState.cpp index b529e21..162db8b 100644 --- a/src/map/MapState.cpp +++ b/src/map/MapState.cpp @@ -71,53 +71,69 @@ void MapState::HandleEvents(const Input &input) { void MapState::UpdateWorld(float deltaT) { if (controlled && controlled->TileLock(map->Tileset()->Width(), map->Tileset()->Height())) { - Vector nowLock(controlled->Position()); - if (nowLock != lastLock) { - OnGridLock(); + OnTileLock(); + } + for (std::vector::iterator i(entities.begin()), end(entities.end()); i != end; ++i) { + (*i)->Update(deltaT); + } +} + +void MapState::OnTileLock() { + if (moveTimer.Running() && !moveTimer.JustHit()) return; + + Vector nowLock(controlled->Position()); + if (nowLock != lastLock) { + OnGridLock(); + afterLock = true; + moveTimer.Clear(); + } else if (moveTimer.JustHit()) { + OnGridLock(); + afterLock = true; + } + + if (nextDirection >= 0) { + if (afterLock) { + // FIXME: this check is unreliable, see #21 + OnMove(); + afterLock = false; } - if (nextDirection >= 0) { - if (afterLock) { - // FIXME: this check is unreliable, see #21 - OnMove(); - afterLock = false; - } - controlled->SetOrientation(Entity::Orientation(nextDirection)); - const Tile &tile(map->TileAt(controlled->Position())); - bool blocked(false); - switch (controlled->GetOrientation()) { - case Entity::ORIENTATION_NORTH: - blocked = tile.BlocksNorth(); - break; - case Entity::ORIENTATION_EAST: - blocked = tile.BlocksEast(); - break; - case Entity::ORIENTATION_SOUTH: - blocked = tile.BlocksSouth(); - break; - case Entity::ORIENTATION_WEST: - blocked = tile.BlocksWest(); - break; - } - if (!blocked) { - controlled->SetSpeed(walkingSpeed); - } else { - controlled->SetSpeed(0.0f); - } - if (!controlled->AnimationRunning()) { - controlled->StartAnimation(*this); - } + controlled->SetOrientation(Entity::Orientation(nextDirection)); + const Tile &tile(map->TileAt(controlled->Position())); + bool blocked(false); + switch (controlled->GetOrientation()) { + case Entity::ORIENTATION_NORTH: + blocked = tile.BlocksNorth(); + break; + case Entity::ORIENTATION_EAST: + blocked = tile.BlocksEast(); + break; + case Entity::ORIENTATION_SOUTH: + blocked = tile.BlocksSouth(); + break; + case Entity::ORIENTATION_WEST: + blocked = tile.BlocksWest(); + break; + } + if (!blocked) { + controlled->SetSpeed(walkingSpeed); + moveTimer.Clear(); } else { controlled->SetSpeed(0.0f); - controlled->StopAnimation(); + if (!moveTimer.Running()) { + int tileSize((controlled->GetOrientation() % 2) ? map->Tileset()->Width() : map->Tileset()->Height()); + moveTimer = PhysicsTimers().StartInterval(tileSize/walkingSpeed); + } } - if (nowLock != lastLock) { - lastLock = nowLock; - afterLock = true; + if (!controlled->AnimationRunning()) { + controlled->StartAnimation(*this); } + } else { + controlled->SetSpeed(0.0f); + controlled->StopAnimation(); + moveTimer.Clear(); } - for (std::vector::iterator i(entities.begin()), end(entities.end()); i != end; ++i) { - (*i)->Update(deltaT); - } + + lastLock = nowLock; } void MapState::OnGridLock() {