From ce0c0778675908f7be557b1c115de3eabb828079 Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Tue, 26 Aug 2014 12:14:29 +0300 Subject: Move chat command /mail into actions. --- src/actions/commands.cpp | 11 +++++++++++ src/actions/commands.h | 1 + src/commands.cpp | 10 ---------- src/commands.h | 5 +---- src/input/inputaction.h | 1 + src/input/inputactionmap.h | 9 +++++++++ 6 files changed, 23 insertions(+), 14 deletions(-) (limited to 'src') diff --git a/src/actions/commands.cpp b/src/actions/commands.cpp index 29414b18d..6e8fca4a0 100644 --- a/src/actions/commands.cpp +++ b/src/actions/commands.cpp @@ -21,6 +21,7 @@ #include "actions/commands.h" #include "actormanager.h" +#include "auctionmanager.h" #include "configuration.h" #include "dropshortcut.h" #include "emoteshortcut.h" @@ -423,4 +424,14 @@ impHandler(imitation) return true; } +impHandler(sendMail) +{ + if (auctionManager && auctionManager->getEnableAuctionBot()) + { + auctionManager->sendMail(event.args); + return true; + } + return false; +} + } // namespace Actions diff --git a/src/actions/commands.h b/src/actions/commands.h index fbee9e125..98f13b2d5 100644 --- a/src/actions/commands.h +++ b/src/actions/commands.h @@ -48,6 +48,7 @@ namespace Actions decHandler(follow); decHandler(navigate); decHandler(imitation); + decHandler(sendMail); } // namespace Actions #undef decHandler diff --git a/src/commands.cpp b/src/commands.cpp index 464148a87..72ba9f6c1 100644 --- a/src/commands.cpp +++ b/src/commands.cpp @@ -157,16 +157,6 @@ impHandler(hack) return true; } -impHandler(mail) -{ - if (auctionManager && auctionManager->getEnableAuctionBot()) - { - auctionManager->sendMail(event.args); - return true; - } - return false; -} - impHandler0(priceLoad) { if (shopWindow) diff --git a/src/commands.h b/src/commands.h index 0f42ddb9a..b09979050 100644 --- a/src/commands.h +++ b/src/commands.h @@ -51,7 +51,6 @@ struct CommandInfo final namespace Commands { - decHandler(mail); decHandler(hack); decHandler(priceLoad); decHandler(priceSave); @@ -104,8 +103,7 @@ namespace Commands enum { - COMMAND_MAIL = 0, - COMMAND_TRADE, + COMMAND_TRADE = 0, COMMAND_PRICELOAD, COMMAND_PRICESAVE, COMMAND_CACHEINFO, @@ -157,7 +155,6 @@ enum static const CommandInfo commands[] = { - {"mail", &Commands::mail, -1, true}, {"trade", &Commands::trade, -1, true}, {"priceload", &Commands::priceLoad, -1, false}, {"pricesave", &Commands::priceSave, -1, false}, diff --git a/src/input/inputaction.h b/src/input/inputaction.h index aa7cd90a4..dae8cbf53 100644 --- a/src/input/inputaction.h +++ b/src/input/inputaction.h @@ -378,6 +378,7 @@ namespace InputAction FOLLOW, NAVIGATE, IMITATION, + SEND_MAIL, TOTAL }; } // namespace InputAction diff --git a/src/input/inputactionmap.h b/src/input/inputactionmap.h index 01953a71d..6657b0909 100644 --- a/src/input/inputactionmap.h +++ b/src/input/inputactionmap.h @@ -3171,6 +3171,15 @@ static const InputActionData inputActionData[InputAction::TOTAL] = { InputAction::NO_VALUE, 50, InputCondition::INGAME, "imitation", + true}, + {"keySendMail", + InputType::UNKNOWN, InputAction::NO_VALUE, + InputType::UNKNOWN, InputAction::NO_VALUE, + Input::GRP_DEFAULT, + &Actions::sendMail, + InputAction::NO_VALUE, 50, + InputCondition::INGAME, + "mail", true} }; -- cgit v1.2.3-60-g2f50