]> git.localhorst.tv Git - l2e.git/blobdiff - src/battle/BattleState.h
added heroes' party layout to battle state
[l2e.git] / src / battle / BattleState.h
index b88bae3b30b8a7151d45c3db34041ac4ac8b6fcb..06b8fbd8291fbf3cd41136013d901da28028b3aa 100644 (file)
 
 #include "Monster.h"
 #include "../app/State.h"
+#include "../geometry/Point.h"
 
 #include <vector>
 #include <SDL.h>
 
 namespace battle {
 
+class PartyLayout;
+
 class BattleState
 : public app::State {
 
 public:
-       explicit BattleState(SDL_Surface *background)
-       : background(background) { }
+       BattleState(SDL_Surface *background, const PartyLayout &monstersLayout, const PartyLayout &heroesLayout)
+       : background(background)
+       , monstersLayout(&monstersLayout)
+       , heroesLayout(&heroesLayout) { }
+
+public:
+       void AddMonster(const Monster &);
 
 public:
        virtual void EnterState(app::Application &ctrl, SDL_Surface *screen);
        virtual void ExitState();
 
+       virtual void Resize(int width, int height);
+
        virtual void HandleEvent(const SDL_Event &);
        virtual void UpdateWorld(float deltaT);
        virtual void Render(SDL_Surface *);
 
 private:
        SDL_Surface *background;
+       const PartyLayout *monstersLayout;
+       const PartyLayout *heroesLayout;
+       std::vector<geometry::Point<int> > monsterPositions;
+       std::vector<geometry::Point<int> > heroesPositions;
        std::vector<Monster> monsters;
 
 };