vote up 1 vote down star

I want to develop a 2d game. I have to choose from Quartz/CoreGraphics, OpenGL ES or Cocos2D. I'm interested in how the game Pocket God is realized because it fulfills perfectly my needings.

Do you know which technology is used to build the game Pocket God?

flag

61% accept rate
1  
Have you tried asking the developers of the game themselves? All we can do is guess. – Brad Larson Oct 21 at 12:23
2  
Cocos2D is very popular nowadays, and it uses OpenGL ES behind the scenes anyway. I would look at that first. – prideout Oct 21 at 13:48
I asked, but no response! – Ricibald Oct 30 at 15:22
I have finally a response! He used only OpenGL, without any framework. – Ricibald yesterday

4 Answers

vote up 2 vote down check

Developer Dave Castelnuovo mentions OpenGL in the touchArcade forums.

link|flag
vote up 1 vote down

According to Dave Castelnouvo (Creator of Pocket God) they built their own engine using the standard iPhone SDK.

If you are interested in using their engine you will have to contact Dave at Bolt Creative to see if they are willing to license it out.

However there are a number of publicly (but not free) engines around for building iPhone games. I would start with one of those before going after a non-public one.

link|flag
there are also many engine free to build iphone games! – Ricibald Nov 3 at 12:47
Do you have links to free ones? I couldn't find any good ones that are completely free, including re-distribution rights. – Creepy Gnome Nov 7 at 2:49
vote up 1 vote down

If your goal is to build a 2D game for the iPhone, just use Cocos2D (or another high level game engine). If you have issues working with third party libraries, use CoreGraphics. If your goal is to be a graphics programming expert, go with OpenGL.

In general terms, Cocos2D is built on CoreGraphics which is built on OpenGL. You could accomplish all the graphics in Pocket God by directly using OpenGL, but it would be much harder than just using the higher level graphics package. Each package abstracts and simplifies using the lower level package.

You have more control and a broader range of possibilities when using the lower level packages, but you also need a deeper understanding of the fundamentals of computer graphics programming.

One caution when using the higher level package is that trying to do something that stretches the capabilities of the package, adding that unique graphic effect to your game for example, will require learning the lower level package anyway. Your choice is either to abandon that extra feature or climb another learning curve.

link|flag
vote up 0 vote down

The official answer given to me by email is:

We actually use openGL because it’s the most flexible, we wrote our own engine and to not use and libraries to handle anything.

link|flag

Your Answer

Get an OpenID
or

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