X-Git-Url: http://git.localhorst.tv/?a=blobdiff_plain;f=src%2Fmap%2FMapState.h;h=09ba35780b74f8dbb70ea52afb00c757bbd82b12;hb=4309d259becd96ead792678257e910c03a6b4a3d;hp=96a5c22bec22a7cf9a9198ea215568193e74066a;hpb=dc7b19b8d0be4aff410f9c4514c742fe28b25ff4;p=l2e.git diff --git a/src/map/MapState.h b/src/map/MapState.h index 96a5c22..09ba357 100644 --- a/src/map/MapState.h +++ b/src/map/MapState.h @@ -1,45 +1,105 @@ -/* - * MapState.h - * - * Created on: Sep 29, 2012 - * Author: holy - */ - #ifndef MAP_MAPSTATE_H_ #define MAP_MAPSTATE_H_ -#include "fwd.h" +namespace common { + struct GameConfig; +} +namespace map { + class Map; + class Trigger; +} + +#include "Entity.h" #include "../app/State.h" -#include "../geometry/Vector.h" +#include "../common/ScriptHost.h" +#include "../common/ScriptRunner.h" +#include "../math/Fixed.h" +#include "../math/Vector.h" #include "../graphics/Camera.h" +#include + namespace map { +/// Shows a map and its entities an optionally control a single entity. class MapState -: public app::State { +: public app::State +, public common::ScriptHost { public: - explicit MapState(const Map *); + explicit MapState(common::GameConfig *, Map *); virtual ~MapState() { } public: - virtual void EnterState(app::Application &ctrl, SDL_Surface *screen); - virtual void ExitState(app::Application &ctrl, SDL_Surface *screen); - virtual void ResumeState(app::Application &ctrl, SDL_Surface *screen); - virtual void PauseState(app::Application &ctrl, SDL_Surface *screen); - virtual void Resize(int width, int height); - virtual void HandleEvents(const app::Input &); - virtual void UpdateWorld(float deltaT); + virtual void UpdateWorld(Uint32 deltaT); virtual void Render(SDL_Surface *); +public: + void AddEntity(Entity *e) { entities.push_back(e); } + void ControlEntity(Entity *e) { controlled = e; camera.SetTarget(&e->Position()); } + + void SetWalkingSpeed(math::Fixed<8> s) { walkingSpeed = s; } + + void Transition(Map *, const math::Vector &coordinates); + + virtual void HandleSyscall(common::ScriptRunner &); + +private: + virtual void OnEnterState(SDL_Surface *screen); + virtual void OnExitState(SDL_Surface *screen); + virtual void OnResumeState(SDL_Surface *screen); + virtual void OnPauseState(SDL_Surface *screen); + + virtual void OnResize(int width, int height); + +private: + static bool ZCompare(const Entity *lhs, const Entity *rhs); + + void UnloadMap(); + void LoadMap(Map *); + + bool CheckBlocking(); + bool CheckBlocking(const math::Vector &position, Entity::Orientation direction) const; + + void OnTileLock(); + bool OnGridLock(); + void OnMove(bool); + + void UpdateFollower(Entity &); + void StopFollowers(Entity &); + + void LockEntities(); + bool CheckMonster(); + + bool CheckLockTrigger(); + bool CheckMoveTrigger(); + void RunTrigger(Trigger &); + + enum Syscalls { + TRANSITION = 1, + WARP = 2, + }; + private: - const Map *map; - geometry::Vector tempTarget; + common::GameConfig *game; + Map *map; + Entity *controlled; + Entity *pushed; + common::ScriptRunner runner; + app::Timer moveTimer; + math::Vector lastLock; graphics::Camera camera; + std::vector entities; + math::Fixed<8> walkingSpeed; + int nextDirection; + bool afterLock; + bool skipLock; + bool pushing; + bool debug; }; } -#endif /* MAP_MAPSTATE_H_ */ +#endif