I have been working on my first game ever :)
It is a android based game using libgdx and is using a modified example of one the DeWiTTERS loop
The game loop seems to work perfectly fine running on the desktop (59 - 60 fps) however when i run on my phone it tends to sit somewhere around 75 - 90 FPS
nextGameTick should always be referingto 16ms into the future so that the game loop runs at 60 FPS or less, why is this not the case
Here is the main part of the game loop for reference:
public void render() {
nextGameTick = System.nanoTime() + skipTicks;
loopTimeFull = System.nanoTime();
Application app = Gdx.app;
screen.update(app); // Update the screen
screen.render(app); // Render the screen
// when the screen is done we change to the
// next screen
if (screen.isDone()) {
// dispose the current screen
screen.dispose();
<snip>
// Removed unneded part of code for this example
</snip>
}
}
// Make the thread sleep
General.renderTime = System.nanoTime() - loopTimeFull;
while (System.nanoTime() <= nextGameTick - General.renderTime) {
try {
Thread.sleep(1);
} catch (InterruptedException e) {
e.printStackTrace();
}
}
General.loopTime = System.nanoTime() - loopTimeFull;
if (General.loopTime > 0)
General.curFps = 1000000000 / General.loopTime;
else
Gdx.app.log("Air Offense", "General.loopTime == 0");
General.curFps = 1000000000 / General.loopTime;? – Mister Smith Oct 20 '11 at 7:29Thread.sleepmethod you are using has a parameter in ms. There's an overloaded method accepting ns also. However, neither of these are guaranteed to sleep exactly a certain ammount of time. To have a greater precission, use a Timer to sleep exactly the required ns in a single wait. – Mister Smith Oct 20 '11 at 8:10