Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Struggling to distinguish between frameworks for iOS game development. Looking to draw a comparison amongst following frameworks i came across :

How to choose between frameworks or we can mix/match these together, what goes with what ?

  1. Cocos2d
  2. Quartz2D
  3. OpenGL ES
  4. sparrow
  5. any other frameworks out there to consider ?

Which collision detection framework to use :

  1. Box2D or chipmunk ?
  2. is this a choice only with cocos2d ? what if i am using any of the other frameworks listed above , e.g openGL ES - can box2d be used with that or some other popular framework serves a better combination ?

edit #1 When we start a fresh cocos2d project following lines of code seems to be ref to openGl - does that mean we can mix and match the two or one is built on top of other... ?

EAGLView *glView = [EAGLView viewWithFrame:[window bounds]
                               pixelFormat:kEAGLColorFormatRGB565   // kEAGLColorFormatRGBA8
                               depthFormat:0                        // GL_DEPTH_COMPONENT16_OES
                    ];

// attach the openglView to the director
[director setOpenGLView:glView];
share|improve this question
maniacdev.com/2009/08/… – bryanmac Mar 20 '12 at 3:11
check corona sdk anscamobile.com/corona – Setrio Mar 20 '12 at 13:39

1 Answer

Ok, Regarding physics engine of Box2d or chipmunk, i think both are great, each having its own benefits, it depends on you, using which engine you are more comfortable with?

Chipmunk is written in C, while Box2d is c++.

Box2D does support Continuous Collision Detection, but Chipmunk does not.

I personally use Box2d, may be i will be little biased, but i prefer Box2d. You can search more on cocos2d forum http://www.cocos2d-iphone.org/forum/.

Now regarding the frameworks, then what i know cocos2d and sparrow are the game engines while openGL ES and Quartz 2D are the graphics rendering API.

there is a post regarding the difference between a framework and the engine given below What's the difference between an "engine" and a "framework"?

cocos2d uses openGL ES for drawing , difference between cocos2d and sparrow is well defined in the link given by bryanmac.

Using an engine is far more better to start than using an API and create your own framework. You will get many well defined functions already written in the engine which you have to code yourself if you use only rendering API.

I don't know much about sparrow but cocos2d is thoroughly developed, well documented, open source, Objective C language, so i will prefer cocos2d.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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