[Android] Poll joysticks every three seconds

Gabriel Jacobo 2013-12-12 14:55:33 -03:00
parent 35ab76d083
commit 2159de66c4
1 changed files with 7 additions and 2 deletions

View File

@ -34,6 +34,7 @@
#include "SDL_joystick.h" #include "SDL_joystick.h"
#include "SDL_hints.h" #include "SDL_hints.h"
#include "SDL_assert.h" #include "SDL_assert.h"
#include "SDL_timer.h"
#include "SDL_sysjoystick_c.h" #include "SDL_sysjoystick_c.h"
#include "../SDL_joystick_c.h" #include "../SDL_joystick_c.h"
#include "../../core/android/SDL_android.h" #include "../../core/android/SDL_android.h"
@ -339,10 +340,14 @@ int SDL_SYS_NumJoysticks()
void SDL_SYS_JoystickDetect() void SDL_SYS_JoystickDetect()
{ {
/* Support for device connect/disconnect is API >= 16 only, /* Support for device connect/disconnect is API >= 16 only,
* so we have to poll ever few seconds. * so we poll every three seconds
* Ref: http://developer.android.com/reference/android/hardware/input/InputManager.InputDeviceListener.html * Ref: http://developer.android.com/reference/android/hardware/input/InputManager.InputDeviceListener.html
*/ */
Android_JNI_PollInputDevices(); static Uint32 timeout = 0;
if (SDL_TICKS_PASSED(SDL_GetTicks(), timeout)) {
timeout = SDL_GetTicks() + 3000;
Android_JNI_PollInputDevices();
}
} }
SDL_bool SDL_SYS_JoystickNeedsPolling() SDL_bool SDL_SYS_JoystickNeedsPolling()