]> git.localhorst.tv Git - l2e.git/blobdiff - src/battle/states/PerformAttacks.h
removed useless comments
[l2e.git] / src / battle / states / PerformAttacks.h
index d060d5a55f38406ed6f0fa11e721fba8569447ad..ab1552595bca018ae5694b593aaf93c56e5f07c7 100644 (file)
@@ -1,43 +1,39 @@
-/*
- * PerformAttacks.h
- *
- *  Created on: Aug 10, 2012
- *      Author: holy
- */
-
 #ifndef BATTLE_PERFORMATTACKS_H_
 #define BATTLE_PERFORMATTACKS_H_
 
 #include "../../app/State.h"
 
-#include "../BattleState.h"
 #include "../NumberAnimation.h"
-#include "../../geometry/Vector.h"
+#include "../../math/Vector.h"
 #include "../../graphics/Animation.h"
 
 #include <vector>
 
 namespace battle {
 
+class BattleState;
+class TargetSelection;
+
 class PerformAttacks
 : public app::State {
 
 public:
        explicit PerformAttacks(BattleState *battle)
-       : ctrl(0), battle(battle), moveAnimation(0), targetAnimation(0), titleBarText(0), cursor(-1) { }
+       : battle(battle), moveAnimation(0), targetAnimation(0), titleBarText(0), cursor(-1) { }
 
 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 Resize(int width, int height);
-
        virtual void HandleEvents(const app::Input &);
-       virtual void UpdateWorld(float deltaT);
+       virtual void UpdateWorld(Uint32 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 CheckAnimations();
        bool HasAnimationsRunning() const;
@@ -46,12 +42,11 @@ private:
 private:
        void AddNumberAnimations(const TargetSelection &);
 
-       void RenderTitleBar(SDL_Surface *screen, const geometry::Vector<int> &offset) const;
-       void RenderNumbers(SDL_Surface *screen, const geometry::Vector<int> &offset) const;
-       void RenderTargetAnimation(SDL_Surface *screen, const geometry::Vector<int> &offset) const;
+       void RenderTitleBar(SDL_Surface *screen, const math::Vector<int> &offset) const;
+       void RenderNumbers(SDL_Surface *screen, const math::Vector<int> &offset) const;
+       void RenderTargetAnimation(SDL_Surface *screen, const math::Vector<int> &offset) const;
 
 private:
-       app::Application *ctrl;
        BattleState *battle;
        graphics::AnimationRunner moveAnimation;
        graphics::AnimationRunner targetAnimation;
@@ -59,11 +54,11 @@ private:
        app::Timer<Uint32> titleBarTimer;
        app::Timer<Uint32> targetAnimationTimer;
        std::vector<NumberAnimation> numberAnimation;
-       std::vector<geometry::Point<int> > numberPosition;
+       std::vector<math::Vector<int> > numberPosition;
        int cursor;
 
 };
 
 }
 
-#endif /* BATTLE_PERFORMATTACKS_H_ */
+#endif