Framerate Limiting

You are an experienced programmer and have a problem with the engine, shaders, or advanced effects? Here you'll get answers.
No questions about C++ programming or topics which are answered in the tutorials!
Post Reply
dart_theg
Posts: 22
Joined: Sun Dec 29, 2024 3:13 am

Framerate Limiting

Post by dart_theg »

I've tried my hand at limiting the frame rate of my application like so:

u32 then = device->getTimer()->getTime();

f32 const frameDur = 1000.f / m_frameLimit;

^ runs before the update loop, m_frameLimit is the framerate limit (for example, 60 or 144)

f32 frameTime = device->getTimer()->getTime() - now;
if (frameTime < frameDur)
device->sleep((frameDur - frameTime) / 2.0);

^ runs at the end of each update

This results in pretty inconsistent results. What am I doing wrong and are there better approaches I should be using?
Noiecity
Posts: 252
Joined: Wed Aug 23, 2023 7:22 pm
Contact:

Re: Framerate Limiting

Post by Noiecity »

For consistency above 60 frames it is difficult, using vertical sync should be enough (I have not experimented with above 60 hz), but using timers it is difficult to get an accurate time if each frame is rendered in less than 16 ms, from here on the inconsistency is permanent if you rely on frame by frame due to the time it takes for the timer to do the calculation, but it is possible if you rely on more than one frame, for example, use a counter inside the loop and when it reaches an amount that is not 1, for example 4 (4 frames) get the elapsed time and limit.

The other way is to use a timer based on cpu cycles, but it is still quite cumbersome in these cases.

cutealien has been experiencing this problem for a lot of time lmao
**
If you are looking for people with whom to develop your game, even to try functionalities, I can help you, free. CC0 man.

Image
**
CuteAlien
Admin
Posts: 9842
Joined: Mon Mar 06, 2006 2:25 pm
Location: Tübingen, Germany
Contact:

Re: Framerate Limiting

Post by CuteAlien »

Yeah in short - sleep always sleeps until the next "tick" on Windows. Which happen by default every 16.625ms. And while that tick-time can be changed, there are some complications, see https://randomascii.wordpress.com/2020/ ... ule-change if you want to dig deep.

With current Irrlicht svn you can try working with repeated calls to yield() and a timer-check instead, but as I learned from the same guy I just linked above that is also bad: https://randomascii.wordpress.com/2012/ ... f-idleness

So ... Irrlicht sleep() on Windows should really be rewritten once more. In the meantime check those links and then decide what you want to do *sigh*
Maybe you'll even end up producing a nice patch for Irrlicht.
IRC: #irrlicht on irc.libera.chat
Code snippet repository: https://github.com/mzeilfelder/irr-playground-micha
Free racer made with Irrlicht: http://www.irrgheist.com/hcraftsource.htm
Brainsaw
Posts: 1223
Joined: Wed Jan 07, 2004 12:57 pm
Location: Bavaria

Re: Framerate Limiting

Post by Brainsaw »

I am limiting the framerate using the C++ 11 function std::sleep_until (https://en.cppreference.com/w/cpp/thread/sleep_until), like this

Calculate the time the frame after the current should be drawn
Render current frame
Sleep until the time calculated above

Seems to work fine for me, but I am only using this on Windows. But as it's standard C++ it should be available everywhere. Works fine I think
Image
Dustbin::Games on the web: https://www.dustbin-online.de/
CuteAlien
Admin
Posts: 9842
Joined: Mon Mar 06, 2006 2:25 pm
Location: Tübingen, Germany
Contact:

Re: Framerate Limiting

Post by CuteAlien »

Try to go beyond 65fps. Unless you speed up the timer even adding 1ms with sleep_until will mean it will sleep until the next Windows tick (the 16.625ms). Wasn't so bad in the past when all screens where limited to 60 fps anyway, but with 144Hz screens it's no longer working well.
IRC: #irrlicht on irc.libera.chat
Code snippet repository: https://github.com/mzeilfelder/irr-playground-micha
Free racer made with Irrlicht: http://www.irrgheist.com/hcraftsource.htm
dart_theg
Posts: 22
Joined: Sun Dec 29, 2024 3:13 am

Re: Framerate Limiting

Post by dart_theg »

Interesting notes, I'll be sure to take a look. Hopefully you're right that I find out a magical patch for this! I'll return if I have any findings.
Post Reply