diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-08-23 12:05:18 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-08-23 12:05:18 +0300 |
commit | 028638516b8a19edfe512309708012003e68b5c5 (patch) | |
tree | c23a3cabb879625ca62205c1a1deac805bd5d574 /src | |
parent | c023224562716ff5a4549006af710a9ea48b6a2f (diff) | |
download | plus-028638516b8a19edfe512309708012003e68b5c5.tar.gz plus-028638516b8a19edfe512309708012003e68b5c5.tar.bz2 plus-028638516b8a19edfe512309708012003e68b5c5.tar.xz plus-028638516b8a19edfe512309708012003e68b5c5.zip |
Put chat commands from inputactiondata into map.
Diffstat (limited to 'src')
-rw-r--r-- | src/input/inputmanager.cpp | 5 | ||||
-rw-r--r-- | src/input/inputmanager.h | 1 |
2 files changed, 5 insertions, 1 deletions
diff --git a/src/input/inputmanager.cpp b/src/input/inputmanager.cpp index 742181eef..2cbd100e2 100644 --- a/src/input/inputmanager.cpp +++ b/src/input/inputmanager.cpp @@ -72,7 +72,8 @@ InputManager::InputManager() : mSetupInput(nullptr), mNewKeyIndex(InputAction::NO_VALUE), mMask(1), - mNameMap() + mNameMap(), + mChatMap() { } @@ -156,6 +157,8 @@ void InputManager::retrieve() } } } + if (!inputActionData[i].chatCommand.empty()) + mChatMap[i] = i; } } diff --git a/src/input/inputmanager.h b/src/input/inputmanager.h index 02bc0315b..1635bf03c 100644 --- a/src/input/inputmanager.h +++ b/src/input/inputmanager.h @@ -130,6 +130,7 @@ class InputManager final int mMask; std::map<std::string, int> mNameMap; + std::map<std::string, int> mChatMap; InputFunction mKey[InputAction::TOTAL]; }; |