From fec90122c3deedf9369295f02cf51d669dd66d4f Mon Sep 17 00:00:00 2001 From: Star-Demon Date: Sun, 2 Jan 2011 11:55:00 -0500 Subject: [PATCH] Added enumerated States to inputmanager to handle future standard actions. --- apps/openmw/mwinput/inputmanager.cpp | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/apps/openmw/mwinput/inputmanager.cpp b/apps/openmw/mwinput/inputmanager.cpp index 0544df6f0f..c5353d7b11 100644 --- a/apps/openmw/mwinput/inputmanager.cpp +++ b/apps/openmw/mwinput/inputmanager.cpp @@ -45,6 +45,24 @@ namespace MWInput A_Activate, + A_Use, //Use weapon, spell, etc. + A_Jump, + A_AutoMove, //Toggle Auto-move forward + A_Rest, //Rest + A_Journal, //Journal + A_Weapon, //Draw/Sheath weapon + A_Spell, //Ready/Unready Casting + A_AlwaysRun, //Toggle Always Run + A_CycleSpellLeft, //cycling through spells + A_CycleSPellRight, + A_CycleWeaponLeft,//Cycling through weapons + A_CycleWeaponRight, + + A_QuickSave, + A_QuickLoad, + A_QuickMenu, + A_GameMenu, + A_LAST // Marker for the last item };