From 66319a9c3647c77bd13ca8c9a46bf15ba10863fa Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Sun, 14 Dec 2014 13:54:08 +0300 Subject: Add chat command for kick player/mobs. New chat command: /kick [name|:id] --- src/actions/actions.cpp | 22 ++++++++++++++++++++++ src/actions/actions.h | 1 + src/input/inputaction.h | 1 + src/input/inputactionmap.h | 9 +++++++++ 4 files changed, 33 insertions(+) (limited to 'src') diff --git a/src/actions/actions.cpp b/src/actions/actions.cpp index e689db941..bd8431b31 100644 --- a/src/actions/actions.cpp +++ b/src/actions/actions.cpp @@ -66,6 +66,7 @@ #include "render/normalopenglgraphics.h" #endif +#include "net/adminhandler.h" #include "net/beinghandler.h" #include "net/buysellhandler.h" #include "net/chathandler.h" @@ -1509,4 +1510,25 @@ impHandler(unprotectItem) return true; } +impHandler(kick) +{ + if (!localPlayer || !actorManager) + return false; + + Being *target = nullptr; + std::string args = event.args; + if (!args.empty()) + { + if (args[0] != ':') + target = actorManager->findNearestByName(args); + else + target = actorManager->findBeing(atoi(args.substr(1).c_str())); + } + if (!target) + target = localPlayer->getTarget(); + if (target) + adminHandler->kick(target->getId()); + return true; +} + } // namespace Actions diff --git a/src/actions/actions.h b/src/actions/actions.h index cbd7489f3..922d32d12 100644 --- a/src/actions/actions.h +++ b/src/actions/actions.h @@ -103,6 +103,7 @@ namespace Actions decHandler(storageToInv); decHandler(protectItem); decHandler(unprotectItem); + decHandler(kick); } // namespace Actions #undef decHandler diff --git a/src/input/inputaction.h b/src/input/inputaction.h index cc4488e51..d09099c84 100644 --- a/src/input/inputaction.h +++ b/src/input/inputaction.h @@ -512,6 +512,7 @@ namespace InputAction ITEM_UNPROTECT, KICK_PARTY, ADD_TEXT, + KICK, TOTAL }; } // namespace InputAction diff --git a/src/input/inputactionmap.h b/src/input/inputactionmap.h index f03e81559..28def4d1b 100644 --- a/src/input/inputactionmap.h +++ b/src/input/inputactionmap.h @@ -4351,6 +4351,15 @@ static const InputActionData inputActionData[InputAction::TOTAL] = { InputCondition::INGAME, "addtext|textadd", true}, + {"keyKick", + InputType::UNKNOWN, InputAction::NO_VALUE, + InputType::UNKNOWN, InputAction::NO_VALUE, + Input::GRP_DEFAULT, + &Actions::kick, + InputAction::NO_VALUE, 50, + InputCondition::INGAME, + "kick", + true}, }; #endif // INPUT_INPUTACTIONMAP_H -- cgit v1.2.3-70-g09d2