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