diff options
author | Andrei Karas <akaras@inbox.ru> | 2015-05-01 01:27:31 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2015-05-01 01:27:31 +0300 |
commit | e49cbd2dfc23b1ad0b8f568a7b0e8bc054546230 (patch) | |
tree | 6830cb844006e5fe1b7d43d29fd5565d71088fb6 | |
parent | 0f25d9c48f75b270da3ec7c86b21f17877513f21 (diff) | |
download | plus-e49cbd2dfc23b1ad0b8f568a7b0e8bc054546230.tar.gz plus-e49cbd2dfc23b1ad0b8f568a7b0e8bc054546230.tar.bz2 plus-e49cbd2dfc23b1ad0b8f568a7b0e8bc054546230.tar.xz plus-e49cbd2dfc23b1ad0b8f568a7b0e8bc054546230.zip |
Add chat command to show server configuration variable in chat.
New chat command: /servconfget varname
Alias: /getservconf varname
-rw-r--r-- | src/actions/commands.cpp | 12 | ||||
-rw-r--r-- | src/actions/commands.h | 1 | ||||
-rw-r--r-- | src/input/inputaction.h | 1 | ||||
-rw-r--r-- | src/input/inputactionmap.h | 5 |
4 files changed, 19 insertions, 0 deletions
diff --git a/src/actions/commands.cpp b/src/actions/commands.cpp index d56995745..9ec4ca28f 100644 --- a/src/actions/commands.cpp +++ b/src/actions/commands.cpp @@ -947,4 +947,16 @@ impHandler(confGet) return true; } +impHandler(serverConfGet) +{ + const std::string args = event.args; + if (args.empty()) + return false; + + const std::string str = strprintf(_("Server config value: %s"), + serverConfig.getStringValue(args).c_str()); + outStringNormal(event.tab, str, str); + return true; +} + } // namespace Actions diff --git a/src/actions/commands.h b/src/actions/commands.h index 9a6d1df3c..3c8459a9d 100644 --- a/src/actions/commands.h +++ b/src/actions/commands.h @@ -88,6 +88,7 @@ namespace Actions decHandler(confSet); decHandler(serverConfSet); decHandler(confGet); + decHandler(serverConfGet); } // namespace Actions #undef decHandler diff --git a/src/input/inputaction.h b/src/input/inputaction.h index ad34a254c..5faee657c 100644 --- a/src/input/inputaction.h +++ b/src/input/inputaction.h @@ -599,6 +599,7 @@ namespace InputAction CONF_SET, SERVER_CONF_SET, CONG_GET, + SERVER_CONG_GET, TOTAL }; } // namespace InputAction diff --git a/src/input/inputactionmap.h b/src/input/inputactionmap.h index 653c83973..71408667c 100644 --- a/src/input/inputactionmap.h +++ b/src/input/inputactionmap.h @@ -4484,6 +4484,11 @@ static const InputActionData inputActionData[InputAction::TOTAL] = { InputCondition::INGAME, "confget|getconf", true}, + {"keyServerConfGet", + defaultAction(&Actions::serverConfGet), + InputCondition::INGAME, + "servconfget|getservconf", + true}, }; #undef defaultAction |