]> git.localhorst.tv Git - l2e.git/blobdiff - src/battle/states/SelectMoveAction.h
extracted battle logic into a class
[l2e.git] / src / battle / states / SelectMoveAction.h
index 9ba8c6115f500d745e36f875ee9e4d04b42fc946..156eec16cbec2e22b5ff3647debda3165bfb733d 100644 (file)
@@ -1,49 +1,53 @@
-/*
- * SelectMoveAction.h
- *
- *  Created on: Aug 7, 2012
- *      Author: holy
- */
-
 #ifndef BATTLE_SELECTMOVEACTION_H_
 #define BATTLE_SELECTMOVEACTION_H_
 
+namespace battle {
+       class Battle;
+       class BattleState;
+       class HeroTag;
+       struct Resources;
+}
+
 #include "../../app/State.h"
-#include "../../geometry/Vector.h"
+#include "../../math/Vector.h"
 
 namespace battle {
 
-class BattleState;
-class MoveMenu;
-
 class SelectMoveAction
 : public app::State {
 
 public:
-       explicit SelectMoveAction(BattleState *battle)
-       : ctrl(0), battle(battle) { }
+       SelectMoveAction(Battle *battle, BattleState *parent);
 
 public:
-       virtual void EnterState(app::Application &ctrl, SDL_Surface *screen);
-       virtual void ExitState(app::Application &ctrl, SDL_Surface *screen);
-       virtual void ResumeState(app::Application &ctrl, SDL_Surface *screen);
-       virtual void PauseState(app::Application &ctrl, SDL_Surface *screen);
+       virtual void HandleEvents(const app::Input &);
+       virtual void UpdateWorld(Uint32 deltaT);
+       virtual void Render(SDL_Surface *);
 
-       virtual void Resize(int width, int height);
+public:
+       const Resources &Res() const;
+       const math::Vector<int> &ScreenOffset() const;
+       const HeroTag &HeroTagAt(int index) const;
+       const math::Vector<int> &HeroTagPositionAt(int index) const;
 
-       virtual void HandleInput(const app::Input &);
-       virtual void UpdateWorld(float deltaT);
-       virtual void Render(SDL_Surface *);
+private:
+       virtual void OnEnterState(SDL_Surface *screen);
+       virtual void OnExitState(SDL_Surface *screen);
+       virtual void OnResumeState(SDL_Surface *screen);
+       virtual void OnPauseState(SDL_Surface *screen);
+
+       virtual void OnResize(int width, int height);
 
 private:
-       void RenderMenu(SDL_Surface *screen, const geometry::Vector<int> &offset);
+       void RenderMenu(SDL_Surface *screen);
 
 private:
-       app::Application *ctrl;
-       BattleState *battle;
+       Battle *battle;
+       BattleState *parent;
+       math::Vector<int> position;
 
 };
 
 }
 
-#endif /* BATTLE_SELECTMOVEACTION_H_ */
+#endif