From 5ac88f3197be965804827751e8679cc6dd59b188 Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Wed, 10 May 2017 01:21:18 +0300 Subject: Add chat command for move monster in priority attack list into one position up. --- src/actions/commands.cpp | 34 ++++++++++++++++++++++++++++++++++ src/actions/commands.h | 1 + 2 files changed, 35 insertions(+) (limited to 'src/actions') diff --git a/src/actions/commands.cpp b/src/actions/commands.cpp index d033413bd..13b88499b 100644 --- a/src/actions/commands.cpp +++ b/src/actions/commands.cpp @@ -1960,8 +1960,42 @@ impHandler(moveAttackDown) if (socialWindow) socialWindow->updateAttackFilter(); + return true; } return false; } +impHandler(movePriorityAttackUp) +{ + if (!actorManager) + return false; + const std::string args = event.args; + const int idx = actorManager-> + getPriorityAttackMobIndex(args); + if (idx > 0) + { + std::list mobs + = actorManager->getPriorityAttackMobs(); + std::list::iterator it = mobs.begin(); + std::list::iterator it2 = it; + while (it != mobs.end()) + { + if (*it == args) + { + -- it2; + mobs.splice(it2, mobs, it); + actorManager->setPriorityAttackMobs(mobs); + actorManager->rebuildPriorityAttackMobs(); + break; + } + ++ it; + ++ it2; + } + + if (socialWindow) + socialWindow->updateAttackFilter(); + return true; + } +} + } // namespace Actions diff --git a/src/actions/commands.h b/src/actions/commands.h index 5340f1b5b..26907f7ac 100644 --- a/src/actions/commands.h +++ b/src/actions/commands.h @@ -155,6 +155,7 @@ namespace Actions decHandler(outfitToChat); decHandler(moveAttackUp); decHandler(moveAttackDown); + decHandler(movePriorityAttackUp); } // namespace Actions #undef decHandler -- cgit v1.2.3-60-g2f50