summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/actions/actions.cpp13
-rw-r--r--src/actions/actions.h1
-rw-r--r--src/input/inputaction.h1
-rw-r--r--src/input/inputactionmap.h9
4 files changed, 24 insertions, 0 deletions
diff --git a/src/actions/actions.cpp b/src/actions/actions.cpp
index 135fec27f..36a463da5 100644
--- a/src/actions/actions.cpp
+++ b/src/actions/actions.cpp
@@ -1434,4 +1434,17 @@ impHandler(invToStorageAll1)
return true;
}
+impHandler(invToStorageAll)
+{
+ Item *const item = getItemByInvIndex(event);
+ if (!item)
+ return true;
+
+ inventoryHandler->moveItem2(Inventory::INVENTORY,
+ item->getInvIndex(),
+ item->getQuantity(),
+ Inventory::STORAGE);
+ return true;
+}
+
} // namespace Actions
diff --git a/src/actions/actions.h b/src/actions/actions.h
index 36daa9c21..14027bca9 100644
--- a/src/actions/actions.h
+++ b/src/actions/actions.h
@@ -102,6 +102,7 @@ namespace Actions
decHandler(invToStorage10);
decHandler(invToStorageHalf);
decHandler(invToStorageAll1);
+ decHandler(invToStorageAll);
} // namespace Actions
#undef decHandler
diff --git a/src/input/inputaction.h b/src/input/inputaction.h
index 044df1ab1..f5c4c927f 100644
--- a/src/input/inputaction.h
+++ b/src/input/inputaction.h
@@ -509,6 +509,7 @@ namespace InputAction
INV_TO_STORAGE_10,
INV_TO_STORAGE_HALF,
INV_TO_STORAGE_ALL_1,
+ INV_TO_STORAGE_ALL,
TOTAL
};
} // namespace InputAction
diff --git a/src/input/inputactionmap.h b/src/input/inputactionmap.h
index f8427e397..a96353857 100644
--- a/src/input/inputactionmap.h
+++ b/src/input/inputactionmap.h
@@ -4324,6 +4324,15 @@ static const InputActionData inputActionData[InputAction::TOTAL] = {
InputCondition::INGAME,
"invtostorageall1|invstorageall1",
true},
+ {"keyInvToStorageAll",
+ InputType::UNKNOWN, InputAction::NO_VALUE,
+ InputType::UNKNOWN, InputAction::NO_VALUE,
+ Input::GRP_DEFAULT,
+ &Actions::invToStorageAll,
+ InputAction::NO_VALUE, 50,
+ InputCondition::INGAME,
+ "invtostorageall|invstorageall",
+ true},
};
#endif // INPUT_INPUTACTIONMAP_H