Are there any game engines for iPhone? - Stack Overflow most recent 30 from stackoverflow.com2009-12-01T14:17:42Zhttp://stackoverflow.com/feeds/question/1049987http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1049987/are-there-any-game-engines-for-iphone3Are there any game engines for iPhone?Roman Kagan2009-06-26T16:15:00Z2009-11-15T16:00:11Z
<p>Are there any game engines for iPhone?</p>
http://stackoverflow.com/questions/1049987/are-there-any-game-engines-for-iphone/1050004#10500047Answer by Mel for Are there any game engines for iPhone?Mel2009-06-26T16:17:31Z2009-06-26T16:17:31Z<p>Yes. A quick google search shows:</p>
<ul>
<li><a href="http://code.google.com/p/cocos2d-iphone/" rel="nofollow">cocos2d</a></li>
<li><a href="http://unity3d.com" rel="nofollow">Unity</a></li>
<li><a href="http://oolongengine.com/" rel="nofollow">Oolong Engine</a></li>
<li><a href="http://www.garagegames.com/products/tge" rel="nofollow">Torque</a></li>
</ul>
<p>And others.</p>
http://stackoverflow.com/questions/1049987/are-there-any-game-engines-for-iphone/1050011#10500111Answer by Brandon E Taylor for Are there any game engines for iPhone?Brandon E Taylor2009-06-26T16:18:51Z2009-06-26T16:18:51Z<p>There is an <a href="http://www.garagegames.com/products/torque-2d/iphone" rel="nofollow">iPhone version</a> of the <a href="http://www.garagegames.com/products/torque/tge/" rel="nofollow">Torque Game Engine</a>.</p>
<p>There is also:</p>
<ul>
<li>The <a href="http://sio2interactive.com/GAMES.html" rel="nofollow">SIO2 Game Engine</a> </li>
<li><a href="http://www.stonetrip.com/shiva/shiva-3d-game-engine.html" rel="nofollow">ShiVa</a></li>
<li><a href="http://unity3d.com/" rel="nofollow">Unity</a></li>
</ul>
http://stackoverflow.com/questions/1049987/are-there-any-game-engines-for-iphone/1050080#10500805Answer by slf for Are there any game engines for iPhone?slf2009-06-26T16:37:43Z2009-11-15T16:00:11Z<p>The two most popular are probably <a href="http://oolongengine.com/" rel="nofollow">Oolong</a> and <a href="http://sio2interactive.com/DOWNLOAD.html" rel="nofollow">SIO2</a> but for what it's worth, I recommend you do something like this:</p>
<ul>
<li>Sound: use CAF files and apple's own SoundEngine OpenAL wrapper class from the samples (beware, there are memory leaks in the example code you'll need to plug)</li>
<li>Models: use <a href="http://bill.dudney.net/roller/objc/entry/wave%5Ffront%5Fobj%5Ftextures%5Fworking" rel="nofollow">this wavefront OBJ loader</a> for obj and mtl files exported directly from Blender or Max</li>
<li>Textures: use Apple's own Texture2D class from the samples (bmp will work, but I recommend png because of the platform optimizations)</li>
<li>'Engine' is really just the classes that glue this stuff together. <a href="http://www.studiomike.net/doc/class%5Fgame%5Fengine%5F1%5F1%5Fbase%5Fgame.html" rel="nofollow">This guy's doxygen</a> seems kind of "textbook". <a href="http://alanmorey.com/moge/blog/archives/130" rel="nofollow">This guy</a> also has a decent example UML too (IMHO). </li>
</ul>
<p>Personally I think it's all so subjective, you really should write this stuff yourself because it should be architected for the way you need it, not just something written that tries to be everything to everybody.</p>
<p>FYI, our team decided to do everything in Objective-C++, where the core of the game is written in C++ and there is a thin layer of Objective-C on top of it that glues the code to the UI widgets and such things.</p>
http://stackoverflow.com/questions/1049987/are-there-any-game-engines-for-iphone/1733264#17332641Answer by Matthew Kleinrock for Are there any game engines for iPhone?Matthew Kleinrock2009-11-14T04:25:55Z2009-11-14T04:25:55Z<p>The best way to do this is to use Cocos2d or role your own code. The apple sdk does not permit for third party sdk's and you would want to take advantage of the full resources of objective c in xcode anyway. Learn objective c it is not hard and it is getting miserable listening to all the web and javascripters out there trying to find an easy way when it couldn't be easier then Apples own tools.</p>