X-Git-Url: http://git.localhorst.tv/?a=blobdiff_plain;f=src%2Fmap%2FMapState.cpp;h=162db8b216186731f8852c0a4e9cc10bf7bbd128;hb=d969efe468d2d9775ab2c5388be1cde8efa0b9ad;hp=9a94731cd201c41eeaecd41731032b3245051e6b;hpb=3565d69c463c39b05b4612ca3d3557139d91e310;p=l2e.git diff --git a/src/map/MapState.cpp b/src/map/MapState.cpp index 9a94731..162db8b 100644 --- a/src/map/MapState.cpp +++ b/src/map/MapState.cpp @@ -20,12 +20,14 @@ using geometry::Vector; namespace map { -MapState::MapState(const Map *map) +MapState::MapState(Map *map) : map(map) , controlled(0) , tempTarget(20, 20) , camera(100, 100, &tempTarget) -, walkingSpeed(64) { +, walkingSpeed(64) +, nextDirection(-1) +, afterLock(false) { } @@ -53,24 +55,49 @@ void MapState::Resize(int width, int height) { void MapState::HandleEvents(const Input &input) { if (!controlled) return; - if (!controlled->TileLock(map->Tileset()->Width(), map->Tileset()->Height())) return; - bool down(false); if (input.IsDown(Input::PAD_UP)) { - controlled->SetOrientation(Entity::ORIENTATION_NORTH); - down = true; + nextDirection = Entity::ORIENTATION_NORTH; } else if (input.IsDown(Input::PAD_RIGHT)) { - controlled->SetOrientation(Entity::ORIENTATION_EAST); - down = true; + nextDirection = Entity::ORIENTATION_EAST; } else if (input.IsDown(Input::PAD_DOWN)) { - controlled->SetOrientation(Entity::ORIENTATION_SOUTH); - down = true; + nextDirection = Entity::ORIENTATION_SOUTH; } else if (input.IsDown(Input::PAD_LEFT)) { - controlled->SetOrientation(Entity::ORIENTATION_WEST); - down = true; + nextDirection = Entity::ORIENTATION_WEST; + } else { + nextDirection = -1; + } +} + +void MapState::UpdateWorld(float deltaT) { + if (controlled && controlled->TileLock(map->Tileset()->Width(), map->Tileset()->Height())) { + 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 (down) { + 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()) { @@ -89,20 +116,49 @@ void MapState::HandleEvents(const Input &input) { } if (!blocked) { controlled->SetSpeed(walkingSpeed); + moveTimer.Clear(); } else { controlled->SetSpeed(0.0f); + if (!moveTimer.Running()) { + int tileSize((controlled->GetOrientation() % 2) ? map->Tileset()->Width() : map->Tileset()->Height()); + moveTimer = PhysicsTimers().StartInterval(tileSize/walkingSpeed); + } + } + if (!controlled->AnimationRunning()) { + controlled->StartAnimation(*this); } } else { controlled->SetSpeed(0.0f); + controlled->StopAnimation(); + moveTimer.Clear(); } + + lastLock = nowLock; } -void MapState::UpdateWorld(float deltaT) { - for (std::vector::iterator i(entities.begin()), end(entities.end()); i != end; ++i) { - (*i)->Update(deltaT); +void MapState::OnGridLock() { + Trigger *trigger(map->TriggerAt(Vector(controlled->Position()))); + if (trigger) { + // TODO: run trigger } + // TODO: check for adjacent monsters + // TODO: force all entities into their grid positions? } +void MapState::OnMove() { + // TODO: evaluate monster movements + UpdateFollower(controlled); +} + +void MapState::UpdateFollower(Entity *e) { + if (!e->Follower()) return; + UpdateFollower(e->Follower()); + + e->Follower()->SetOrientation(e->GetOrientation()); + // TODO: set follower speed +} + + void MapState::Render(SDL_Surface *screen) { SDL_FillRect(screen, 0, SDL_MapRGB(screen->format, 0, 0, 0));