X-Git-Url: http://git.localhorst.tv/?a=blobdiff_plain;f=src%2Fbattle%2Fstates%2FPerformAttacks.h;h=19e3200a42f2825504055ba1983d8fcffc1eeff6;hb=d2f44bfe5d159647431cee8ab29898bd3618d980;hp=e0d3df821a0a66f944884048eef1f6c2fbd0d43c;hpb=85ac93ffe31bfeee54aa6167111f1c15f14bc405;p=l2e.git diff --git a/src/battle/states/PerformAttacks.h b/src/battle/states/PerformAttacks.h index e0d3df8..19e3200 100644 --- a/src/battle/states/PerformAttacks.h +++ b/src/battle/states/PerformAttacks.h @@ -11,12 +11,12 @@ #include "../../app/State.h" #include "../BattleState.h" +#include "../NumberAnimation.h" #include "../../geometry/Vector.h" +#include "../../graphics/ComplexAnimation.h" #include -namespace graphics { class Animation; } - namespace battle { class PerformAttacks @@ -24,7 +24,7 @@ class PerformAttacks public: explicit PerformAttacks(BattleState *battle) - : ctrl(0), battle(battle), moveAnimation(0), titleBarText(0), cursor(-1) { } + : ctrl(0), battle(battle), moveAnimation(0), targetAnimation(0), titleBarText(0), cursor(-1) { } public: virtual void EnterState(app::Application &ctrl, SDL_Surface *screen); @@ -39,15 +39,27 @@ public: virtual void Render(SDL_Surface *); private: - void RenderTitleBar(SDL_Surface *screen, const geometry::Vector &offset); + void CheckAnimations(); + bool HasAnimationsRunning() const; + void ResetAnimation(); + +private: + void AddNumberAnimations(const TargetSelection &); + + void RenderTitleBar(SDL_Surface *screen, const geometry::Vector &offset) const; + void RenderNumbers(SDL_Surface *screen, const geometry::Vector &offset) const; + void RenderTargetAnimation(SDL_Surface *screen, const geometry::Vector &offset) const; private: app::Application *ctrl; BattleState *battle; graphics::Animation *moveAnimation; + graphics::Animation *targetAnimation; const char *titleBarText; app::Timer titleBarTimer; - std::vector order; + app::Timer targetAnimationTimer; + std::vector numberAnimation; + std::vector > numberPosition; int cursor; };