What do you use for game dev ? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-05T17:28:01Z http://stackoverflow.com/feeds/question/92887 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/92887/what-do-you-use-for-game-dev 7 What do you use for game dev ? Abhishek Mishra 2008-09-18T14:12:59Z 2009-08-04T02:35:35Z <p>DirectX, XNA, SDL, Allegro, OpenGl, PyGame, many more! ??? whats your personal favorite ? Whats catching up? Which way to go and why ? Lol so many open ended questions! take your time.</p> http://stackoverflow.com/questions/92887/what-do-you-use-for-game-dev/92950#92950 13 Answer by Rick Minerich for What do you use for game dev ? Rick Minerich 2008-09-18T14:18:40Z 2008-09-18T14:18:40Z <p>I've been really impressed with XNA. Not only is it really fast to write for it also will run on your XBox 360 which is damn cool if you ask me. I watched Chris Bowen at last Code Camp Boston write pong with graphics and music in an hour. It was mind blowing.</p> http://stackoverflow.com/questions/92887/what-do-you-use-for-game-dev/92970#92970 5 Answer by Schnapple for What do you use for game dev ? Schnapple 2008-09-18T14:20:23Z 2008-09-18T14:20:23Z <p>Assuming you're a hobbyist thus far...</p> <p>Use <a href="http://creators.xna.com/" rel="nofollow">XNA</a> if you want to use the latest Microsoft .NET technologies (and if you're not concerned with being portable outside of Windows and the 360). It's the successor to Managed DirectX and if you sign up for their $99/year service, you can test your games on the 360.</p> http://stackoverflow.com/questions/92887/what-do-you-use-for-game-dev/92974#92974 0 Answer by Wgaffa for What do you use for game dev ? Wgaffa 2008-09-18T14:20:52Z 2008-09-18T14:20:52Z <p>All libraries serves a purpose</p> <ul> <li>DirectX - popular, windows only</li> <li>OpenGL - popular, multi platform</li> <li>XNA XBox?</li> <li>Allegro - More lightweight and can't handle 3d that well</li> <li>SDL - Mostly for 2d games</li> </ul> <p>For PS you have to get another SDK I believe</p> <p>I haven't done much work in these but this is my general understanding of these and may be wrong.</p> http://stackoverflow.com/questions/92887/what-do-you-use-for-game-dev/92989#92989 5 Answer by steffenj for What do you use for game dev ? steffenj 2008-09-18T14:23:10Z 2008-09-18T14:33:04Z <p>Well, it's probably hard to get by without DirectX, if you're a professional developer.</p> <p>For Semi-Pro's and small projects, I've come to love <a href="http://creators.xna.com/" rel="nofollow">XNA</a> because it's C#, allows cross-platform development for PC, Xbox360 and Zune, and it's the only way to get your hobby game on a console legally. Plus you can do all the cool stuff like Shaders, Multithreading and Xbox Live as well! You may want to top it off with <a href="http://www.garagegames.com/products/torque/x/" rel="nofollow">TorqueX</a> but certainly it's not necessary for most smaller projects.</p> <p>If you're a beginning game developer, i whole-heartedly recommend the ultimate learning Game Development tool: <a href="http://www.yoyogames.com/gamemaker" rel="nofollow">Game Maker</a>. It's free and for a small fee you get additional cool stuff like networking, particle effects, etc.</p> http://stackoverflow.com/questions/92887/what-do-you-use-for-game-dev/92991#92991 2 Answer by psoul for What do you use for game dev ? psoul 2008-09-18T14:23:30Z 2008-09-18T14:23:30Z <p>With our free project on the Windows platform, we're going with <a href="http://www.ogre3d.org" rel="nofollow">Ogre3D</a>, <a href="http://www.fmod.org" rel="nofollow">FMOD</a> and <a href="http://www.nvidia.com/object/nvidia_physx.html" rel="nofollow">PhysX</a>. All of these are free for non-commercial use (and Ogre3D is free even for commercial use.) My experience has been that all of these work great and have faced no major problems, and I'd go as far as to say that FMOD is the best in the sound engine field.</p> http://stackoverflow.com/questions/92887/what-do-you-use-for-game-dev/93028#93028 0 Answer by Hans Sjunnesson for What do you use for game dev ? Hans Sjunnesson 2008-09-18T14:28:02Z 2008-09-18T14:28:02Z <p>Being able to quickly prototype games using <a href="http://www.pygame.org/" rel="nofollow">pygame</a> is increadibly powerful. It is basically <a href="http://www.libsdl.org/" rel="nofollow">libSDL</a> wrapped in python, and it leverages that really simple api for handling events, user input, audio and graphics (not to mention making OpenGL easy).</p> <p>I wholeheartedly recommend it, even for serious game development.</p> <p>Oh, also, it's super portable.</p> http://stackoverflow.com/questions/92887/what-do-you-use-for-game-dev/93040#93040 10 Answer by Oli for What do you use for game dev ? Oli 2008-09-18T14:29:07Z 2008-09-18T14:29:07Z <p>SDL + OpenGL</p> <p>Why? Because they'll run on ANYTHING. The market is a lot bigger than DirectX allows for.</p> http://stackoverflow.com/questions/92887/what-do-you-use-for-game-dev/93098#93098 0 Answer by Pop Catalin for What do you use for game dev ? Pop Catalin 2008-09-18T14:35:10Z 2008-09-18T14:35:10Z <p>My favorite is <strong>XNA</strong>, it's relatively easy to learn compared to C++ &amp; DirectX or OpenGL and the best thing about it is that you will write games in C#, which is <code>Cool</code>. (Why is C# cool? it is because: it's not by a stretch as cryptic as C++/COM, it is a static language which means lots of compile time checks, and is a modern oo language, very expressive and makes writing games fun). </p> <p>Also the XNA library is not too shabby either, you get a lot of stuff by default, lots of computational methods for matrices,vectors, etc, higher levels of abstraction (already has mesh objects, texture objects, effect objects).</p> <p>The content pipeline is another nice feature of XNA, very helpful once you are past the first steps.</p> <p>XNA has a lot of third party support, <a href="http://www.softimage.com/products/modtool/" rel="nofollow">SOFTIMAGE|XSI Mod Tool</a>.</p> http://stackoverflow.com/questions/92887/what-do-you-use-for-game-dev/93259#93259 0 Answer by Abhishek Mishra for What do you use for game dev ? Abhishek Mishra 2008-09-18T14:49:55Z 2008-09-18T14:49:55Z <p>By the way I'm currently doing this - <a href="http://i35.tinypic.com/9pn75s.jpg" rel="nofollow">http://i35.tinypic.com/9pn75s.jpg</a> <img src="http://i35.tinypic.com/9pn75s.jpg" alt="alt text" /></p> http://stackoverflow.com/questions/92887/what-do-you-use-for-game-dev/93333#93333 11 Answer by jjohn for What do you use for game dev ? jjohn 2008-09-18T14:58:57Z 2008-09-18T14:58:57Z <p>Game programming is fun, but challenging. I don't think most "gamers" would enjoy the process of writing a game. </p> <p>The would-be designer needs to consider the abstract design of the game (that is, what are the rules, mechanisms and goals of the game), the target computer platform and an estimate of how much time he wants to dedicate to this kind of project. Games can be an enormous effort to produce -- even tiny space invader clones are, for the novice, full of unexpected challenges and can take days to produce.</p> <p>If you are new to programming in general, you should first learn that. Get up to speed on simple CGI programming or text processing. That will help give you the tools to understand some the concepts that attend game programming. I recommend learning Python or Java as an introduction to programming. Both support games well. When you're ready to design games with tighter real-time performance requirements, consider C++.</p> <p>Are you an artist? If so, can you produce your own graphics for your game? Does your game require complicate 3D graphics? Are you good at producing sound or background music? These assets are essential parts of a game. You can stub your way through the design with placeholders, but the success of your game often depends on these assets.</p> <p>I have used Pygame, PHP and Perl to write games (although none of them are particularly good). I'm currently working on a game in Java. Ultimately, the language and toolkit choice is determined by the platform you're targeting. If you want your game on a console, you'll probably be doing C++ or .NET. If you want to make a web game, Flash, Java or DHTML will be your easy choices.</p> <p>You might want to get <A href="http://fivedots.coe.psu.ac.th/~ad/jg/" rel="nofollow">Killer Game Programming in Java</a>. It's a weighty book, but it walks you through the basics very well. The Pygame's web site has solid documentation for that toolkit as well. </p> <p>Perhaps you might consider using an existing game framework for creating your first game? Frameworks like <a href="http://www.rtsoft.com/novashell/" rel="nofollow">Novashell</a> and <a href="http://www.adventuregamestudio.co.uk/" rel="nofollow">Adventure Game Studio</a> are good tools to let your rapidly prototype many kinds of games without learning the gory details of graphics programming.</p> <p>In any case, good luck with your project.</p> http://stackoverflow.com/questions/92887/what-do-you-use-for-game-dev/93388#93388 4 Answer by workmad3 for What do you use for game dev ? workmad3 2008-09-18T15:04:10Z 2008-09-18T15:04:10Z <p>SFML - Simple, Fast, Multimedia Library.</p> <p>I've found it pretty damn good for my purposes. It doesn't require any extra setup to start working with OpenGL (unlike SDL), it's designed as a C++ OO library and is generally really simple and easy to work with.</p> http://stackoverflow.com/questions/92887/what-do-you-use-for-game-dev/98933#98933 0 Answer by Languard for What do you use for game dev ? Languard 2008-09-19T02:17:56Z 2008-09-19T02:17:56Z <p>And another answer for XNA. I teach both my 2D and 3D programming classes using XNA, and my students really enjoy it. Also great for prototyping out game ideas.</p> http://stackoverflow.com/questions/92887/what-do-you-use-for-game-dev/103365#103365 0 Answer by Iain for What do you use for game dev ? Iain 2008-09-19T16:16:38Z 2008-09-19T16:16:38Z <p>Flash and XNA (they don't work together, unfortunately).</p> http://stackoverflow.com/questions/92887/what-do-you-use-for-game-dev/198902#198902 0 Answer by Sharky for What do you use for game dev ? Sharky 2008-10-13T20:23:12Z 2008-10-13T20:23:12Z <p>I use XNA. That's what I built <a href="http://sharky.bluecog.co.nz" rel="nofollow">Air Legends</a> in.</p> <p>I love it. Such a bonus you can code and test for Windows, then flick a switch and have an XBOX 360 version in no time. Took me just 1 evening to make the minor XBOX 360 adjustments. </p> http://stackoverflow.com/questions/92887/what-do-you-use-for-game-dev/198946#198946 1 Answer by Jim Buck for What do you use for game dev ? Jim Buck 2008-10-13T20:36:30Z 2008-10-13T20:36:30Z <p>OpenGL, because it's multi-platform, and I have experience with it dating all the way back to its very beginning on SGI workstations. For the faint of heart, though, of the things on your list, I've probably heard the most good about SDL with the killer feature being that it's multi-platform, but you could also pick-and-choose different multi-platform libraries if you are good at putting them together into one engine.</p> http://stackoverflow.com/questions/92887/what-do-you-use-for-game-dev/739916#739916 1 Answer by Kludge for What do you use for game dev ? Kludge 2009-04-11T11:36:59Z 2009-04-11T11:36:59Z <p>Check out Torque-X. It's the Torque Game Builder for the XBox. It uses the XNA libraries and actually creates a whole app for you. I mean you still have to design it but it's much easier as you don't have to write the engine.</p> <p><a href="http://www.garagegames.com/products/consoles" rel="nofollow">http://www.garagegames.com/products/consoles</a></p> http://stackoverflow.com/questions/92887/what-do-you-use-for-game-dev/797042#797042 0 Answer by sayjava for What do you use for game dev ? sayjava 2009-04-28T09:39:29Z 2009-08-04T02:35:35Z <p>Something no one has even talked about his the possibility of mobile development. I decided to go the way of c++/SDL/opengl. If mobile is the future, I am sure not all mobile phones will be supporting DirectX, It is better to brave it and head into the c++/opengl(es) dungeon. The benefits are (mobile (iphone/symbian,linux),MacOSX,Windows,Linux) </p> <p>XNA is good, but the feeling of being limited to their platform when everyone else, especially indie guys are busy cutting their PIE from the iphone market aint too good.! I am pretty sure more mobile platforms will follow their footsteps in the future and I dont seem them doing DirectX</p>