]> git.localhorst.tv Git - l2e.git/blobdiff - src/graphics/Animation.h
added sprite accessors to Animation
[l2e.git] / src / graphics / Animation.h
index 55a16d99034fb70a30323ed6506514c67cebdfe0..03ead7fc5fc3cb75cc293b8c8fd55c135eb7af2a 100644 (file)
@@ -24,9 +24,9 @@ class Animation {
 
 public:
        Animation()
-       : sprite(0), frameTime(0), repeat(false) { }
+       : sprite(0), frameTime(0), colOffset(0), rowOffset(0), repeat(false) { }
        Animation(const Sprite *sprite, int frameTime, bool repeat = false)
-       : sprite(sprite), frameTime(frameTime), repeat(repeat) { }
+       : sprite(sprite), frameTime(frameTime), colOffset(0), rowOffset(0), repeat(repeat) { }
        virtual ~Animation() { };
 
 public:
@@ -42,8 +42,17 @@ public:
        bool Running() const {
                return timer.Running() && (repeat || timer.Iteration() < NumFrames());
        }
+
+       void SetColOffset(int offset) { colOffset = offset; }
+       int ColOffset() const { return colOffset; }
+       void SetRowOffset(int offset) { rowOffset = offset; }
+       int RowOffset() const { return rowOffset; }
+
+       const Sprite *GetSprite() const { return sprite; }
+       void ChangeSprite(const Sprite *s) { sprite = s; }
+
        virtual void Draw(SDL_Surface *dest, geometry::Point<int> position) const {
-               sprite->Draw(dest, position, Col(), Row());
+               sprite->Draw(dest, position, Col() + ColOffset(), Row() + RowOffset());
        }
        void DrawTopRight(SDL_Surface *dest, geometry::Point<int> position) const {
                geometry::Vector<int> offset(-sprite->Width(), 0);
@@ -68,6 +77,8 @@ private:
        const Sprite *sprite;
        app::Timer<Uint32> timer;
        int frameTime;
+       int colOffset;
+       int rowOffset;
        bool repeat;
 
 };