From 3bb8ce54ba5fef1605bbfe49c827963ca7f2e0e0 Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Sat, 13 Dec 2014 13:29:06 +0300 Subject: Add chat command for using item by inventory index. New chat command: /useinv INDEX --- src/actions/actions.cpp | 12 ++++++++++++ src/actions/actions.h | 1 + src/input/inputaction.h | 1 + src/input/inputactionmap.h | 9 +++++++++ 4 files changed, 23 insertions(+) (limited to 'src') 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 -- cgit v1.2.3-60-g2f50