]> git.localhorst.tv Git - l2e.git/blobdiff - src/map/Entity.h
added tile ladder flag
[l2e.git] / src / map / Entity.h
index 13044880121569cfa54c1ef4f7ce34dbc6a64457..44ba00f682c8eff04e574be39141dfe89902393b 100644 (file)
@@ -80,12 +80,17 @@ public:
        /// west sprites at offsets (0,0), (1,0), (2,0), and (3,0) respectively.
        void SetSprite(const graphics::Sprite *s) { sprite = s; }
 
-       /// Change the entity's orientation to given one.
-       /// If the entity is moving, velocity is changed accordingly.
+       /// Change the entity's facing direction.
+       /// If the entity is moving, velocity is untouched.
        void SetOrientation(Orientation);
        Orientation GetOrientation() const { return orientation; }
+       /// Change the entity's orientation to given one.
+       /// If the entity is moving, velocity is changed accordingly.
+       /// Also changes the orientation to given direction.
+       void SetDirection(Orientation);
+       Orientation GetDirection() const { return direction; }
        /// Set the entity's speed in pixels per second.
-       /// This speed is then combined with the orientation to form a velocity.
+       /// This speed is then combined with the direction to form a velocity.
        void SetSpeed(math::Fixed<8>);
 
        /// Change to a natural, relaxed animation state (row offset 0).
@@ -157,6 +162,7 @@ private:
        math::Vector<int> tilePosition;
        math::Vector<math::Fixed<8> > position;
        math::Vector<math::Fixed<8> > velocity;
+       Orientation direction;
        Orientation orientation;
        math::Fixed<8> speed;
        int flags;