Suggested platform/tools for rapid game development and game prototyping - Stack Overflow most recent 30 from stackoverflow.com 2009-12-07T05:36:38Z http://stackoverflow.com/feeds/question/312357 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/312357/suggested-platform-tools-for-rapid-game-development-and-game-prototyping 20 Suggested platform/tools for rapid game development and game prototyping petter 2008-11-23T10:12:35Z 2009-11-15T04:33:44Z <p>What platforms and tools should I use for rapid game development and prototyping?</p> <p>Say that I have an idea for a simple game or a game mechanic that I want to try out, what are the best tools for quickly creating something playable that I can experiment with to try out the idea?</p> <p>The platform does not necessarily have to be easy to learn, that is not the issue, but once learned it has to be quick to use.</p> http://stackoverflow.com/questions/312357/suggested-platform-tools-for-rapid-game-development-and-game-prototyping/312359#312359 15 Answer by Mitch Wheat for Suggested platform/tools for rapid game development and game prototyping Mitch Wheat 2008-11-23T10:17:52Z 2009-05-01T13:53:25Z <p>Have you investigated Microsoft's XNA?</p> <p><a href="http://msdn.microsoft.com/en-us/xna/default.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/xna/default.aspx</a></p> <p><a href="http://www.xna.com/" rel="nofollow">http://www.xna.com/</a></p> <p><a href="http://creators.xna.com/en-US/" rel="nofollow">http://creators.xna.com/en-US/</a></p> http://stackoverflow.com/questions/312357/suggested-platform-tools-for-rapid-game-development-and-game-prototyping/312361#312361 6 Answer by eed3si9n for Suggested platform/tools for rapid game development and game prototyping eed3si9n 2008-11-23T10:18:22Z 2008-11-23T10:18:22Z <p>I'd say something like Flash for a nice mix of quick and codability.</p> http://stackoverflow.com/questions/312357/suggested-platform-tools-for-rapid-game-development-and-game-prototyping/312364#312364 12 Answer by gimel for Suggested platform/tools for rapid game development and game prototyping gimel 2008-11-23T10:26:54Z 2008-11-23T10:39:04Z <p><a href="http://en.wikipedia.org/wiki/Pygame" rel="nofollow">Pygame</a> is worth a try, mainly because it is possible to use a high-level programming language like Python to structure the game.</p> <p>See <a href="http://stackoverflow.com/questions/92887/what-do-you-use-for-game-dev">what-do-you-use-for-game-dev</a>.</p> http://stackoverflow.com/questions/312357/suggested-platform-tools-for-rapid-game-development-and-game-prototyping/312371#312371 3 Answer by Chris for Suggested platform/tools for rapid game development and game prototyping Chris 2008-11-23T10:37:00Z 2008-11-23T10:37:00Z <p><a href="http://wiki.blender.org/index.php/Game_Engine" rel="nofollow">http://wiki.blender.org/index.php/Game_Engine</a></p> <p>Blender Game Engine is a 3D game development environment with a Python based 'AI' system.</p> http://stackoverflow.com/questions/312357/suggested-platform-tools-for-rapid-game-development-and-game-prototyping/312374#312374 5 Answer by lacop for Suggested platform/tools for rapid game development and game prototyping lacop 2008-11-23T10:40:42Z 2008-11-23T10:40:42Z <p><a href="http://hge.relishgames.com/" rel="nofollow" title="Haaf's Game Engine">HGE</a> (C++, DirectX)</p> <p>Very simple to use 2D game development library.</p> http://stackoverflow.com/questions/312357/suggested-platform-tools-for-rapid-game-development-and-game-prototyping/312383#312383 0 Answer by Perpetualcoder for Suggested platform/tools for rapid game development and game prototyping Perpetualcoder 2008-11-23T10:55:23Z 2008-11-23T10:55:23Z <p>If you like dynamic languages try out <a href="http://www.pygame.org" rel="nofollow">Pygame</a>? Plus i think you can target OpenGL with this one too...depends on what you are looking at. XNA Game Studio is great...or u wana look at some Mac software</p> http://stackoverflow.com/questions/312357/suggested-platform-tools-for-rapid-game-development-and-game-prototyping/312384#312384 0 Answer by shoosh for Suggested platform/tools for rapid game development and game prototyping shoosh 2008-11-23T10:55:59Z 2008-11-23T10:55:59Z <p>If it's a 2D game, QT's QGraphicsScene is very easy to use.</p> http://stackoverflow.com/questions/312357/suggested-platform-tools-for-rapid-game-development-and-game-prototyping/312528#312528 3 Answer by Jason Miesionczek for Suggested platform/tools for rapid game development and game prototyping Jason Miesionczek 2008-11-23T13:35:56Z 2008-11-23T13:35:56Z <p>If platform independence is a consideration, you might want to check out the <a href="http://www.jmonkeyengine.com" rel="nofollow">jMonkeyEngine</a>. It is a scene graph based 3D engine written in Java.</p> <pre><code>public class HelloWorld extends SimpleGame{ public static void main(String[] args) { HelloWorld app = new HelloWorld(); // Create Object // Signal to show properties dialog app.setConfigShowMode(ConfigShowMode.AlwaysShow); app.start(); // Start the program } protected void simpleInitGame() { // Make a box Box b = new Box("Mybox", new Vector3f(0,0,0), new Vector3f(1,1,1)); rootNode.attachChild(b); // Put it in the scene graph } } </code></pre> <p>That bit of code is all you need to start displaying 3D primitives on the screen. This example has a lot of basic functionality built in for you, including camera control, WASD movement and comprehensive performance stats. You can of course override all of this and do anything you would like.</p> http://stackoverflow.com/questions/312357/suggested-platform-tools-for-rapid-game-development-and-game-prototyping/313563#313563 15 Answer by NeARAZ for Suggested platform/tools for rapid game development and game prototyping NeARAZ 2008-11-24T06:53:56Z 2008-11-24T11:15:34Z <p><a href="http://www.adobe.com/products/flash/" rel="nofollow">Flash</a> or <a href="http://www.yoyogames.com/gamemaker" rel="nofollow">Game Maker</a> for 2D games. <a href="http://unity3d.com/" rel="nofollow">Unity</a> for 3D games.</p> http://stackoverflow.com/questions/312357/suggested-platform-tools-for-rapid-game-development-and-game-prototyping/313582#313582 1 Answer by a programmer for Suggested platform/tools for rapid game development and game prototyping a programmer 2008-11-24T07:15:28Z 2008-11-24T07:15:28Z <p>Try Game Maker 7 <a href="http://www.yoyogames.com/gamemaker/" rel="nofollow">http://www.yoyogames.com/gamemaker/</a></p> http://stackoverflow.com/questions/312357/suggested-platform-tools-for-rapid-game-development-and-game-prototyping/314038#314038 6 Answer by Khalid for Suggested platform/tools for rapid game development and game prototyping Khalid 2008-11-24T12:32:18Z 2008-11-24T12:32:18Z <p>I suggest you try the following:</p> <p>Flash is good for fast development of 2d games (along with <a href="http://www.flashdevelop.org" rel="nofollow">FlashDevelop</a> 3 IDE for actionscript 3), but it is expensive.</p> <p><a href="http://www.bluerosegames.com/silverlight-games-101/" rel="nofollow">Silverlight</a> 2 is another good alternative and can be free if you use Visual studio express and some free graphics editor like inkscape.</p> <p>If you want to do some 3d, I would strongly suggest that you take a look in <a href="http://www.blitzbasic.com/" rel="nofollow">Blitz3D</a> (it uses the old DirectX 7 but you can still do powerfull stuff with it). You can do very fast prototyping with it. You could also try <a href="http://www.blitzbasic.com" rel="nofollow">BlitzMax</a>, for a powerfull 2d engine (there are also plugins for 3d engine like irrlicht3d, minib3d).</p> <p>For a more robust 3d engine, you should try <a href="http://www.ogre3d.org/wiki/index.php/MOGRE" rel="nofollow">MOGRE</a> (.NET Ogre3d wrapper).</p> http://stackoverflow.com/questions/312357/suggested-platform-tools-for-rapid-game-development-and-game-prototyping/314753#314753 1 Answer by Fernando Barrocal for Suggested platform/tools for rapid game development and game prototyping Fernando Barrocal 2008-11-24T16:50:35Z 2008-11-24T16:50:35Z <p>Hello, here goes my 2c:</p> <p>You should give a look at <a href="http://www.talula.demon.co.uk/allegro/" rel="nofollow">Allegro</a>, it's fast to learn and a great library for prototyping ideas, even if you choose to use it for the final development it is a great library for games.</p> <p>I started using it a couple years ago and recently I read a <a href="http://rads.stackoverflow.com/amzn/click/1598632892" rel="nofollow">book</a> that brought me a whole new lot of ideas and I started working on it again.</p> http://stackoverflow.com/questions/312357/suggested-platform-tools-for-rapid-game-development-and-game-prototyping/322748#322748 0 Answer by M. Utku ALTINKAYA for Suggested platform/tools for rapid game development and game prototyping M. Utku ALTINKAYA 2008-11-27T01:53:04Z 2008-11-27T02:11:22Z <p>I am using Python for protoyping, CGKit is an incredible library, with the help of PyOpenGL it is easy to create a playable demo, and most of the good 3d content creation tools support Python scripting which is essential to get you going.</p> http://stackoverflow.com/questions/312357/suggested-platform-tools-for-rapid-game-development-and-game-prototyping/322760#322760 1 Answer by Scott Evernden for Suggested platform/tools for rapid game development and game prototyping Scott Evernden 2008-11-27T01:58:18Z 2008-11-27T01:58:18Z <p>I happen to like TorqueScript - it has served me well over the years -- and I like Torque Game Builder. For 3D they Have Torque Game Engine and Torque Game Engine Advanced. <a href="http://www.garagegames.com/products/browse/" rel="nofollow">GarageGames</a> is pretty good stuff. Little learning curve up front, but after that you'll be sailin'</p> http://stackoverflow.com/questions/312357/suggested-platform-tools-for-rapid-game-development-and-game-prototyping/344775#344775 3 Answer by Jeff for Suggested platform/tools for rapid game development and game prototyping Jeff 2008-12-05T18:44:58Z 2008-12-05T18:44:58Z <p>I like index cards and a sharpie.</p> http://stackoverflow.com/questions/312357/suggested-platform-tools-for-rapid-game-development-and-game-prototyping/420513#420513 0 Answer by wegrata for Suggested platform/tools for rapid game development and game prototyping wegrata 2009-01-07T14:38:43Z 2009-01-07T14:38:43Z <p>if your coll with dynamic languages for 2d there's PyGame and for 3d I really like Panda3d both of which are cross platform. If python isn't your thing you can check out XNA or TAO both run on .NET and i think TAO also runs on Mono.</p> http://stackoverflow.com/questions/312357/suggested-platform-tools-for-rapid-game-development-and-game-prototyping/671724#671724 1 Answer by ninesided for Suggested platform/tools for rapid game development and game prototyping ninesided 2009-03-22T22:36:57Z 2009-03-23T03:03:17Z <p><a href="http://www.indielib.com/" rel="nofollow">IndieLib</a> is looking pretty slick these days. Lot's of nice tutorials and guides on offer too. It's C++ but there are wrappers out there that allow you to use .NET too.</p> http://stackoverflow.com/questions/312357/suggested-platform-tools-for-rapid-game-development-and-game-prototyping/707273#707273 1 Answer by Kronikarz for Suggested platform/tools for rapid game development and game prototyping Kronikarz 2009-04-01T20:48:35Z 2009-04-01T20:48:35Z <p><a href="http://apocalyx.sourceforge.net/" rel="nofollow">ApocalyX</a> is worth a try, you use Lua to write code, and although it isn't really that fast or simple or clean or easy to use, it has a crap-ton of features and prototyping in it is pretty fast.</p> http://stackoverflow.com/questions/312357/suggested-platform-tools-for-rapid-game-development-and-game-prototyping/939908#939908 0 Answer by bowditch for Suggested platform/tools for rapid game development and game prototyping bowditch 2009-06-02T14:33:06Z 2009-06-02T14:33:06Z <p>I prefer to develop with Unity3D, but nothing beats Flash for prototyping. Flash is a perfect platform for testing and refining game mechanics before implementing them into a production pipeline. The learning curve is also pretty small.</p> <p>Flash uses Actionscript and Unity Javascript, so because they are both ECMA-scripting languages the transition from prototype to production is smooth.</p> http://stackoverflow.com/questions/312357/suggested-platform-tools-for-rapid-game-development-and-game-prototyping/1144640#1144640 0 Answer by Bryan Hare for Suggested platform/tools for rapid game development and game prototyping Bryan Hare 2009-07-17T17:22:36Z 2009-07-17T17:22:36Z <p>A lot of the Game Design students at Champlain college use MultiMedia fusion for Rapid prototyping and development.</p> <p>Its another pretty decent piece on the already great list of answers here. <a href="http://www.clickteam.com/website/usa/" rel="nofollow">Multimedia Fusion</a></p> http://stackoverflow.com/questions/312357/suggested-platform-tools-for-rapid-game-development-and-game-prototyping/1152488#1152488 0 Answer by Irwin1138 for Suggested platform/tools for rapid game development and game prototyping Irwin1138 2009-07-20T09:06:00Z 2009-07-20T09:06:00Z <p>I use <a href="http://www.sfml-dev.org/" rel="nofollow">SFML</a>. It's like SDL but OO and more gamedev-oriented. It is free and very easy to use, has a clear documentation and tutorials, is in constant development, cross-platform, and has bindings to C, D, .NET, Python and Ruby. It's written in C++.</p> <p>I would also suggest an excellent 2d physics engine - Chipmunk Physics. It is very fast, written in C, has bindings to Python(pymunk) and Ruby and probably more languages, and is really really easy to setup. It's easy to quickly put up a small game to test an idea.</p> <p>So... Python or Ruby with Chipmunk Physics and SFML. There is also Gosu game engine for Ruby, and has some Chipmunk Physics integration, but I actually didn't use this one.</p> http://stackoverflow.com/questions/312357/suggested-platform-tools-for-rapid-game-development-and-game-prototyping/1152615#1152615 2 Answer by Nicolas for Suggested platform/tools for rapid game development and game prototyping Nicolas 2009-07-20T09:35:39Z 2009-07-20T09:35:39Z <p>Flash is without a doubt the best platform for games prototyping. With flash, you can get a games running in a matter of hours. And the learning curve is not bad at all, compared to low-level languages and frameworks.</p> <p>Good things about flash IMO are :</p> <ul> <li>Graphics and code can be managed within the same app, which is very handy.</li> <li>ActionScript (Flash's dev language) makes it really easy to reuse your code.</li> <li>There are tons of libraries for 2D, 3D, physics and what not, to make your games more polished.</li> <li>Flash games can run on 98% of the computers in the world.</li> <li>The community around Flash (and especially gaming with Flash) is huge and very responsive.</li> <li>The community.</li> <li>Did I mention the community ?</li> </ul> <p>All in all, Flash is IMO the best platform for proofs-of-concept and quick games development. And the community makes it way easier, since most of the things you'll want to do have already been done many times, and are usually discussed on many forums and blogs.</p> http://stackoverflow.com/questions/312357/suggested-platform-tools-for-rapid-game-development-and-game-prototyping/1494282#1494282 0 Answer by Sumit Ghosh for Suggested platform/tools for rapid game development and game prototyping Sumit Ghosh 2009-09-29T18:51:36Z 2009-09-29T18:51:36Z <p>Flash Allows you to develop games which can run as a desktop application using AIR , or as a thin client which can run inside a browser with flex or AS3 and even in mobile phones with Flash Mobile.</p> http://stackoverflow.com/questions/312357/suggested-platform-tools-for-rapid-game-development-and-game-prototyping/1677120#1677120 0 Answer by tsalter for Suggested platform/tools for rapid game development and game prototyping tsalter 2009-11-04T22:30:01Z 2009-11-04T22:30:01Z <p><a href="http://www.openprocessing.org/" rel="nofollow">http://www.openprocessing.org/</a></p> <p>Fantastic resource - we use it to prototype graphical effects and simple game mechanics often.</p> <p>Hope this helps,</p> <p>-Tom</p> http://stackoverflow.com/questions/312357/suggested-platform-tools-for-rapid-game-development-and-game-prototyping/1736566#1736566 0 Answer by Phyxx for Suggested platform/tools for rapid game development and game prototyping Phyxx 2009-11-15T04:33:44Z 2009-11-15T04:33:44Z <p>You could use Coppercube. You can get a basic game up and running without any code, and then add some specific game logic using the builtin scripting language. It will then compile to either a Flash SWF or a native windows EXE.</p> <p>You can read some tutorials to get you started with Coppercube <a href="http://www.brighthub.com/hubfolio/matthew-casperson/blog/archive/2009/08/26/coppercube-tutorials.aspx" rel="nofollow">here</a>.</p>