-
Notifications
You must be signed in to change notification settings - Fork 2.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
SDL_WaitEvent() doesn't block when a joystick is used #5425
Comments
It's not a matter of reading joystick input (which already used polling in
As I mentioned in #4881, this is possible to do via
Unlike actually having a joystick connected, which triggers the legacy 1ms polling logic, all 1bc6dc3 does is cap the length of time we will spend blocking in the blocking We still block for 3000x longer when using |
this is not what i'm experiencing though. i've been single-stepping through SDL code (and discovering this) because my app was using constant 6% cpu (on machine throttled to 800mhz via powersave governor) while in a loop doing nothing else than SDL_WaitEvent(&evt).
if this is only about hotplugging, maybe we can make need_poll() return false if hotplug support isnt requested ? edit:
ouch, so this is exactly what i'm experiencing. i deliberately use SDL_WaitEvent() to NOT poll every one millisecond, while the menu system of my game is open. |
Yeah, the current situation is not ideal for games. The wait rework was done with SDL-based non-game applications in mind, which were really the most negatively impacted by the 1ms polling behavior. Avoiding polling on joysticks and sensors can definitely be done, but it will require some serious engineering effort to make it happen. It is fraught with corner cases and platform-specific dependencies. Maybe a hint to adjust that internal polling interval would be enough to make it tolerable for your use case? |
that doesn't really help, i could then just as well write an SDL_PollEvent() based loop with a custom SDL_Delay, which produces a battery-draining cpu use even at barely tolerable delay levels. i'd really like to see WaitEvent() becoming the API it's supposed to be, rather than producing worse results than even custom PollEvents loop depending on which subsystems have been activated. |
if provided and set to 1, the backend can use a blocking syscall to wait without generating cpu usage through polling until an event happens. currently only implemented for the SDL2 backend which can make use of SDL_WaitEvent() - which is currently frustrated by libsdl-org/SDL#5425 . this mode will be used by the new menu system to not generate cpu load while it is open and the user is idle.
I see your problem with the joystick @rofl0r. For my purpose I was more interested in the desktop application use case where joystick and sensor support can be disabled altogether. Unfortunately I cannot participate to any development to help your request due to lack of spare time from my side. |
github bug libsdl-org/SDL#5425 Signed-off-by: Graeme Gregory <[email protected]>
SDL 2.0 is now in maintenance mode, and all inactive issues are being closed. If this issue is impacting you, please feel free to reopen it with additional information. |
it's #3976 all over again... commit 1bc6dc3 effectively broke SDL_WaitEvent() if a joystick is used.
the commit message states:
but that's false, at least in linux joysticks are regular devices that can use poll()/select() syscalls to block until input is received.
The text was updated successfully, but these errors were encountered: