]> git.localhorst.tv Git - l2e.git/blob - src/graphics/Animation.h
added sprite accessors to 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
46         void SetColOffset(int offset) { colOffset = offset; }
47         int ColOffset() const { return colOffset; }
48         void SetRowOffset(int offset) { rowOffset = offset; }
49         int RowOffset() const { return rowOffset; }
50
51         const Sprite *GetSprite() const { return sprite; }
52         void ChangeSprite(const Sprite *s) { sprite = s; }
53
54         virtual void Draw(SDL_Surface *dest, geometry::Point<int> position) const {
55                 sprite->Draw(dest, position, Col() + ColOffset(), Row() + RowOffset());
56         }
57         void DrawTopRight(SDL_Surface *dest, geometry::Point<int> position) const {
58                 geometry::Vector<int> offset(-sprite->Width(), 0);
59                 Draw(dest, position + offset);
60         }
61         void DrawCenter(SDL_Surface *dest, geometry::Point<int> position) const {
62                 geometry::Vector<int> offset(-sprite->Width() / 2, -sprite->Height() / 2);
63                 Draw(dest, position + offset);
64         }
65         void DrawCenterBottom(SDL_Surface *dest, geometry::Point<int> position) const {
66                 geometry::Vector<int> offset(-sprite->Width() / 2, -sprite->Height());
67                 Draw(dest, position + offset);
68         }
69
70 protected:
71         int Frame() const { return Running() ? (timer.Iteration() % NumFrames()) : 0; }
72         virtual int Col() const = 0;
73         virtual int Row() const = 0;
74         virtual int NumFrames() const = 0;
75
76 private:
77         const Sprite *sprite;
78         app::Timer<Uint32> timer;
79         int frameTime;
80         int colOffset;
81         int rowOffset;
82         bool repeat;
83
84 };
85
86 }
87
88 #endif /* GRAPHICS_SIMPLEANIMATION_H_ */