]> git.localhorst.tv Git - l2e.git/blob - src/graphics/Animation.h
added number animation
[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 "../geometry/operators.h"
16 #include "../geometry/Point.h"
17 #include "../geometry/Vector.h"
18
19 #include <SDL.h>
20
21 namespace graphics {
22
23 class Animation {
24
25 public:
26         Animation()
27         : sprite(0), frameTime(0), colOffset(0), rowOffset(0), repeat(false) { }
28         Animation(const Sprite *sprite, int frameTime, bool repeat = false)
29         : sprite(sprite), frameTime(frameTime), colOffset(0), rowOffset(0), repeat(repeat) { }
30         virtual ~Animation() { };
31
32 public:
33         void Start(app::State &ctrl) {
34                 timer = ctrl.GraphicsTimers().StartInterval(frameTime);
35         }
36         void Start(app::Application &ctrl) {
37                 timer = ctrl.GlobalTimers().StartInterval(frameTime);
38         }
39         void Stop() {
40                 timer = app::Timer<Uint32>();
41         }
42         bool Running() const {
43                 return timer.Running() && (repeat || timer.Iteration() < NumFrames());
44         }
45         bool JustFinished() const {
46                 return timer.JustHit() && timer.Iteration() == NumFrames();
47         }
48
49         const app::Timer<Uint32> &GetTimer() { return timer; }
50
51         void SetColOffset(int offset) { colOffset = offset; }
52         int ColOffset() const { return colOffset; }
53         void SetRowOffset(int offset) { rowOffset = offset; }
54         int RowOffset() const { return rowOffset; }
55
56         const Sprite *GetSprite() const { return sprite; }
57         void ChangeSprite(const Sprite *s) { sprite = s; }
58
59         virtual void Draw(SDL_Surface *dest, geometry::Point<int> position) const {
60                 sprite->Draw(dest, position, Col() + ColOffset(), Row() + RowOffset());
61         }
62         void DrawTopRight(SDL_Surface *dest, geometry::Point<int> position) const {
63                 geometry::Vector<int> offset(-sprite->Width(), 0);
64                 Draw(dest, position + offset);
65         }
66         void DrawCenter(SDL_Surface *dest, geometry::Point<int> position) const {
67                 geometry::Vector<int> offset(-sprite->Width() / 2, -sprite->Height() / 2);
68                 Draw(dest, position + offset);
69         }
70         void DrawCenterBottom(SDL_Surface *dest, geometry::Point<int> position) const {
71                 geometry::Vector<int> offset(-sprite->Width() / 2, -sprite->Height());
72                 Draw(dest, position + offset);
73         }
74
75         int Frame() const { return Running() ? (timer.Iteration() % NumFrames()) : 0; }
76
77 protected:
78         virtual int Col() const = 0;
79         virtual int Row() const = 0;
80         virtual int NumFrames() const = 0;
81
82 private:
83         const Sprite *sprite;
84         app::Timer<Uint32> timer;
85         int frameTime;
86         int colOffset;
87         int rowOffset;
88         bool repeat;
89
90 };
91
92 }
93
94 #endif /* GRAPHICS_SIMPLEANIMATION_H_ */