I am writting a simple game, and I want to cap my framerate at 60 fps without making the loop eat my cpu. How would I do this?
|
|
You can read the Game Loop Article. It's very important that you first understand the different methodologies for the game loop before trying to implement anything. |
||
|
|
|
The simple answer is to set a java.util.Timer to fire every 17 ms and do your work in the timer event. |
||
|
|
|
|
Here's how I did it in C++... I'm sure you can adapt it.
Just call it with |
||
|
|
|
|
In java you could do, System.currentTimeMillis() to get the time in milliseconds instead of glfwGetTime(). Thread.sleep(time in milliseconds) makes the thread wait in case you don't know, and it must be within a try block. |
||
|
|
|
|
What I have done is to just continue to loop through, and keep track of when I last did an animation. If it has been at least 17 ms then go through the animation sequence. This way I could check for any user inputs, and turn musical notes on/off as needed. But, this was in a program to help teach music to children and my application was hogging up the computer in that it was fullscreen, so it didn't play well with others. |
||
|
|
