X-Git-Url: http://git.localhorst.tv/?a=blobdiff_plain;f=src%2Fbattle%2Fstates%2FPerformAttacks.h;h=3d8b2ff6d5e23d6b7853cc4931c7356d49bdbd59;hb=0b11a24a8b08c49d6e4301573602fb6d01e7a8c8;hp=a4d58dcc64f47ada4dd39f3a6bd0c53c67108cf0;hpb=8456b7dac2051bfd2b507a39854c1428eb4d91cd;p=l2e.git diff --git a/src/battle/states/PerformAttacks.h b/src/battle/states/PerformAttacks.h index a4d58dc..3d8b2ff 100644 --- a/src/battle/states/PerformAttacks.h +++ b/src/battle/states/PerformAttacks.h @@ -1,70 +1,67 @@ -/* - * 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 "../../graphics/ComplexAnimation.h" +#include "../../math/Vector.h" +#include "../../graphics/Animation.h" #include namespace battle { -class AttackAnimation; +class BattleState; +class TargetSelection; class PerformAttacks : public app::State { public: explicit PerformAttacks(BattleState *battle) - : ctrl(0), battle(battle), moveAnimation(0), attackAnimation(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: - void CheckNumberAnimation(); + 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(); - void AdvanceCursor(); - bool Finished() const { return cursor >= int(order.size()); } private: - void RenderTitleBar(SDL_Surface *screen, const geometry::Vector &offset); - void RenderNumbers(SDL_Surface *screen, const geometry::Vector &offset); + 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; - AttackAnimation *attackAnimation; + graphics::AnimationRunner moveAnimation; + graphics::AnimationRunner targetAnimation; const char *titleBarText; app::Timer titleBarTimer; - std::vector order; + app::Timer targetAnimationTimer; std::vector numberAnimation; - std::vector > numberPosition; + std::vector > numberPosition; + math::Vector framePosition; + math::Vector frameSize; + math::Vector textPosition; int cursor; }; } -#endif /* BATTLE_PERFORMATTACKS_H_ */ +#endif