]> git.localhorst.tv Git - l2e.git/blobdiff - src/battle/states/SelectAttackType.h
extracted battle logic into a class
[l2e.git] / src / battle / states / SelectAttackType.h
index 3290666b3d0d33855a5beaca925279749ab6b77d..51dd0f478d87f895cdc7a2d9ae5ad977db6e210e 100644 (file)
@@ -1,22 +1,22 @@
-/*
- * SelectAttackType.h
- *
- *  Created on: Aug 7, 2012
- *      Author: holy
- */
-
 #ifndef BATTLE_SELECTATTACKTYPE_H_
 #define BATTLE_SELECTATTACKTYPE_H_
 
 namespace battle {
+       class Battle;
        class BattleState;
+       class HeroTag;
+       struct Resources;
+}
+namespace common {
+       class Item;
 }
-namespace math {
+namespace graphics {
        template<class>
-       class Vector;
+       class Menu;
 }
 
 #include "../../app/State.h"
+#include "../../math/Vector.h"
 
 namespace battle {
 
@@ -24,14 +24,24 @@ class SelectAttackType
 : public app::State {
 
 public:
-       explicit SelectAttackType(BattleState *battle)
-       : battle(battle) { }
+       SelectAttackType(Battle *battle, BattleState *parent);
 
 public:
        virtual void HandleEvents(const app::Input &);
        virtual void UpdateWorld(Uint32 deltaT);
        virtual void Render(SDL_Surface *);
 
+public:
+       const Resources &Res() const;
+       graphics::Menu<const common::Item *> &ItemMenu();
+       const graphics::Menu<const common::Item *> &ItemMenu() const;
+       const HeroTag &HeroTagAt(int index) const;
+       const math::Vector<int> &HeroTagPositionAt(int index) const;
+
+       const math::Vector<int> &ScreenOffset() const;
+       int Width() const;
+       int Height() const;
+
 private:
        virtual void OnEnterState(SDL_Surface *screen);
        virtual void OnExitState(SDL_Surface *screen);
@@ -41,12 +51,14 @@ private:
        virtual void OnResize(int width, int height);
 
 private:
-       void RenderMenu(SDL_Surface *screen, const math::Vector<int> &offset);
+       void RenderMenu(SDL_Surface *screen);
 
 private:
-       BattleState *battle;
+       Battle *battle;
+       BattleState *parent;
+       math::Vector<int> menuOffset;
 
 };
 
 }
-#endif /* BATTLE_SELECTATTACKTYPE_H_ */
+#endif