User Nathan - Stack Overflowmost recent 30 from stackoverflow.com2009-11-27T13:32:39Zhttp://stackoverflow.com/feeds/user/3623http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1413863/insightful-resources-for-game-engine-architecture3Insightful resources for game engine architecture?Nathan2009-09-12T00:32:43Z2009-11-20T14:26:11Z
<p>I am looking for resources that describe, in detail, the design decisions involved in game engine architecture. I am especially looking for analysis of the pros and cons of different design decisions at the lowest levels of the engine. The ideal resource, for example, might compare an inheritance-based object hierarchy to a flat, component-based object hierarchy. Or it might compare an in-engine editor with a separate editor tool.</p>
<p>What I am <em>not</em> looking for is a tutorial on <em>how</em> to implement any particular decision -- I would rather have a resource that discusses <em>why</em> to implement a decision.</p>
<p>Are there any blogs or books out there that offer this kind of insight into the game engine design process?</p>
http://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/34526#34526279Answer by Nathan for What is the single most influential book every programmer should read?Nathan2008-08-29T16:01:11Z2009-08-05T20:52:28Z<p><em><a href="http://rads.stackoverflow.com/amzn/click/0131103628" rel="nofollow">The C Programming Language</a></em> by Kernighan and Ritchie.</p>
<p><img src="http://www.lorenzogil.com/blog/wp-content/uploads/2008/01/the-c-programming-language.jpg" alt="The C Programming Language Book" /></p>
<p>It is concise, easy to read, and it will teach you three things: the C programming language, how to think like a programmer, and the low-level computational model. (It is important to understand what's going on "under the hood".)</p>
http://stackoverflow.com/questions/176580/what-was-your-first-programming-language/257392#2573926Answer by Nathan for What was your first programming language?Nathan2008-11-02T21:20:10Z2008-11-02T21:20:10Z<p>C</p>
<p>This sentence is here because of minimum character requirements in posts.</p>
http://stackoverflow.com/questions/222667/xml-rpc-library-for-c/222886#2228861Answer by Nathan for XML-RPC library for C++Nathan2008-10-21T18:15:14Z2008-10-21T18:15:14Z<p>I found a <a href="http://www.xmlrpc.com/directory/1568/implementations" rel="nofollow">list of xml-rpc implementations in many different languages</a>. Hopefully this list will be useful to others.</p>
http://stackoverflow.com/questions/222667/xml-rpc-library-for-c1XML-RPC library for C++Nathan2008-10-21T17:06:30Z2008-10-21T18:15:14Z
<p>What libraries are available for writing xml-rpc clients in native C++ or C?</p>
http://stackoverflow.com/questions/72931/whats-the-best-alternative-to-c-for-real-time-graphics-programming/74566#745668Answer by Nathan for What's the best alternative to C++ for real-time graphics programming?Nathan2008-09-16T17:01:58Z2008-09-16T17:01:58Z<p>Some variation of Lisp that compiles to machine code could be almost as fast as C++ for this kind of programming. The <a href="http://www.naughtydog.com/" rel="nofollow">Naughty Dog</a> team created a version of Lisp called <a href="http://en.wikipedia.org/wiki/Game_Oriented_Assembly_Lisp" rel="nofollow">Game Oriented Assembly Lisp</a>, which they used to create several AAA titles, including the Jak and Daxter series. The two major impediments to a Lisp approach in the game industry would be the entrenched nature of C/C++ development (both tools and human assets are heavily invested in C/C++), as well as the difficulty of finding talented engineers who are stars in both the game programming domain and the Lisp language.</p>
<p>Many programming teams in the industry are shifting to a hybrid approach wherein the real-time code, especially graphics and physics code, is written in C or C++, but game logic is done in a higher-level scripting language, which is accessible to and editable by programmers and non-programmers alike. <a href="http://www.lua.org/" rel="nofollow">Lua</a> and <a href="http://www.python.org/" rel="nofollow">Python</a> are both popular for higher-level scripting.</p>
http://stackoverflow.com/questions/63241/what-is-the-strangest-programming-language-you-have-used/63364#633640Answer by Nathan for What is the strangest programming language you have used?Nathan2008-09-15T14:23:16Z2008-09-15T14:23:16Z<p><a href="http://en.wikipedia.org/wiki/Brainfuck" rel="nofollow">Brainf*ck</a> is pretty weird, but I can't say I've ever used it for anything "real".</p>
http://stackoverflow.com/questions/34611/whats-the-best-toolkit-for-doing-2d-game-programming-with-python/35237#352374Answer by Nathan for What's the best toolkit for doing 2d game programming with Python?Nathan2008-08-29T20:28:41Z2008-08-29T20:28:41Z<p><a href="http://codeboje.de/2d-game-engines-python/" rel="nofollow">A blog post covering several of the alternatives</a>, including <a href="http://www.pygame.org/" rel="nofollow">PyGame</a>, <a href="http://www.farbs.org/pycap.html" rel="nofollow">PyCap</a>, <a href="http://www.suda-chen.biz/?page_id=9" rel="nofollow">SpriteCraft</a>, and <a href="http://ika.sourceforge.net/" rel="nofollow">ika</a>. I have also seen <a href="http://www.pyglet.org/" rel="nofollow">pyglet</a> mentioned.</p>
<p>You may also want to look at <a href="http://panda3d.org/" rel="nofollow">Panda</a>, which is a very easy to use 3D engine with Python bindings. It is used for rapid prototyping at <a href="http://www.etc.cmu.edu/" rel="nofollow">Carnegie Mellon's ETC</a>.</p>
http://stackoverflow.com/questions/19642/suggested-gaming-platform-to-learn-direct-x-c-open-gl-or-xna/35222#352225Answer by Nathan for Suggested gaming platform to learn - Direct X (C++), Open GL or XNA Nathan2008-08-29T20:20:55Z2008-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/34759/best-way-to-get-started-in-xna/35196#351963Answer by Nathan for Best way to get started in XNANathan2008-08-29T20:09:02Z2008-08-29T20:09:02Z<p>There are tutorials, sample models, and other resources available from the <a href="http://creators.xna.com/" rel="nofollow">Creators' Club</a>. You should also be able to <a href="http://creators.xna.com/en-US/downloads" rel="nofollow">download the latest version</a> from there. </p>
http://stackoverflow.com/questions/34973/tools-for-finding-memory-corruption-in-managed-c-code/35176#351760Answer by Nathan for Tools for finding memory corruption in managed c++ code?Nathan2008-08-29T19:58:37Z2008-08-29T19:58:37Z<p>In native code, if the corruption always occurs in the same place in memory, you can use a <a href="http://msdn.microsoft.com/en-us/library/350dyxd0.aspx" rel="nofollow">data breakpoint</a> to break the debugger when that memory is changed. Unfortunately, you can not set a data breakpoint in the managed C++ environment, presumably because the GC could move the object in memory.</p>
<p>Not sure if this helps, but hopefully it leads you off in the right direction.</p>
http://stackoverflow.com/questions/437/what-is-your-solution-to-the-fizzbuzz-problem/34620#346204Answer by Nathan for What is your solution to the FizzBuzz problem?Nathan2008-08-29T16:21:36Z2008-08-29T16:21:36Z<p>A short solution, in C:</p>
<pre><code>main(i)
{
for(; i < 101; puts(i++ % 5 ? "" : "Buzz"))
printf(i % 3 ? i % 5 ? "%d" : "" : "Fizz", i);
}
</code></pre>
http://stackoverflow.com/questions/3553/one-piece-of-advice/34593#345931Answer by Nathan for One piece of adviceNathan2008-08-29T16:15:10Z2008-08-29T16:15:10Z<p><em>Write more code</em>. The only way to get better at writing code is by doing it.</p>
http://stackoverflow.com/questions/1321467/which-programming-technique-helps-you-most-to-avoid-or-resolve-bugs-before-they-c/1321522#1321522Comment by Nathan on Which programming technique helps you most to avoid or resolve bugs before they come into productionNathan2009-08-24T15:33:22Z2009-08-24T15:33:22ZYes! And it can be so hard to get programmers to realize that they are not doing a good job of testing their own code.http://stackoverflow.com/questions/795396/books-for-3d-game-engine-development/795457#795457Comment by Nathan on Books for 3d game engine developmentNathan2009-04-30T23:45:01Z2009-04-30T23:45:01ZThe LaMothe book is a great starting point for an aspiring game developer.http://stackoverflow.com/questions/72931/whats-the-best-alternative-to-c-for-real-time-graphics-programming/73244#73244Comment by Nathan on What's the best alternative to C++ for real-time graphics programming?Nathan2009-01-13T19:38:27Z2009-01-13T19:38:27ZThere are AAA games written in other languages. Jak and Daxter, for example, was written in Lisp.http://stackoverflow.com/questions/38338/why-is-lua-considered-a-game-language/38404#38404Comment by Nathan on Why is Lua considered a game language?Nathan2008-09-16T17:37:51Z2008-09-16T17:37:51ZThe lightweight runtime is especially attractive for console developers, who must be much more careful about memory usage. On the PC side you see more developers willing to experiment with "larger" scripting languages like Python. Firaxis (Civilization IV) would be a good example of that.http://stackoverflow.com/questions/72931/whats-the-best-alternative-to-c-for-real-time-graphics-programming/73430#73430Comment by Nathan on What's the best alternative to C++ for real-time graphics programming?Nathan2008-09-16T16:45:58Z2008-09-16T16:45:58ZAlso, PyGame is not 3D.http://stackoverflow.com/questions/72931/whats-the-best-alternative-to-c-for-real-time-graphics-programming/73430#73430Comment by Nathan on What's the best alternative to C++ for real-time graphics programming?Nathan2008-09-16T16:45:18Z2008-09-16T16:45:18ZI believe Eve Online uses Stackless Python for their server code. I doubt the real-time 3D code is written in Python.