Java-Gaming.org
Play Revenge of the Titans! The situation is critical. We need fancy commanders to defend Earth, the moon, Mars!
Featured games (78)
games approved by the League of Dukes
Games in Showcase (407)
games submitted by our members
Games in WIP (293)
games currently in development
News: Read the Java Gaming Resources, or peek at the official Java tutorials
 
    Home     Help   Search   Login   Register   
Pages: [1]
  ignore  |  Print  
  My Android Game Loop problems  (Read 3327 times)
0 Members and 1 Guest are viewing this topic.
Offline Zippy

JGO Visitor




« Posted 2013-02-24 17:50:46 »

Hey all, I'm using the loop below and it works great until I introduce a notifier to cap my rendering to 30 FPS (Basically so that it doesn't render redundant frames and only renders when an update has occured)

Initially I was having problems with the sprites being choppy so added interpolation and it really helped to smooth things out, but as I say, on capping the rendering it has re-introduces intermittent (although not terrible) choppiness.

Any ideas? Thanks!  Clueless

1  
2  
3  
4  
5  
6  
7  
8  
9  
10  
11  
12  
13  
14  
15  
16  
17  
18  
19  
20  
21  
22  
23  
24  
25  
26  
27  
28  
29  
30  
31  
32  
33  
34  
35  
36  
37  
38  
39  
40  
41  
42  
43  
44  
45  
46  
47  
48  
49  
50  
51  
52  
53  
 @Override
            public void run() {
               
               nextGameTick = System.nanoTime();            
                Canvas c;
                while (running) {
                    c=null;
                    loops = 0;
              if (gameTimer==0){gameTimer=System.nanoTime();//frame=0;
            }  
               while(System.nanoTime() > nextGameTick && loops < maxFrameskip){
                 
                  updateMenu();            
                  nextGameTick += skipTicks;  
                  loops++;            
               
               }          
               
                 float interpolation = (float)(System.nanoTime() + skipTicks - nextGameTick)
                 / (float)(skipTicks);
                 
               if (updateGame == true) {                     //Has logic routine run? If so, then render
               
                   
               try{c=mySurfaceHolder.lockCanvas(null);                          
             
            synchronized(mySurfaceHolder){
           
                 
             
               
               draw(c, interpolation);                        
               updateGame=false;
            }
                       
         }
         finally{
               
            if (c != null){
            mySurfaceHolder.unlockCanvasAndPost(c);                  
         
                                         }
                                            }
                              }
             
                              }
                           }
            }
           
           
           
           }
   


I'm setting updateGame to true in my updateMenu() method.

PS - After changing Systemclock.elapsedRealtime() to System.Nanotime() it seems to have helped a little, but it's still not perfect.

I'm not creating any objects at run time and GC isn't being triggered but this is probably not relevant anyway as if I don't cap the rendering, it seems to run a lot smoother (which is kind of odd, as it's only then rendering the same frame as before i.e., no sprite movements).

My guess is that my capping/notification is somehow playing havoc with interpolation calculation? (timing issue?)

Thanks again!
Pages: [1]
  ignore  |  Print  
 
 

Play Revenge of the Titans! The situation is critical. We need fancy commanders to defend Earth, the moon, Mars!
 
Get high quality music tracks for your game!

Add your game by posting it in the WIP section,
or publish it in Showcase.

The first screenshot will be displayed as a thumbnail.

The invasion has landed! On Mars! And you're there to beat 'em!
cubemaster21 (98 views)
2013-05-17 21:29:12

alaslipknot (106 views)
2013-05-16 21:24:48

gouessej (136 views)
2013-05-16 00:53:38

gouessej (131 views)
2013-05-16 00:17:58

theagentd (143 views)
2013-05-15 15:01:13

theagentd (129 views)
2013-05-15 15:00:54

StreetDoggy (172 views)
2013-05-14 15:56:26

kutucuk (193 views)
2013-05-12 17:10:36

kutucuk (196 views)
2013-05-12 15:36:09

UnluckyDevil (202 views)
2013-05-12 05:09:57
Complex number cookbook
by Roquen
2013-04-24 12:47:31

2D Dynamic Lighting
by Oskuro
2013-04-17 16:46:12

2D Dynamic Lighting
by Oskuro
2013-04-17 16:45:57

2D Dynamic Lighting
by Oskuro
2013-04-17 16:23:20

Noise (bandpassed white)
by Roquen
2013-04-05 17:36:01

Noise (bandpassed white)
by Roquen
2013-04-03 16:17:38

Java Data structures
by Roquen
2013-03-29 13:21:12

Topic Request
by kutucuk
2013-03-22 21:42:01
Powered by MySQL Powered by PHP Powered by SMF 1.1.18 | SMF © 2013, Simple Machines | Managed by Enhanced Four Valid XHTML 1.0! Valid CSS!
Page created in 0.139 seconds with 21 queries.