I wanted to write some simple game in android using opengl es but immediately ran into trouble with the main game loop. As I read here: http://developer.android.com/resources/tutorials/opengl/opengl-es10.html the app calls public void onDrawFrame(GL10 gl) every time it needs to redraw the surface. Or smth like that. My problem was - how to create an update loop that is independent of draw calls. I mean - it can't work like that, I can't update the game logic only when the device (app?) wants to redraw the surface (or am I wrong?).
After some googling I came to a conclusion that I have to create another thread for update loop. But then I had another problem - with one thread taking care of drawing and another one taking care of updating the game logic I didn't know how to make them cooperate. First, they were two separate classes (at least in my implementation) so they couldn't use the same game variables and objects (sprites, timers, different variables, counters and so on... pretty much everything these two classes needed to do their jobs). Now I think I could somehow pack them both into one class. But - second, I needed to synchronize the two threads somehow.
Finally, I came out with this general idea:
- 3 classes:
public class MyRenderer implements GLSurfaceView.RendererwithonSurfaceCreated()method taking care of drawingpublic class UpdateThread implements Runnablewithrun()andupdate()methods.run()was callingupdate()method exactly 60 times a second (I wanted a fixed step loop)public class SpritesHolderused as a container for all the game objects/variables/stuff (like sprites, timers, state variables and so on...) with all the fields public.
- So basically the
SpritesHolderclass was a box holding all the needed variables in one place, soMyRendererandUpdateThreadclasses could access it and use it. As for synchronization - I just did smth like this:
public void update(float delta) { synchronized (spritesHolder) { // whole method code... } }and:
public void onDrawFrame(GL10 gl) { synchronized (spritesHolder) { // whole method code... } }so that both threads didn't use the spritesHolder at the same time. So updates were done 60 times per second and drawing took place whenever app (device?) needed.
A lot of talking, sorry, I've almost finished writing this post. ;) So anyway - this (described above) works and I even did write some game based on this 'template' but I think my ideas might be crazy and one can desing it all a whole lot better. I'd be very grateful for all comments and advices.