SFML community forums
General => General discussions => Topic started by: MonkeyKnight on April 17, 2012, 01:41:34 am
-
How would one disable the screensaver?
I have looked through the docs, but can't seem to find it.
Thanks.
-
This is completely irrelevant to SFML. Programs can not turn off the screensaver. Only the user can through changing their options in the OS.
-
You cant disable it with SFML like OniLinkPlus said but maybe you could use sf::mouse::SetPosition() every few seconds.just move it by like a pixel from its current position or something so it doesn't look weird. Not 100% sure if it would work and pretty hacky but if you plan on just having the program run without user input for an extended period of time it might not be a big deal
-
This is completely irrelevant to SFML.
Perhaps this is a bit harsh. In SDL2 I would call SDL_DisableScreenSaver();
. I was merely looking for an equivalent to this in SFML.
Perhaps it is completely not possible in SFML, but to say completely irrelevant?
I am trying to use SFML2 in place of SDL2 in our kiosk systems. So, my next task is going to be to disable the mouse - so I am not sure that will work as planned either.
-
Which OS are you targeting?
You'll probably need to use OS dependant API in order to achieve this. I don't know what is provided for this on Windows but on Mac OS X there are functions to prevent the OS from sleeping. Actually they are designed for usecases such as yours.
-
Targeting Linux. Multiple distros. I develop mainly on OS X, deploy test runs on Linux, usually Ubuntu or Debian.
I will have to look through the SDL code to see what they are doing, and perhaps add that to SFML if time permits.
Thanks for your help!
-
Windows: SetThreadExecutionState()
Linux: XResetScreenSaver()
Mac OS X: UpdateSystemActivity()
-
Excellent. Thank you very much!