]> git.localhorst.tv Git - l2e.git/blob - src/battle/BattleState.h
added heroes' party layout to 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, const PartyLayout &heroesLayout)
27         : background(background)
28         , monstersLayout(&monstersLayout)
29         , heroesLayout(&heroesLayout) { }
30
31 public:
32         void AddMonster(const Monster &);
33
34 public:
35         virtual void EnterState(app::Application &ctrl, SDL_Surface *screen);
36         virtual void ExitState();
37
38         virtual void Resize(int width, int height);
39
40         virtual void HandleEvent(const SDL_Event &);
41         virtual void UpdateWorld(float deltaT);
42         virtual void Render(SDL_Surface *);
43
44 private:
45         SDL_Surface *background;
46         const PartyLayout *monstersLayout;
47         const PartyLayout *heroesLayout;
48         std::vector<geometry::Point<int> > monsterPositions;
49         std::vector<geometry::Point<int> > heroesPositions;
50         std::vector<Monster> monsters;
51
52 };
53
54 }
55
56 #endif /* BATTLE_BATTLESTATE_H_ */