diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-12-13 13:29:06 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-12-13 13:29:06 +0300 |
commit | 3bb8ce54ba5fef1605bbfe49c827963ca7f2e0e0 (patch) | |
tree | 5def63bc44fee78e9757f05dae777b091c534ebf | |
parent | fb3bd2b88782b5cf11e4abd851ba142c9265b8cc (diff) | |
download | plus-3bb8ce54ba5fef1605bbfe49c827963ca7f2e0e0.tar.gz plus-3bb8ce54ba5fef1605bbfe49c827963ca7f2e0e0.tar.bz2 plus-3bb8ce54ba5fef1605bbfe49c827963ca7f2e0e0.tar.xz plus-3bb8ce54ba5fef1605bbfe49c827963ca7f2e0e0.zip |
Add chat command for using item by inventory index.
New chat command: /useinv INDEX
-rw-r--r-- | src/actions/actions.cpp | 12 | ||||
-rw-r--r-- | src/actions/actions.h | 1 | ||||
-rw-r--r-- | src/input/inputaction.h | 1 | ||||
-rw-r--r-- | src/input/inputactionmap.h | 9 |
4 files changed, 23 insertions, 0 deletions
diff --git a/src/actions/actions.cpp b/src/actions/actions.cpp index d28edf826..bc641d331 100644 --- a/src/actions/actions.cpp +++ b/src/actions/actions.cpp @@ -1378,4 +1378,16 @@ impHandler(useItem) return true; } +impHandler(useItemInv) +{ + const int index = atoi(event.args.c_str()); + const Inventory *const inv = PlayerInfo::getInventory(); + if (inv) + { + Item *const item = inv->getItem(index); + PlayerInfo::useEquipItem(item, true); + } + return true; +} + } // namespace Actions diff --git a/src/actions/actions.h b/src/actions/actions.h index 3ccd916d0..5d7482642 100644 --- a/src/actions/actions.h +++ b/src/actions/actions.h @@ -97,6 +97,7 @@ namespace Actions decHandler(catchPet); decHandler(mercenaryFire); decHandler(useItem); + decHandler(useItemInv); } // namespace Actions #undef decHandler diff --git a/src/input/inputaction.h b/src/input/inputaction.h index 69dbe1147..12f989a07 100644 --- a/src/input/inputaction.h +++ b/src/input/inputaction.h @@ -504,6 +504,7 @@ namespace InputAction DROP_ITEM_ALL, DROP_INV, DROP_INV_ALL, + USE_INV, TOTAL }; } // namespace InputAction diff --git a/src/input/inputactionmap.h b/src/input/inputactionmap.h index e22b12021..b27b9755a 100644 --- a/src/input/inputactionmap.h +++ b/src/input/inputactionmap.h @@ -4279,6 +4279,15 @@ static const InputActionData inputActionData[InputAction::TOTAL] = { InputCondition::INGAME, "dropinvall", true}, + {"keyUseInv", + InputType::UNKNOWN, InputAction::NO_VALUE, + InputType::UNKNOWN, InputAction::NO_VALUE, + Input::GRP_DEFAULT, + &Actions::useItemInv, + InputAction::NO_VALUE, 50, + InputCondition::INGAME, + "useinv", + true}, }; #endif // INPUT_INPUTACTIONMAP_H |