X-Git-Url: http://git.localhorst.tv/?a=blobdiff_plain;f=src%2Fbattle%2Fstates%2FPerformAttacks.h;h=37328dc89db6e01700a94855ac2aa6c9c95c9091;hb=9a7ac49b7e3b7cd4a09b016ceec116830a3458f9;hp=e0d3df821a0a66f944884048eef1f6c2fbd0d43c;hpb=85ac93ffe31bfeee54aa6167111f1c15f14bc405;p=l2e.git diff --git a/src/battle/states/PerformAttacks.h b/src/battle/states/PerformAttacks.h index e0d3df8..37328dc 100644 --- a/src/battle/states/PerformAttacks.h +++ b/src/battle/states/PerformAttacks.h @@ -1,21 +1,20 @@ -/* - * PerformAttacks.h - * - * Created on: Aug 10, 2012 - * Author: holy - */ - #ifndef BATTLE_PERFORMATTACKS_H_ #define BATTLE_PERFORMATTACKS_H_ +namespace battle { + class Battle; + class BattleState; + class TargetSelection; +} + #include "../../app/State.h" -#include "../BattleState.h" -#include "../../geometry/Vector.h" +#include "../NumberAnimation.h" +#include "../../math/Vector.h" +#include "../../graphics/Animation.h" #include -namespace graphics { class Animation; } namespace battle { @@ -23,35 +22,50 @@ class PerformAttacks : public app::State { public: - explicit PerformAttacks(BattleState *battle) - : ctrl(0), battle(battle), moveAnimation(0), titleBarText(0), cursor(-1) { } + PerformAttacks(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 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: - void RenderTitleBar(SDL_Surface *screen, const geometry::Vector &offset); + 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; + void ResetAnimation(); + +private: + void AddNumberAnimations(const TargetSelection &); + + void RenderTitleBar(SDL_Surface *screen) const; + void RenderNumbers(SDL_Surface *screen) const; + void RenderTargetAnimation(SDL_Surface *screen) const; private: - app::Application *ctrl; - BattleState *battle; - graphics::Animation *moveAnimation; + Battle *battle; + BattleState *parent; + graphics::AnimationRunner moveAnimation; + graphics::AnimationRunner targetAnimation; const char *titleBarText; app::Timer titleBarTimer; - std::vector order; + app::Timer targetAnimationTimer; + std::vector numberAnimation; + std::vector > numberPosition; + math::Vector framePosition; + math::Vector frameSize; + math::Vector textPosition; int cursor; }; } -#endif /* BATTLE_PERFORMATTACKS_H_ */ +#endif