From ffe1b11e981112a662669358863805fabe14e94c Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Tue, 26 Aug 2014 15:41:52 +0300 Subject: Move chat command /priceload into actions. --- src/actions/actions.cpp | 10 ++++++++++ src/actions/actions.h | 1 + src/commands.cpp | 10 ---------- src/commands.h | 5 +---- src/input/inputaction.h | 1 + src/input/inputactionmap.h | 11 ++++++++++- src/input/pages/other.cpp | 6 ++++++ 7 files changed, 29 insertions(+), 15 deletions(-) diff --git a/src/actions/actions.cpp b/src/actions/actions.cpp index 9d1279e3f..916bde3c2 100644 --- a/src/actions/actions.cpp +++ b/src/actions/actions.cpp @@ -615,4 +615,14 @@ impHandler(trade) return true; } +impHandler0(priceLoad) +{ + if (shopWindow) + { + shopWindow->loadList(); + return true; + } + return false; +} + } // namespace Actions diff --git a/src/actions/actions.h b/src/actions/actions.h index ea9faadab..5cd21a9d8 100644 --- a/src/actions/actions.h +++ b/src/actions/actions.h @@ -61,6 +61,7 @@ namespace Actions decHandler(cleanFonts); decHandler(attackHuman); decHandler(trade); + decHandler(priceLoad); } // namespace Actions #undef decHandler diff --git a/src/commands.cpp b/src/commands.cpp index 52a9dbb2a..dded364ae 100644 --- a/src/commands.cpp +++ b/src/commands.cpp @@ -157,16 +157,6 @@ impHandler(hack) return true; } -impHandler0(priceLoad) -{ - if (shopWindow) - { - shopWindow->loadList(); - return true; - } - return false; -} - impHandler0(priceSave) { if (shopWindow) diff --git a/src/commands.h b/src/commands.h index 58f3bf176..dd60778e8 100644 --- a/src/commands.h +++ b/src/commands.h @@ -52,7 +52,6 @@ struct CommandInfo final namespace Commands { decHandler(hack); - decHandler(priceLoad); decHandler(priceSave); decHandler(disconnect); decHandler(undress); @@ -102,8 +101,7 @@ namespace Commands enum { - COMMAND_PRICELOAD = 0, - COMMAND_PRICESAVE, + COMMAND_PRICESAVE = 0, COMMAND_CACHEINFO, COMMAND_DISCONNECT, COMMAND_UNDRESS, @@ -153,7 +151,6 @@ enum static const CommandInfo commands[] = { - {"priceload", &Commands::priceLoad, -1, false}, {"pricesave", &Commands::priceSave, -1, false}, {"cacheinfo", &Commands::cacheInfo, -1, false}, {"disconnect", &Commands::disconnect, -1, false}, diff --git a/src/input/inputaction.h b/src/input/inputaction.h index d278e9799..296ef17fa 100644 --- a/src/input/inputaction.h +++ b/src/input/inputaction.h @@ -380,6 +380,7 @@ namespace InputAction IMITATION, SEND_MAIL, TRADE, + PRICE_LOAD, TOTAL }; } // namespace InputAction diff --git a/src/input/inputactionmap.h b/src/input/inputactionmap.h index 58688fc27..ab1cd04e2 100644 --- a/src/input/inputactionmap.h +++ b/src/input/inputactionmap.h @@ -3189,7 +3189,16 @@ static const InputActionData inputActionData[InputAction::TOTAL] = { InputAction::NO_VALUE, 50, InputCondition::INGAME, "trade", - true} + true}, + {"keyPriceLoad", + InputType::UNKNOWN, InputAction::NO_VALUE, + InputType::UNKNOWN, InputAction::NO_VALUE, + Input::GRP_DEFAULT, + &Actions::priceLoad, + InputAction::NO_VALUE, 50, + InputCondition::INGAME, + "priceload", + false} }; #endif // INPUT_INPUTACTIONMAP_H diff --git a/src/input/pages/other.cpp b/src/input/pages/other.cpp index c7db9c05d..57b0b68b0 100644 --- a/src/input/pages/other.cpp +++ b/src/input/pages/other.cpp @@ -237,6 +237,12 @@ SetupActionData setupActionDataOther[] = InputAction::PRINT_ALL, "", }, + { + // TRANSLATORS: input action name + N_("Load shop items list from disk"), + InputAction::PRICE_LOAD, + "", + }, { "", InputAction::NO_VALUE, -- cgit v1.2.3-60-g2f50