X-Git-Url: http://git.localhorst.tv/?a=blobdiff_plain;f=src%2Fgraphics%2FAnimation.h;h=ee62493b18f54c623c729d52c450ec046b027993;hb=63e55846d4043f96ee1bdb95f0631b07d5f57c28;hp=0baba35d915e2ee91754a64a7028a5bb2a82a4e3;hpb=7d27966b2b6fa73c8491130c65cf03929c225960;p=l2e.git diff --git a/src/graphics/Animation.h b/src/graphics/Animation.h index 0baba35..ee62493 100644 --- a/src/graphics/Animation.h +++ b/src/graphics/Animation.h @@ -12,12 +12,15 @@ #include "../app/Application.h" #include "../app/State.h" #include "../app/Timer.h" -#include "../geometry/operators.h" -#include "../geometry/Point.h" #include "../geometry/Vector.h" +#include #include +namespace loader { + class TypeDescription; +} + namespace graphics { class Animation { @@ -30,17 +33,24 @@ public: virtual ~Animation() { }; public: - const Sprite *GetSprite() const { return sprite; } int FrameTime() const { return frameTime; } bool Repeat() const { return repeat; } +public: + void SetSprite(const Sprite *s) { sprite = s; } + void SetFrameTime(int t) { frameTime = t; } + void SetRepeat(bool r) { repeat = r; } + public: virtual int NumFrames() const = 0; virtual int Col(int frame) const = 0; virtual int Row(int frame) const = 0; virtual geometry::Vector Offset(int frame) const { return geometry::Vector(); } +protected: + static void AddFields(loader::TypeDescription &, const Animation &, std::ptrdiff_t offset); + private: const Sprite *sprite; int frameTime; @@ -91,18 +101,17 @@ public: void ChangeSprite(const Sprite *s) { sprite = s; } const Sprite *GetSprite() const { return sprite; } - void Draw(SDL_Surface *dest, geometry::Point position) const { + void Draw(SDL_Surface *dest, geometry::Vector position) const { sprite->Draw(dest, position + animation->Offset(Frame()), animation->Col(Frame()) + ColOffset(), animation->Row(Frame()) + RowOffset()); } - void DrawTopRight(SDL_Surface *dest, geometry::Point position) const { + void DrawTopRight(SDL_Surface *dest, geometry::Vector position) const { geometry::Vector offset(-sprite->Width(), 0); Draw(dest, position + offset); } - void DrawCenter(SDL_Surface *dest, geometry::Point position) const { - geometry::Vector offset(-sprite->Width() / 2, -sprite->Height() / 2); - Draw(dest, position + offset); + void DrawCenter(SDL_Surface *dest, geometry::Vector position) const { + Draw(dest, position - (sprite->Size() / 2)); } - void DrawCenterBottom(SDL_Surface *dest, geometry::Point position) const { + void DrawCenterBottom(SDL_Surface *dest, geometry::Vector position) const { geometry::Vector offset(-sprite->Width() / 2, -sprite->Height()); Draw(dest, position + offset); }