Java game Garbage Collection

Started by
2 comments, last by fae 11 years, 4 months ago
When initializing the game, I do create temporary objects for X reasons.

When the game is ready for the main update loop, there is a series of small hiccups, that doesn't last much.

What is the best approach to eliminate these hiccups?

I was thinking in a black screen that would last X seconds once the main update loop is readt, this way the GC would enter (I hope) before I let the user play.

What do you think?
Advertisement
I don't think the black screen is a good idea. At the initialization of the game you should load alll necessary objects that you will need. Then, depending on the game, you could use a cache system to access to your preloaded objects which should eliminate hiccups if you do it right. If you have to load objects at runtime, you can load it into the cache and then always access it from there. Though, you need to release objects that you don't need anymore from the cache afterward.

And by "cache" I don't mean anything complicated. It can be a hashmap of objects with names as key.

Think about it, if you have hiccups it's surely because you are loading something at each loop pass.
You should avoid frequently allocate/free objects, e.g, allocate a lot of objects in each frame.
Instead, allocate some objects before entering the level and reuse them until the level is finished. That's some kind of "cache" or "pool".
Also, check if you have a lot of string "add" operation. S3 = S1 + S2 will cause dynamic memory allocation, IMO.

https://www.kbasm.com -- My personal website

https://github.com/wqking/eventpp  eventpp -- C++ library for event dispatcher and callback list

https://github.com/cpgf/cpgf  cpgf library -- free C++ open source library for reflection, serialization, script binding, callbacks, and meta data for OpenGL Box2D, SFML and Irrlicht.

Have you already analysed that the delay is really caused by Java garbage collection? If not, I'd really recommend analysing the problem more thoroughly before committing to any changes. There are lots of other possible causes for such delays when presenting game data to the end user, e.g. preparing the graphics context, establishing and initialising buffers in an OpenGL application etc. However we can't really speculate on these as we don't know what type of an application you have and what libraries and frameworks you're using.

Depending on the environment and SDK you could already have a suitable tool for analysing this, see http://docs.oracle.com/javase/6/docs/technotes/guides/visualvm/intro.html and http://docs.oracle.com/javase/6/docs/technotes/guides/management/jconsole.html.

IF the problem really is with GC, the recommendations above are really good. Other viable solution could be explicitly calling System.gc after the init is done. This basically asks the system to perform GC (note that it doesn't force it, the JVM is free to ignore the request). Depending on the situation this could prevent the GC from happening during the actual game logic. However the other approaches highlighted above are usually more appropriate as they limit any further GCs during the game.

This topic is closed to new replies.

Advertisement