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