I'm making a 2D game for android and I've recently been looking at optimisation. I looked at the battery-use in settings and found that after leaving my game in the foreground (with screen on) for a little over an hour I had drained 11% of the battery (Motorola Xoom Honeycomb). Is this something that users will expect from a game on their phone/tablet?

A bit of Info:

  • My game uses Opengl-es for rendering (continuous render)

  • Logic runs in a separate thread for performance.

  • I used getWindow().addFlags(WindowManager.LayoutParams.FLAG_KEEP_SCREEN_ON); thought it was necessary as the game requires a bit of thinking time from the user.

  • Simple Particles

So is that kind of battery use normal for a game and what steps can I take to reduce it?

link|improve this question

79% accept rate
If you can schedule small Thread.wait(timeout) in your various threads it will remove the tax on the CPU and therefore be better for battery. i.e. if you've updated the screen recently, you can actually wait, say, at least 20ms (50Hz) before updating again. – BicycleDude Feb 9 at 20:05
@BicycleDude thats a good idea. It would still need a good 30fps during certain parts of gameplay but that sounds good. – Jack Feb 9 at 20:09
@BicycleDude is Thread.sleep a similar thing? – Jack Feb 9 at 20:10
@Jack: Yes, for your purpose, using Thread.wait(timeout) or Thread.sleep(timeout) is pretty much the same thing. – Tudor Feb 9 at 20:14
The problem with adding this delay is that if your rendering code takes 5ms usually and 20ms in extremes, your frame rate will dip. A solution to get constant render rate is to measure the time it took to render and subtract that from the time you sleep so that regardless or render time the next frame is evenly spaced and consistent. – gravitron Feb 9 at 20:26
show 5 more comments
feedback

1 Answer

up vote 0 down vote accepted

Leaving the screen on alone (without the game running) will generate similar battery usage.

My advice to you would be to Set the screen to Dim whenever there is a pause in your game, or if the user has not touched the screen in X amount of time as oppose to leaving it on at full brightness.

You can do this by adjusting screenBrightness/buttonBrightness,

The range of these fields is 0-> 1

you can see the Context of setting this here

link|improve this answer
but doesn't the screen's battery usage get its own section in the chart? (which used 43% of the battery according to my stats) – Jack Feb 9 at 20:28
yes! It does. This would still contribute to the total battery usage. Other than this and what BicycleDude has suggested, I would suggest reading this article: developer.android.com/training/monitoring-device-state/… – Justin Kirk Feb 9 at 20:50
One thing to be aware of is that dimming the screen doesn't work well/at all if the user has brightness set to "Automatic" (I've never managed to get it to work although it's not a priority at the moment) – Basic Feb 16 at 19:37
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.