Suggested gaming platform to learn - Direct X (C++), Open GL or XNA - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T08:05:17Z http://stackoverflow.com/feeds/question/19642 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/19642/suggested-gaming-platform-to-learn-direct-x-c-open-gl-or-xna 12 Suggested gaming platform to learn - Direct X (C++), Open GL or XNA KiwiBastard 2008-08-21T11:42:41Z 2009-09-13T11:37:40Z <p>My nephew is an aspiring game developer. I have taught him a bit of C/C++, and suggested he learn that for a start.</p> <p>Once he has come to grips with that, which game/graphics API's do people suggest he learn?</p> <p>I would think DirectX would be current industry standard, but with more games looking to go X-platform then maybe Open-GL would be a good starting point?</p> <p>I have briefly looked at XNA, maybe that would be a nice easy step to take before jumping to a more complex framework?</p> http://stackoverflow.com/questions/19642/suggested-gaming-platform-to-learn-direct-x-c-open-gl-or-xna/19645#19645 0 Answer by samjudson for Suggested gaming platform to learn - Direct X (C++), Open GL or XNA samjudson 2008-08-21T11:44:11Z 2008-08-21T11:44:11Z <p>I certainly think the easiest to learn would be XNA - its the most high level of the three you mention.</p> http://stackoverflow.com/questions/19642/suggested-gaming-platform-to-learn-direct-x-c-open-gl-or-xna/19648#19648 1 Answer by Erik van Brakel for Suggested gaming platform to learn - Direct X (C++), Open GL or XNA Erik van Brakel 2008-08-21T11:45:50Z 2008-08-21T11:45:50Z <p>I'd say go for XNA. The most important part of gaming development is the more advanced topics, like collision detection, ragdoll effects, you name it. The platform itself doesn't matter much, as you'll probably work with an existing engine anyway.</p> <p>Another good point about XNA is that you can eventually publish your games to the Microsoft Arcade, or so I've been told. If you have a cool game, it's a great way to get some publicity (and hopefully be noticed by one of the big game studios ;-))</p> <p>Isn't XNA an abstraction of DirectX anyway?</p> http://stackoverflow.com/questions/19642/suggested-gaming-platform-to-learn-direct-x-c-open-gl-or-xna/19649#19649 19 Answer by Matt Hamilton for Suggested gaming platform to learn - Direct X (C++), Open GL or XNA Matt Hamilton 2008-08-21T11:45:55Z 2008-08-21T11:45:55Z <p>With XNA supported on both Windows and the Xbox, and a mobile version demonstrated for the Zune (however small that install base is), I would say that it's a great place to start learning game development. I hear that several universities in the US are already teaching it as part of game development courses.</p> <p>And of course it's a great stepping stone to .NET development if your nephew one day intends to move into the world of business software development.</p> http://stackoverflow.com/questions/19642/suggested-gaming-platform-to-learn-direct-x-c-open-gl-or-xna/19799#19799 5 Answer by thing2k for Suggested gaming platform to learn - Direct X (C++), Open GL or XNA thing2k 2008-08-21T13:04:07Z 2008-08-21T13:04:07Z <p>XNA is great for learning games dev, but remember that it's C# not C++.</p> <p>One resource I would recommend is <a href="http://www.3dbuzz.com" rel="nofollow">3DBuzz.com</a>, as they have some free C# video tutorials and sell the <a href="http://www.3dbuzz.com/xcart/home.php?cat=13" rel="nofollow">XNA Xtreme 101</a> series, volume 3 to be released in the new few days.</p> <p>They also sell <a href="http://www.3dbuzz.com/xcart/product.php?productid=30&amp;cat=12&amp;page=1" rel="nofollow">C++/OpenGL</a> videos as well, from personal experience it is great content, and a good introduction into C++ and then OpenGL.</p> <p>Cheers</p> <p>thing2k</p> http://stackoverflow.com/questions/19642/suggested-gaming-platform-to-learn-direct-x-c-open-gl-or-xna/19822#19822 25 Answer by Skizz for Suggested gaming platform to learn - Direct X (C++), Open GL or XNA Skizz 2008-08-21T13:10:37Z 2008-08-21T13:10:37Z <p>DirectX and OpenGL are just hardware abstraction APIs, OpenGL focusing on graphics whereas DirectX includes audio, networking and input. Knowing these APIs does not make you a game programmer, there is far more to games than just drawing graphics.</p> <p>Games are generally CPU limited, that is, the CPU is at 100% all the time, so it is important to understand how various elements of programming affect CPU use. I'm not talking about machine code optimisation, rather, understanding how algorithms perform: std::list versus std::vector; A* versus Dijkstra and so on and knowing when and how to apply them. Then there's multi-cpu programming, understanding how to use shared resources, semaphores, mutexes, etc.</p> <p>As well as CPU limits, games often have other limits: memory, IO speed (I'm looking at you Broken Sword 3 on XBox, I curse your loading times), ROM size (disk or hardware), so the term 'optimisation' is not always about speed, but can include data size or access times.</p> <p>In addition to the game code, there is usually a suite of tools required to generate the game data - converters to transform graphic data into an engine compatible format, editors to build game levels, tools to edit AI behaviour. Understanding good GUI design can make the difference between a good tool and a poor tool and good tools will allow artists and designers the freedom to create better games either through ease of use or by allowing rapid iteration of ideas.</p> <p>To sum up, don't focus on the graphics too much, work on the other stuff too. Of course, the problem with graphics is that you're unlikely to produce anything that looks like most commercials titles, they have teams of artists and designers who have spent years training to do their job or use expensive motion capture studios to generate the required data and failing to recreate these may eventually put you off game programming which would be a shame.</p> <p>Some project ideas:</p> <ul> <li>Text adventure system using simple verb/noun (something like <a href="http://en.wikipedia.org/wiki/The_Quill" rel="nofollow">The Quill on the ZXSpectrum</a>) - requires data driven design and parsing</li> <li>Scrabble - searching algorithms, simple GUI</li> <li>Tetris - real time gaming, audio, simple graphics (can add 3D elements)</li> <li>Effect editor - create a tool to view effects on 3D models, like texture blending, lighting, etc</li> <li>Physics demo - 3D boxes and spheres bouncing around in a room</li> <li>Multi cpu demo - errr, can't think of anything but I'm sure there's people here who will be happy to suggest ideas</li> </ul> <p>Also, having a range of game and game related programs demonstrating various skills in your repetoire will help enormously when going to job interviews, provided they are complete of course.</p> <p>And most importantly, learn about source control!</p> <p>Skizz</p> http://stackoverflow.com/questions/19642/suggested-gaming-platform-to-learn-direct-x-c-open-gl-or-xna/19924#19924 0 Answer by bruceatk for Suggested gaming platform to learn - Direct X (C++), Open GL or XNA bruceatk 2008-08-21T13:40:52Z 2008-08-21T13:40:52Z <p>I believe XNA is one of the best places to start for these reasons.</p> <ul> <li>It targets popular platforms (Windows, XBox 360)</li> <li>They have great examples to download. You can run them and you have full access to the source code.</li> <li>It has a growing online community</li> <li>There is probably a user group available to go to.</li> </ul> http://stackoverflow.com/questions/19642/suggested-gaming-platform-to-learn-direct-x-c-open-gl-or-xna/19945#19945 6 Answer by Prakash for Suggested gaming platform to learn - Direct X (C++), Open GL or XNA Prakash 2008-08-21T13:48:20Z 2008-08-21T13:48:20Z <p>As per <a href="http://en.wikipedia.org/wiki/OpenGL_ES" rel="nofollow">wikipedia</a>,</p> <p><a href="http://www.khronos.org/opengles/" rel="nofollow"><img src="http://www.khronos.org/opengles/images/opengles_75px.png" alt="OpenGL ES" /></a> </p> <ul> <li>has been chosen as the official 3D graphics API in Symbian &amp; Android</li> <li>is used as the 3D library for the iPhone SDK</li> <li>is supported by the Playstation 3 as an official graphics API</li> </ul> <p>but <a href="http://msdn.microsoft.com/en-us/xna/default.aspx" rel="nofollow"><img src="http://upload.wikimedia.org/wikipedia/en/d/d3/Xnalogo.PNG" alt="XNA" /></a> sure looks goood...</p> http://stackoverflow.com/questions/19642/suggested-gaming-platform-to-learn-direct-x-c-open-gl-or-xna/20268#20268 7 Answer by sparkes for Suggested gaming platform to learn - Direct X (C++), Open GL or XNA sparkes 2008-08-21T15:36:38Z 2008-08-21T15:36:38Z <p>I wonder if Stack Overflow will be so .net centric after the beta ends and the dirty hoards are allowed free reign :)</p> <p>I think cross-platform is always a better option but I wouldn't go for a 3d environment at first but would use SDL or pygame to get hacking on some prototypes first. If your nephew is really going to be getting into game creating it's far easier to learn the basics of making a game fun in 2d and cloning simple games than in a full blown 3d setup.</p> <p>@Skizz; do you use any other handles because the "I'll get my coat" and mention of The Quill on the speccy certainly suggest our paths should have crossed at some point ;)</p> http://stackoverflow.com/questions/19642/suggested-gaming-platform-to-learn-direct-x-c-open-gl-or-xna/20283#20283 3 Answer by varikin for Suggested gaming platform to learn - Direct X (C++), Open GL or XNA varikin 2008-08-21T15:41:54Z 2008-08-21T15:41:54Z <p>I would give <a href="http://www.pygame.org/news.html" rel="nofollow">PyGame</a> a shot. It is in Python, so a little higher level than C++. It won't give you the speed of C++, but for simple games, it is nice.</p> http://stackoverflow.com/questions/19642/suggested-gaming-platform-to-learn-direct-x-c-open-gl-or-xna/21338#21338 0 Answer by Skizz for Suggested gaming platform to learn - Direct X (C++), Open GL or XNA Skizz 2008-08-21T22:20:51Z 2008-08-21T22:20:51Z <p>@sparkes: (There's no PM facility that I can see anywhere) Yes, Skizz is a name I've used a lot but your handle and piccy don't trigger any decaying synapses. If you've worked at SCi, Climax, Criterion, Ninja Theory, Kuju Guildford or Tower Studios then we've probably crossed paths. </p> <p>Anyway, I'm off on holiday for a week - no crack overflow, I'm not going to survive,</p> <p>Skizz</p> http://stackoverflow.com/questions/19642/suggested-gaming-platform-to-learn-direct-x-c-open-gl-or-xna/21359#21359 1 Answer by 17 of 26 for Suggested gaming platform to learn - Direct X (C++), Open GL or XNA 17 of 26 2008-08-21T22:39:20Z 2008-08-21T22:39:20Z <p>A word of caution about the future of OpenGL, this was posted a couple of weeks ago on <a href="http://bluesnews.com/cgi-bin/board.pl?action=viewthread&amp;threadid=90280" rel="nofollow">Blue's News</a>:</p> <blockquote> <p>OpenGL 3.0 Specs Released, Unhappiness Ensues [August 12, 2008, 11:28 am ET] - Khronos Releases OpenGL 3.0 Specifications has the specs for the next iteration of the OpenGL API. According to the post about this on Slashdot (thanks Mike Martinez), this has spurred negative reactions from developers who had been promised major changes which have not materialized. They point the way to discontented forum threads like this one and this one and to a summary on GameDev.Net that says that developers were promised version 3.0 but the spec seems more like version 2.2, recalling a comment by John Carmack from QuakeCon 2008 that suggests the new spec has been built to maintain compatibility with existing CAD applications. This all has spurred widespread speculation that this ends what is left of the API war, with the comment on GameDev.Net saying: "I'd like to congratulate MS for winning the 3D API 'war' on Windows, turns out they didn't need to sink the goodship OpenGL, the captains ran it into an iceberg for them."</p> </blockquote> http://stackoverflow.com/questions/19642/suggested-gaming-platform-to-learn-direct-x-c-open-gl-or-xna/21579#21579 5 Answer by Ashwin for Suggested gaming platform to learn - Direct X (C++), Open GL or XNA Ashwin 2008-08-22T01:33:35Z 2008-08-22T01:33:35Z <p><strong><a href="http://www.pygame.org/news.html" rel="nofollow">PyGame</a></strong> seems to be the easiest option for folks who are beginners to both game programming and programming itself. But, it requires knowledge of Python, which isn't really a problem since it's easy to learn.</p> <p><strong><a href="http://alleg.sourceforge.net/" rel="nofollow">Allegro</a></strong> is a popular and stable game programming library for games that aren't heavy on 3D. (Check out the games built using Allegro at Allegro.cc, they're pretty cool!) Built around OpenGL, Allegro provides a C/C++ programming interface and it's multi-platform, another plus.</p> <p><strong><a href="http://en.wikipedia.org/wiki/Microsoft_XNA" rel="nofollow">XNA</a></strong> is tied to .Net and provides a C# interface.</p> <p>All these 3 options are several magnitudes easier than programming in DirectX or OpenGL, both of which are very low-level programming interfaces. You don't want to start with these two if you're interested in just games programming.</p> http://stackoverflow.com/questions/19642/suggested-gaming-platform-to-learn-direct-x-c-open-gl-or-xna/25164#25164 0 Answer by Kronikarz for Suggested gaming platform to learn - Direct X (C++), Open GL or XNA Kronikarz 2008-08-24T16:35:34Z 2008-08-24T16:35:34Z <p>That depends on what are you trying to teach. If generic programming then maybe Pygame is best, as Python is a simple enough language. If beginning game programming, then Allegro is your choice. If you want to teach 3D programming I'd recommend OpenGL and C++.</p> http://stackoverflow.com/questions/19642/suggested-gaming-platform-to-learn-direct-x-c-open-gl-or-xna/26434#26434 0 Answer by analytik for Suggested gaming platform to learn - Direct X (C++), Open GL or XNA analytik 2008-08-25T17:18:52Z 2008-08-25T17:18:52Z <p>Depending on how old is your nephew and what does he like, it might also be a good just to start with modding - purchase a game like The Elder Scrolls IV: Oblivion, download the Construction Kit and get to creating maps/worlds/stories/mods. Quite a few existing game studios (or skilled individuals) have started their career as mod or map pack developers.</p> <p>Being a game developer doesn't necessarily mean programming - content creators ("dungeon keepers") play equally (if not bigger) role than programmers. After all, difficulty imbalance, immature dialogue, confusing interface and terrible story can all make the difference between a bestseller and an average or terrible game, absolutely independently on the quality of the code and graphics. (However, good engine can still make you millions even with a boring game - just look at Crysis. ;)</p> http://stackoverflow.com/questions/19642/suggested-gaming-platform-to-learn-direct-x-c-open-gl-or-xna/26443#26443 2 Answer by Tomi Kyöstilä for Suggested gaming platform to learn - Direct X (C++), Open GL or XNA Tomi Kyöstilä 2008-08-25T17:22:10Z 2008-08-25T17:22:10Z <p><a href="http://pyglet.org/" rel="nofollow">pyglet</a> is an alternative to pygame.</p> http://stackoverflow.com/questions/19642/suggested-gaming-platform-to-learn-direct-x-c-open-gl-or-xna/35222#35222 5 Answer by Nathan for Suggested gaming platform to learn - Direct X (C++), Open GL or XNA Nathan 2008-08-29T20:20:55Z 2008-08-29T20:20:55Z <p>If your nephew enjoys C++ and is interested in continuing to use it, (which I would advise if he plans on a career in the game industry) he should probably not start with XNA. If he is looking for a good way to get started with <strong>C++ game development</strong>, I would suggest <a href="http://www.ogre3d.org/" rel="nofollow">Ogre</a>.</p> <p><img src="http://www.ogre3d.org/images/stories/ogre_16_logo.gif" alt="alt text" /></p> <p>Ogre is a fairly modern rendering engine written in object-oriented C++. It includes several samples out of the box that make it relatively quick to get up and running. It should also scale better than XNA, when your nephew is ready to start creating some larger scale/more involved games.</p> <p>Ogre is also cross-platform, in the sense that it uses either OpenGL or DirectX for rendering, so it can run on a Mac, Linux, or Windows machine. To use it on a console, you would need to be an approved developer.</p> http://stackoverflow.com/questions/19642/suggested-gaming-platform-to-learn-direct-x-c-open-gl-or-xna/48004#48004 0 Answer by moobaa for Suggested gaming platform to learn - Direct X (C++), Open GL or XNA moobaa 2008-09-07T01:13:34Z 2008-09-07T01:13:34Z <p>XNA, for sure. There's nothing more inspiring than stepping through code that's running on your retail 360 :)</p> http://stackoverflow.com/questions/19642/suggested-gaming-platform-to-learn-direct-x-c-open-gl-or-xna/50043#50043 1 Answer by Dan Adams for Suggested gaming platform to learn - Direct X (C++), Open GL or XNA Dan Adams 2008-09-08T16:03:07Z 2008-09-08T16:03:07Z <p>I would agree with the XNA suggestions but You could try<br /> <a href="http://www.libsdl.org/" rel="nofollow">SDL</a></p> <p>It is well documented and is cross platform and there are <a href="http://cs-sdl.sourceforge.net/index.php/Main_Page" rel="nofollow">.net wrappers</a> for it as well</p> http://stackoverflow.com/questions/19642/suggested-gaming-platform-to-learn-direct-x-c-open-gl-or-xna/53149#53149 0 Answer by Pedro for Suggested gaming platform to learn - Direct X (C++), Open GL or XNA Pedro 2008-09-09T23:35:42Z 2008-09-09T23:35:42Z <p>It depends on what kind of student (i.e., how persistent) your nephew is. I'd encourage you to offer him a different view on things by giving him Flash Studio, so he can mess around with prototypes a lot faster than what he'll get from XNA. (If money is a concern, Flash compilers are now free of charge, Flash Studio is the only one that requires payment. But they're not as friendly, anyway.)</p> <p>ActionScript in its most recent incarnation is a lot closer to "good" Object Orientation and he'll be able to have a broader view of what different computer languages have to offer. Also, he'll be able to focus a lot more on getting a game to be fun than on learning specifics of APIs and shader programming. Plus, he'll be able to show his work to his friends and grandma without anyone having to download or install messy frameworks.</p> <p>After he's had enough of playing with that, <em>then</em> it's time to break out the XNA.</p> http://stackoverflow.com/questions/19642/suggested-gaming-platform-to-learn-direct-x-c-open-gl-or-xna/65113#65113 1 Answer by Adi for Suggested gaming platform to learn - Direct X (C++), Open GL or XNA Adi 2008-09-15T17:52:37Z 2008-09-15T17:52:37Z <p>Probably the fastest to get results with would be the OpenGL - drawing triangles, moving to textured particles and such is really simple and the learning curve is not too steep.</p> <p>However, when you want to start dealing with models, loading and manipulating, DirectX offers you a much better interface and complete libraries to create more elaborate stuff without putting too much work developing the pipeline yourself.</p> <p>XNA - great development environment which is also easy to use. One of the only frustrating thing about it is that it is indeed in C# and not in C++. Nevertheless, once you learn the basics of C# (rather simple although you have to remember that memory management there is not under your control), adding sound, graphics, input and many other features are very easy and well documented with many examples.</p> <p>So... your choice depending on where you want to take it. I'd probably choose the XNA for your case since it does provide a full comprehensive development environment for casual games.</p> http://stackoverflow.com/questions/19642/suggested-gaming-platform-to-learn-direct-x-c-open-gl-or-xna/68033#68033 0 Answer by duane for Suggested gaming platform to learn - Direct X (C++), Open GL or XNA duane 2008-09-15T23:50:30Z 2008-09-15T23:50:30Z <p>XNA is great.... if you only want to develop in windows ever, which is a huge con in my book. OpenGL will run on every computing platform, excluding xbox...</p> http://stackoverflow.com/questions/19642/suggested-gaming-platform-to-learn-direct-x-c-open-gl-or-xna/74973#74973 0 Answer by Balk for Suggested gaming platform to learn - Direct X (C++), Open GL or XNA Balk 2008-09-16T17:44:15Z 2008-09-16T17:44:15Z <p>@<a href="#68033" rel="nofollow">duane </a>- XNA is capable of Windows, Xbox 360, and soon to be Zune. XNA is part of .NET so technically it could be extended to any platform in the future. As far as your suggestion of OpenGL... That won't run on any current generation gaming console. All gaming consoles have their own flavor graphics API based off either OpenGL or DirectX, but not exactly OpenGL.</p> http://stackoverflow.com/questions/19642/suggested-gaming-platform-to-learn-direct-x-c-open-gl-or-xna/75148#75148 6 Answer by NeARAZ for Suggested gaming platform to learn - Direct X (C++), Open GL or XNA NeARAZ 2008-09-16T18:02:20Z 2008-09-16T18:02:20Z <p>C/C++ are tools for professionals; there's almost no reason for an aspiring game developer to start there. It's like suggesting a heavy duty dangerous wood cutting machine to an aspiring wood carver - not only it's too big and too complex to a beginner; it can also kill him!</p> <p>For a beginner game developer, I'd suggest starting from something that lets him concentrate on the <em>game</em>, and not the low level details. There's a ton of tools for that (I'm lumping them all under one list, even if they are quite different): Flash, Unity, Game Maker, Blitz Basic, Torque Game Builder, XNA, PyGame etc. (XNA and PyGame are probably lowest-level from this list). Let someone who makes those tools worry about all the dirty details; a beginner should be focused on <em>making the game</em>.</p> <p><em>When</em> and if (and that's a big <strong>if</strong> in fact) he bumps into limitations of above tools, he can start looking at heavier machinery. Be it lower level engines/libraries (like Ogre), or plain C/C++ with native interfaces (Direct3D/OpenGL for graphics, other libraries for sound, other libraries for input, ...), does not matter. By then he'll know which limitations he's running into and will be able to choose the technology.</p> <p>The argument of "<em>oh, but all big games are written in C++ with Direct3D!</em>" does not apply here. Big games are written by hundred-person teams made of professionals, with multimillion dollar budgets. Your nephew is <em>not quite there</em> yet... And not all games are those "big" games either; lots of small (and very successful!) games are written in Flash, for example.</p> <p>That said, from your list of D3D, OpenGL or XNA I'd suggest XNA, just because it's <em>somewhat</em> higher level than the other two. But it would be better to start from even higher level than XNA.</p> http://stackoverflow.com/questions/19642/suggested-gaming-platform-to-learn-direct-x-c-open-gl-or-xna/312659#312659 1 Answer by Scott Evernden for Suggested gaming platform to learn - Direct X (C++), Open GL or XNA Scott Evernden 2008-11-23T16:01:24Z 2008-11-23T16:01:24Z <p>A relatively new and interesting entrant in the game-development arena is <a href="http://www.stonetrip.com/" rel="nofollow">ShiVa</a>. Until Unity3D for PC becomes available (not holding my breath) this, so far, seems worth digging deeper into.</p> http://stackoverflow.com/questions/19642/suggested-gaming-platform-to-learn-direct-x-c-open-gl-or-xna/1417535#1417535 0 Answer by ZeroCool for Suggested gaming platform to learn - Direct X (C++), Open GL or XNA ZeroCool 2009-09-13T11:37:40Z 2009-09-13T11:37:40Z <p>Go for Open Source!</p>