summaryrefslogtreecommitdiff
path: root/src/input/inputmanager.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2014-08-23 13:19:37 +0300
committerAndrei Karas <akaras@inbox.ru>2014-08-23 13:19:37 +0300
commit5251869d3507c8c3dc5fd4c824a06987fd6437e2 (patch)
tree2d60fdf3ddebfe1ee0f55b132f81be7820798f29 /src/input/inputmanager.cpp
parent07012a81f523b7f6bd095325ddd2675a3ce06d09 (diff)
downloadplus-5251869d3507c8c3dc5fd4c824a06987fd6437e2.tar.gz
plus-5251869d3507c8c3dc5fd4c824a06987fd6437e2.tar.bz2
plus-5251869d3507c8c3dc5fd4c824a06987fd6437e2.tar.xz
plus-5251869d3507c8c3dc5fd4c824a06987fd6437e2.zip
Add autocomplete chat commands from actions.
Diffstat (limited to 'src/input/inputmanager.cpp')
-rw-r--r--src/input/inputmanager.cpp16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/input/inputmanager.cpp b/src/input/inputmanager.cpp
index c74544432..235d50da9 100644
--- a/src/input/inputmanager.cpp
+++ b/src/input/inputmanager.cpp
@@ -847,3 +847,19 @@ int InputManager::getActionByKey(const SDL_Event &event) const
}
return InputAction::NO_VALUE;
}
+
+void InputManager::addChatCommands(std::list<std::string> &arr)
+{
+ for (int i = 0; i < InputAction::TOTAL; i++)
+ {
+ const InputActionData &ad = inputActionData[i];
+ std::string cmd = ad.chatCommand;
+ if (!cmd.empty())
+ {
+ cmd = std::string("/").append(cmd);
+ if (ad.useArgs)
+ cmd.append(" ");
+ arr.push_back(cmd);
+ }
+ }
+}