I tried to run this code by both android emulator and jvm. On JVM it sleeps 33-34 ms as it should be, however on android it is 68-85ms. Why is it so inaccurate ?
Thank you for your help.
package android.apps.td;
public class Logic implements Runnable {
private long frame_time = 1000000000/30;
private long offset = 0;
private long timestamp = 0;
public void run(){
long step;
while(true){
step = System.nanoTime();
if((offset = (step - timestamp)) > frame_time){
System.out.println("FRAME "+(step - timestamp)/1000000+" ms");
timestamp = step;
update();
render();
repaint();
try {
Thread.sleep(frame_time/1000000+1);
} catch (InterruptedException e) {
e.printStackTrace();
}
}else{
try {
System.out.println("Sleep ["+((frame_time-offset)/1000000+1)+" ms]");
Thread.sleep(((frame_time-offset)/1000000+1));
} catch (InterruptedException e) {
e.printStackTrace();
}
}
}
}
private void update() {
}
private void render() {
}
private void repaint() {
}
}