]> git.localhorst.tv Git - l2e.git/blobdiff - src/map/MapState.h
added 500ms blackness between map transitions
[l2e.git] / src / map / MapState.h
index 2b530698ea48211fc5c08ed51e208a47bf45f4ea..dc352f69522636e5f2248076f6cddb59bea2a804 100644 (file)
@@ -42,14 +42,32 @@ public:
 
        void SetWalkingSpeed(float s) { walkingSpeed = s; }
 
+       void Transition(Map *, const geometry::Vector<int> &coordinates);
+
 private:
        static bool ZCompare(const Entity *lhs, const Entity *rhs);
+
+       void UnloadMap();
+       void LoadMap(Map *);
+
+       bool CheckBlocking() const;
+
+       void OnTileLock();
        void OnGridLock();
-       void OnMove();
+       void OnMove(bool);
+
+       void UpdateFollower(Entity &);
+       void StopFollowers(Entity &);
+
+       void LockEntities();
+       void CheckMonster();
+       void CheckTrigger();
 
 private:
+       app::Application *ctrl;
        Map *map;
        Entity *controlled;
+       app::Timer<float> moveTimer;
        geometry::Vector<float> tempTarget;
        geometry::Vector<int> lastLock;
        graphics::Camera camera;
@@ -57,6 +75,8 @@ private:
        float walkingSpeed;
        int nextDirection;
        bool afterLock;
+       bool skipLock;
+       bool debug;
 
 };