]> git.localhorst.tv Git - l2e.git/blob - src/battle/states/SelectTarget.h
renamed namespace geometry -> math
[l2e.git] / src / battle / states / SelectTarget.h
1 /*
2  * SelectTarget.h
3  *
4  *  Created on: Aug 9, 2012
5  *      Author: holy
6  */
7
8 #ifndef BATTLE_SELECTTARGET_H_
9 #define BATTLE_SELECTTARGET_H_
10
11 #include "../fwd.h"
12 #include "../../app/State.h"
13 #include "../../math/Vector.h"
14 #include "../../graphics/fwd.h"
15
16 namespace battle {
17
18 class SelectTarget
19 : public app::State {
20
21 public:
22         SelectTarget(BattleState *battle, SelectAttackType *parent, TargetSelection *selection, const graphics::Sprite *cursorIcon)
23         : battle(battle), parent(parent), selection(selection), cursorIcon(cursorIcon), flipFlop(true) { }
24
25 public:
26         virtual void HandleEvents(const app::Input &);
27         virtual void UpdateWorld(float deltaT);
28         virtual void Render(SDL_Surface *);
29
30 private:
31         virtual void OnEnterState(SDL_Surface *screen);
32         virtual void OnExitState(SDL_Surface *screen);
33         virtual void OnResumeState(SDL_Surface *screen);
34         virtual void OnPauseState(SDL_Surface *screen);
35
36         virtual void OnResize(int width, int height);
37
38 private:
39         void RenderCursors(SDL_Surface *screen, const math::Vector<int> &offset);
40
41 private:
42         BattleState *battle;
43         SelectAttackType *parent;
44         TargetSelection *selection;
45         const graphics::Sprite *cursorIcon;
46         bool flipFlop;
47
48 };
49
50 }
51
52 #endif /* BATTLE_SELECTTARGET_H_ */