From b6dfae02215d7bd61e06ff1999ee3ecb0ec80b9e Mon Sep 17 00:00:00 2001 From: Duane Robertson Date: Mon, 28 Sep 2015 13:59:03 -0500 Subject: WoW-style Autorun This allows the player to toggle continuous forward with a key (F by default), so we don't have to hold down the forward key endlessly. --- src/game.cpp | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'src/game.cpp') diff --git a/src/game.cpp b/src/game.cpp index 36945f343..df5ab701a 100644 --- a/src/game.cpp +++ b/src/game.cpp @@ -1234,6 +1234,7 @@ struct KeyCache { KEYMAP_ID_JUMP, KEYMAP_ID_SPECIAL1, KEYMAP_ID_SNEAK, + KEYMAP_ID_AUTORUN, // Other KEYMAP_ID_DROP, @@ -1286,6 +1287,8 @@ void KeyCache::populate() key[KEYMAP_ID_SPECIAL1] = getKeySetting("keymap_special1"); key[KEYMAP_ID_SNEAK] = getKeySetting("keymap_sneak"); + key[KEYMAP_ID_AUTORUN] = getKeySetting("keymap_autorun"); + key[KEYMAP_ID_DROP] = getKeySetting("keymap_drop"); key[KEYMAP_ID_INVENTORY] = getKeySetting("keymap_inventory"); key[KEYMAP_ID_CHAT] = getKeySetting("keymap_chat"); @@ -2615,6 +2618,10 @@ void Game::processKeyboardInput(VolatileRunFlags *flags, if (input->wasKeyDown(keycache.key[KeyCache::KEYMAP_ID_DROP])) { dropSelectedItem(); + // Add WoW-style autorun by toggling continuous forward. + } else if (input->wasKeyDown(keycache.key[KeyCache::KEYMAP_ID_AUTORUN])) { + bool autorun_setting = g_settings->getBool("continuous_forward"); + g_settings->setBool("continuous_forward", !autorun_setting); } else if (input->wasKeyDown(keycache.key[KeyCache::KEYMAP_ID_INVENTORY])) { openInventory(); } else if (input->wasKeyDown(EscapeKey) || input->wasKeyDown(CancelKey)) { -- cgit v1.2.3