]> git.localhorst.tv Git - l2e.git/blob - src/graphics/Animation.h
changed how animation runners handle sprite overrides
[l2e.git] / src / graphics / Animation.h
1 /*
2  *  Animation.h
3  *
4  *  Created on: Aug 11, 2012
5  *      Author: holy
6  */
7
8 #ifndef GRAPHICS_ANIMATION_H_
9 #define GRAPHICS_ANIMATION_H_
10
11 #include "Sprite.h"
12 #include "../app/Application.h"
13 #include "../app/State.h"
14 #include "../app/Timer.h"
15 #include "../loader/fwd.h"
16 #include "../geometry/Vector.h"
17
18 #include <memory>
19 #include <SDL.h>
20
21 namespace graphics {
22
23 class Animation {
24
25 public:
26         Animation()
27         : sprite(0), frameTime(0), repeat(false) { }
28         Animation(const Sprite *sprite, int frameTime, bool repeat = false)
29         : sprite(sprite), frameTime(frameTime), repeat(repeat) { }
30         virtual ~Animation() { };
31
32 public:
33         const Sprite *GetSprite() const { return sprite; }
34         int FrameTime() const { return frameTime; }
35         bool Repeat() const { return repeat; }
36
37 public:
38         void SetSprite(const Sprite *s) { sprite = s; }
39         void SetFrameTime(int t) { frameTime = t; }
40         void SetRepeat(bool r) { repeat = r; }
41
42 public:
43         virtual int NumFrames() const = 0;
44         virtual int Col(int frame) const = 0;
45         virtual int Row(int frame) const = 0;
46         virtual geometry::Vector<int> Offset(int frame) const { return geometry::Vector<int>(); }
47
48 protected:
49         static void AddFields(loader::TypeDescription &, const Animation &, std::ptrdiff_t offset, int boolId, int numberId, int spriteId);
50
51 private:
52         const Sprite *sprite;
53         int frameTime;
54         bool repeat;
55
56 };
57
58
59 class AnimationRunner {
60
61 public:
62         explicit AnimationRunner(const Animation *a = 0, int colOffset = 0, int rowOffset = 0)
63         : animation(a), sprite(0), colOffset(colOffset), rowOffset(rowOffset) { }
64
65 public:
66         bool Valid() const { return animation; }
67         void Clear() { animation = 0; timer = app::Timer<Uint32>(); }
68
69         void Start(app::State &ctrl) {
70                 timer = ctrl.GraphicsTimers().StartInterval(animation->FrameTime());
71         }
72         void Start(app::Application &ctrl) {
73                 timer = ctrl.GlobalTimers().StartInterval(animation->FrameTime());
74         }
75         void Stop() {
76                 timer = app::Timer<Uint32>();
77         }
78         bool Started() const {
79                 return timer.Started();
80         }
81         bool Running() const {
82                 return timer.Running() && (animation->Repeat() || timer.Iteration() < animation->NumFrames());
83         }
84         bool Finished() const {
85                 return Started() && !Running();
86         }
87         bool JustFinished() const {
88                 return timer.JustHit() && timer.Iteration() == animation->NumFrames();
89         }
90
91         const app::Timer<Uint32> &GetTimer() { return timer; }
92
93         void SetColOffset(int offset) { colOffset = offset; }
94         int ColOffset() const { return colOffset; }
95         void SetRowOffset(int offset) { rowOffset = offset; }
96         int RowOffset() const { return rowOffset; }
97
98         void ChangeAnimation(const Animation *a) { animation = a; }
99         const Animation *GetAnimation() const { return animation; }
100
101         void ChangeSprite(const Sprite *s) { sprite = s; }
102         const Sprite *GetSprite() const { return sprite ? sprite : animation->GetSprite(); }
103
104         void Draw(SDL_Surface *dest, geometry::Vector<int> position) const {
105                 GetSprite()->Draw(dest, position + animation->Offset(Frame()), animation->Col(Frame()) + ColOffset(), animation->Row(Frame()) + RowOffset());
106         }
107         void DrawTopRight(SDL_Surface *dest, geometry::Vector<int> position) const {
108                 geometry::Vector<int> offset(-GetSprite()->Width(), 0);
109                 Draw(dest, position + offset);
110         }
111         void DrawCenter(SDL_Surface *dest, geometry::Vector<int> position) const {
112                 Draw(dest, position - (GetSprite()->Size() / 2));
113         }
114         void DrawCenterBottom(SDL_Surface *dest, geometry::Vector<int> position) const {
115                 geometry::Vector<int> offset(-GetSprite()->Width() / 2, -GetSprite()->Height());
116                 Draw(dest, position + offset);
117         }
118
119         int Frame() const { return Running() ? (timer.Iteration() % animation->NumFrames()) : 0; }
120
121 private:
122         const Animation *animation;
123         const graphics::Sprite *sprite;
124         app::Timer<Uint32> timer;
125         int colOffset;
126         int rowOffset;
127
128 };
129
130 }
131
132 #endif /* GRAPHICS_SIMPLEANIMATION_H_ */