]> git.localhorst.tv Git - l2e.git/blobdiff - src/map/MapState.h
extracted map loading/unloading
[l2e.git] / src / map / MapState.h
index e7a75b6fca784f5dfb04c9a2b64154938a36dfbf..0e49100e3b305b6e458123af8060986fd4b76958 100644 (file)
@@ -42,9 +42,14 @@ 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();
@@ -69,6 +74,8 @@ private:
        float walkingSpeed;
        int nextDirection;
        bool afterLock;
+       bool skipLock;
+       bool debug;
 
 };