Uncategorized

Android Game: Divide & Conquer

5

The Android Developers Blog has not only released a new game for Android devices but they’ve open sourced it so developers can see the various APIs and tools used in a real world application. The backstory of the game’s development is pretty funny: Karl Rosaen remembered playing a simple childhood computer game but couldn’t remember the name of it. So he built it, showed it to someone and they said, “That looks like Jezzball!”

Ah, Jezzball… the name of the game for which Karl Rosaen had been searching for oh so long. I feel for his pain as I too loved this game but never would have guessed the name. If you didn’t play Jezzball as a kid, you really missed out.

Here is a video of the ORIGINAL Jezzball, Windows 95 version:

The game was recreated for Android and if you don’t feel like watching the video, the idea is to partition of balls that are bounding around by dividing the box in quadrants. Each level you pass adds another ball to the game.

Here are some screenshots from the actual Android game:

And for you developer types, here is what the Android Developers Blog says you have to learn from all of this Developing and Conquering:

While this game isn’t going to win any awards for cutting edge graphics, it demonstrates use of several Android features and APIs:

  • custom drawing and animation
  • touch input based gesture detection
  • overriding the default behavior of the back key in some situations (to pause the game)
  • creating custom Dialogs
  • configuring an application to be full screen with no title or status bar
  • use of the preferences framework
  • use of the vibrator API

DivideAndConquerView is a custom View that implements its own onDraw method using the Canvas methods, and gesture detection using onTouchEvent and a helper class DirectionPoint. It keeps track of the state of the game using BallEngine, and reports relevant events back to the main activity of the application, which, in turn, keeps track of and controls the state of the game. The application is configured to be full screen in its AndroidManifest.xml file.

[Via Android Developers Blog]

Rob Jackson
I'm an Android and Tech lover, but first and foremost I consider myself a creative thinker and entrepreneurial spirit with a passion for ideas of all sizes. I'm a sports lover who cheers for the Orange (College), Ravens (NFL), (Orioles), and Yankees (long story). I live in Baltimore and wear it on my sleeve, with an Under Armour logo. I also love traveling... where do you want to go?

Gizmondo: Android’s 1st Gaming Device

Previous article

HTC Dream: October 20th!

Next article

You may also like

5 Comments

  1. I know this game as KBounce, an arcade game in the KDE games menu.

  2. I remember this as Qix. Old school arcade game. Looks pretty shitty here.

  3. oh jezzball, how many hours have i wasted with you? I loved this game. However I remember qix as slightly different. This had better physics for the bouncing balls and qix used sparks?

  4. AHHHH!! I remember this game! It was so addictive. But I could never quite get through the fifth level…. :\

  5. I enjoy divide and conquer, but there is one problem. If you switch to another application, go through several more, and come back, you find yourself back at the beginning of level 1, having lost your hard won position in (say) level 9.

    Shouldn’t the game, before being shut down by the OS to conserve memory, save its state?

Leave a reply

Your email address will not be published. Required fields are marked *