]> git.localhorst.tv Git - l2e.git/blobdiff - src/map/Entity.h
implemented followers
[l2e.git] / src / map / Entity.h
index fd91f3eeb5ce2114a578ba6b9ffdfb61da02a774..12f22c947aae0c903a2468382c0261217ae76456 100644 (file)
@@ -23,6 +23,14 @@ public:
        Entity();
        ~Entity() { }
 
+public:
+       enum Orientation {
+               ORIENTATION_NORTH = 0,
+               ORIENTATION_EAST = 1,
+               ORIENTATION_SOUTH = 2,
+               ORIENTATION_WEST = 3,
+       };
+
 public:
        geometry::Vector<float> &Position() { return position; }
        const geometry::Vector<float> &Position() const { return position; }
@@ -30,19 +38,42 @@ public:
        geometry::Vector<float> &Velocity() { return velocity; }
        const geometry::Vector<float> &Velocity() const { return velocity; }
 
-       void SetSprite(const graphics::Sprite *s) { sprite = s; }
-       graphics::AnimationRunner &Animation() { return animation; }
-       const graphics::AnimationRunner &Animation() const { return animation; }
+       geometry::Vector<float> &SpriteOffset() { return spriteOffset; }
+       const geometry::Vector<float> &SpriteOffset() const { return spriteOffset; }
+
+       void SetAnimation(const graphics::Animation *a);
+       void StartAnimation(app::Application &ctrl);
+       void StartAnimation(app::State &ctrl);
+       void StopAnimation();
+       bool AnimationRunning() const { return runner.Running(); }
+
+       void SetOrientation(Orientation);
+       Orientation GetOrientation() const { return orientation; }
+       void SetSpeed(float);
+
+       Entity *Follower() { return follower; }
+       const Entity *Follower() const { return follower; }
+       void AddFollower(Entity *);
+       void RemoveFollower(Entity *);
+
+       bool TileLock(const geometry::Vector<int> &tileSize) const;
 
        void Update(float deltaT);
 
        void Render(SDL_Surface *, const geometry::Vector<int> &offset) const;
 
 private:
-       const graphics::Sprite *sprite;
-       graphics::AnimationRunner animation;
+       void UpdateVelocity();
+
+private:
+       Entity *follower;
+       const graphics::Animation *animation;
+       graphics::AnimationRunner runner;
+       geometry::Vector<float> spriteOffset;
        geometry::Vector<float> position;
        geometry::Vector<float> velocity;
+       Orientation orientation;
+       float speed;
 
 };