Revert "Fix close inputs being throttled, and speed up scrolling when a key is held (#3515)"

This reverts commit 614d4ac2f79195544c7f01ce3bb21bb1b64e6f6e.
This commit is contained in:
Deve 2018-10-24 21:16:18 +02:00
parent 5918a6025e
commit a05fa23bf3
2 changed files with 13 additions and 21 deletions

View File

@ -82,7 +82,6 @@ InputManager::InputManager() : m_mode(BOOTSTRAP),
m_timer_in_use = false; m_timer_in_use = false;
m_master_player_only = false; m_master_player_only = false;
m_timer = 0; m_timer = 0;
m_timer_use_count = 0;
} }
// ----------------------------------------------------------------------------- // -----------------------------------------------------------------------------
@ -824,6 +823,12 @@ void InputManager::dispatchInput(Input::InputType type, int deviceID,
// ... when in menus // ... when in menus
else else
{ {
// reset timer when released
if (abs(value) == 0 && type == Input::IT_STICKBUTTON)
{
m_timer_in_use = false;
m_timer = 0;
}
// When in master-only mode, we can safely assume that players // When in master-only mode, we can safely assume that players
// are set up, contrarly to early menus where we accept every // are set up, contrarly to early menus where we accept every
@ -855,10 +860,7 @@ void InputManager::dispatchInput(Input::InputType type, int deviceID,
if (abs(value) > Input::MAX_VALUE*2/3) if (abs(value) > Input::MAX_VALUE*2/3)
{ {
m_timer_in_use = true; m_timer_in_use = true;
m_timer = 0.25;
// After three iterations of the timer, pick up the scrolling pace
m_timer_use_count++;
m_timer = m_timer_use_count > 3 ? 0.05 : 0.25;
} }
// player may be NULL in early menus, before player setup has // player may be NULL in early menus, before player setup has
@ -885,14 +887,6 @@ void InputManager::dispatchInput(Input::InputType type, int deviceID,
->processGUIAction(action, deviceID, abs(value), type, ->processGUIAction(action, deviceID, abs(value), type,
playerID); playerID);
} }
// reset timer when released
if (abs(value) == 0)
{
m_timer_in_use = false;
m_timer = 0;
m_timer_use_count = 0;
}
} }
} }
else if (type == Input::IT_KEYBOARD) else if (type == Input::IT_KEYBOARD)

View File

@ -46,6 +46,9 @@ public:
BOOTSTRAP BOOTSTRAP
}; };
// to put a delay before a new gamepad axis move is considered in menu
bool m_timer_in_use;
float m_timer;
private: private:
@ -65,11 +68,6 @@ private:
*/ */
int m_mouse_val_x, m_mouse_val_y; int m_mouse_val_x, m_mouse_val_y;
// to put a delay before a new gamepad axis move is considered in menu
bool m_timer_in_use;
int m_timer_use_count;
float m_timer;
void dispatchInput(Input::InputType, int deviceID, int btnID, void dispatchInput(Input::InputType, int deviceID, int btnID,
Input::AxisDirection direction, int value, Input::AxisDirection direction, int value,
bool shift_mask = false); bool shift_mask = false);