]> git.localhorst.tv Git - l2e.git/blob - src/battle/BattleState.h
added monster drawing routine in battle state
[l2e.git] / src / battle / BattleState.h
1 /*
2  * BattleState.h
3  *
4  *  Created on: Aug 5, 2012
5  *      Author: holy
6  */
7
8 #ifndef BATTLE_BATTLESTATE_H_
9 #define BATTLE_BATTLESTATE_H_
10
11 #include "Monster.h"
12 #include "../app/State.h"
13 #include "../geometry/Point.h"
14
15 #include <vector>
16 #include <SDL.h>
17
18 namespace battle {
19
20 class PartyLayout;
21
22 class BattleState
23 : public app::State {
24
25 public:
26         BattleState(SDL_Surface *background, const PartyLayout &monstersLayout)
27         : background(background)
28         , monstersLayout(&monstersLayout) { }
29
30 public:
31         void AddMonster(const Monster &);
32
33 public:
34         virtual void EnterState(app::Application &ctrl, SDL_Surface *screen);
35         virtual void ExitState();
36
37         virtual void HandleEvent(const SDL_Event &);
38         virtual void UpdateWorld(float deltaT);
39         virtual void Render(SDL_Surface *);
40
41 private:
42         SDL_Surface *background;
43         const PartyLayout *monstersLayout;
44         std::vector<geometry::Point<int> > monsterPositions;
45         std::vector<Monster> monsters;
46
47 };
48
49 }
50
51 #endif /* BATTLE_BATTLESTATE_H_ */