]> git.localhorst.tv Git - l2e.git/blobdiff - src/map/MapState.h
implemented followers
[l2e.git] / src / map / MapState.h
index 86e2813576e3c4dddcf369c8a7783233add271d6..f4da5ce839e0d4c1c98692df38be7f703f65e1b7 100644 (file)
@@ -22,7 +22,7 @@ class MapState
 : public app::State {
 
 public:
-       explicit MapState(const Map *);
+       explicit MapState(Map *);
        virtual ~MapState() { }
 
 public:
@@ -44,15 +44,26 @@ public:
 
 private:
        static bool ZCompare(const Entity *lhs, const Entity *rhs);
+       void OnTileLock();
+       void OnGridLock();
+       void OnMove(bool);
+
+       void UpdateFollower(Entity &);
+       void StopFollowers(Entity &);
+
+       void LockEntities();
 
 private:
-       const Map *map;
+       Map *map;
        Entity *controlled;
+       app::Timer<float> moveTimer;
        geometry::Vector<float> tempTarget;
+       geometry::Vector<int> lastLock;
        graphics::Camera camera;
        std::vector<Entity *> entities;
        float walkingSpeed;
        int nextDirection;
+       bool afterLock;
 
 };