]> git.localhorst.tv Git - l2e.git/blobdiff - src/battle/states/PerformAttacks.cpp
alternate approach to battle animation
[l2e.git] / src / battle / states / PerformAttacks.cpp
index dd0e0df1cd0a27de4102081e4b8a6e470e945f01..498014a551d68b8fd81494989a8de44cc558a350 100644 (file)
@@ -57,7 +57,7 @@ void PerformAttacks::Resize(int width, int height) {
 
 
 void PerformAttacks::HandleEvents(const Input &input) {
-       CheckNumberAnimation();
+       CheckAnimations();
        if (HasAnimationsRunning()) return;
        ResetAnimation();
        AdvanceCursor();
@@ -77,8 +77,14 @@ void PerformAttacks::HandleEvents(const Input &input) {
 
                switch (ac.GetType()) {
                        case AttackChoice::SWORD:
-                               titleBarText = hero.HasWeapon() ? hero.Weapon()->Name() : "Melee attack!";
+                               if (hero.HasWeapon()) {
+                                       titleBarText = hero.Weapon()->Name();
+                               } else {
+                                       titleBarText = "Melee attack!";
+                               }
                                moveAnimation = hero.AttackAnimation();
+                               targetAnimation = hero.MeleeAnimation();
+
                                numberAnimation.push_back(NumberAnimation(15, battle->Res().numberAnimationPrototype, battle->Res().bigNumberSprite));
                                if (ac.Selection().TargetsEnemies()) {
                                        numberPosition.push_back(
@@ -119,11 +125,22 @@ void PerformAttacks::HandleEvents(const Input &input) {
 
        if (titleBarText) titleBarTimer = GraphicsTimers().StartCountdown(1500);
        if (moveAnimation) moveAnimation->Start(*this);
+       if (targetAnimation) {
+               targetAnimationTimer = GraphicsTimers().StartCountdown(150);
+       } else {
+               targetAnimationTimer.Clear();
+       }
 }
 
-void PerformAttacks::CheckNumberAnimation() {
-       if (moveAnimation && moveAnimation->Running()) return;
-       if (!moveAnimation || moveAnimation->JustFinished()) {
+void PerformAttacks::CheckAnimations() {
+       if (targetAnimation && targetAnimationTimer.JustHit()) {
+               targetAnimation->Start(*this);
+       }
+       if (moveAnimation && !moveAnimation->Finished()) return;
+       if (targetAnimation && !targetAnimation->Finished()) return;
+       if (moveAnimation || targetAnimation) {
+               moveAnimation = 0;
+               targetAnimation = 0;
                for (vector<NumberAnimation>::iterator i(numberAnimation.begin()), end(numberAnimation.end()); i != end; ++i) {
                        i->Start(*this);
                }
@@ -137,6 +154,7 @@ void PerformAttacks::CheckNumberAnimation() {
 bool PerformAttacks::HasAnimationsRunning() const {
        if (titleBarTimer.Running()) return true;
        if (moveAnimation && moveAnimation->Running()) return true;
+       if (targetAnimation && targetAnimation->Running()) return true;
        for (vector<NumberAnimation>::const_iterator i(numberAnimation.begin()), end(numberAnimation.end()); i != end; ++i) {
                if (i->Running()) return true;
        }
@@ -144,7 +162,14 @@ bool PerformAttacks::HasAnimationsRunning() const {
 }
 
 void PerformAttacks::ResetAnimation() {
-       if (moveAnimation) moveAnimation->Stop();
+       if (moveAnimation) {
+               moveAnimation->Stop();
+               moveAnimation = 0;
+       }
+       if (targetAnimation) {
+               targetAnimation->Stop();
+               targetAnimation = 0;
+       }
        titleBarTimer.Clear();
        numberAnimation.clear();
        numberPosition.clear();
@@ -175,9 +200,10 @@ void PerformAttacks::Render(SDL_Surface *screen) {
        battle->RenderSmallHeroTags(screen, offset);
        RenderTitleBar(screen, offset);
        RenderNumbers(screen, offset);
+       RenderTargetAnimation(screen, offset);
 }
 
-void PerformAttacks::RenderTitleBar(SDL_Surface *screen, const Vector<int> &offset) {
+void PerformAttacks::RenderTitleBar(SDL_Surface *screen, const Vector<int> &offset) const {
        if (!titleBarText || !titleBarTimer.Running()) return;
 
        int height(battle->Res().titleFrame->BorderHeight() * 2 + battle->Res().titleFont->CharHeight());
@@ -189,7 +215,7 @@ void PerformAttacks::RenderTitleBar(SDL_Surface *screen, const Vector<int> &offs
        battle->Res().titleFont->DrawString(titleBarText, screen, textPosition + offset);
 }
 
-void PerformAttacks::RenderNumbers(SDL_Surface *screen, const Vector<int> &offset) {
+void PerformAttacks::RenderNumbers(SDL_Surface *screen, const Vector<int> &offset) const {
        for (vector<NumberAnimation>::size_type i(0), end(numberAnimation.size()); i < end; ++i) {
                if (numberAnimation[i].Running()) {
                        Vector<int> align(numberAnimation[i].Width() / -2, numberAnimation[i].Height() * -3 / 4);
@@ -198,4 +224,16 @@ void PerformAttacks::RenderNumbers(SDL_Surface *screen, const Vector<int> &offse
        }
 }
 
+void PerformAttacks::RenderTargetAnimation(SDL_Surface *screen, const geometry::Vector<int> &offset) const {
+       if (!targetAnimation || !targetAnimation->Running()) return;
+       if (order[cursor].isMonster) return; // no monsters for now
+       const TargetSelection &ts(battle->AttackChoiceAt(order[cursor].index).Selection());
+       const vector<Point<int> > &positions(ts.TargetsHeroes() ? battle->HeroesPositions() : battle->MonsterPositions());
+       for (vector<Point<int> >::size_type i(0), end(positions.size()); i < end; ++i) {
+               if (ts.IsSelected(i)) {
+                       targetAnimation->DrawCenter(screen, positions[i] + offset);
+               }
+       }
+}
+
 }