What Should Be in a 2D Game Engine? - Stack Overflow most recent 30 from stackoverflow.com2009-12-06T22:07:29Zhttp://stackoverflow.com/feeds/question/743947http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/743947/what-should-be-in-a-2d-game-engine12What Should Be in a 2D Game Engine?Khalid Abuhakmeh2009-04-13T13:57:42Z2009-05-03T13:44:53Z
<p>Ok, so I ended up writing my own game engine based on top of XNA, and I am just wondering what else I need to make a complete engine.</p>
<p>This is what's in the engine:</p>
<ul>
<li>Physics (Farseer Physics)</li>
<li>Particle Engine (Mercury Project)</li>
<li>2D Cameras </li>
<li>Input Handling</li>
<li>Screen Management (Menus, Pause Screen, etc.)</li>
<li>Sprite ( Animation, Sprite Sheets)</li>
<li>And XNA stuff like Sound.</li>
</ul>
<p><strong>Am I missing anything that might be crucial to a game engine?</strong></p>
http://stackoverflow.com/questions/743947/what-should-be-in-a-2d-game-engine/743952#7439521Answer by dicroce for What Should Be in a 2D Game Engine?dicroce2009-04-13T13:59:57Z2009-04-13T13:59:57Z<p>3d Acceleration should be in a 2D engine.</p>
<p>Using the 3d hardware that most people have these days is the best way to get amazing performance for your 2D games...</p>
http://stackoverflow.com/questions/743947/what-should-be-in-a-2d-game-engine/743978#7439784Answer by gnovice for What Should Be in a 2D Game Engine?gnovice2009-04-13T14:07:13Z2009-04-13T15:14:34Z<p>A couple ideas:</p>
<ul>
<li>Artificial intelligence (perhaps just simple AI utilities, like <a href="http://www.policyalmanac.org/games/aStarTutorial.htm" rel="nofollow">pathfinding algorithms</a>)</li>
<li>Saving all or part of the game state (for suspending and restarting at a later time or saving high scores).</li>
</ul>
http://stackoverflow.com/questions/743947/what-should-be-in-a-2d-game-engine/744052#7440526Answer by Zifre for What Should Be in a 2D Game Engine?Zifre2009-04-13T14:26:43Z2009-04-13T14:46:18Z<p>A few more things:</p>
<ul>
<li><strong>Path finding</strong> - very useful for AI</li>
<li>AI - possibly - depends on how generic you want the engine to be.</li>
<li>High scores</li>
<li><strong>Replays</strong> - makes high scores much more interesting, as you can actually watch them.</li>
</ul>
http://stackoverflow.com/questions/743947/what-should-be-in-a-2d-game-engine/744060#7440601Answer by Jesper Blad Jensen aka. Deldy for What Should Be in a 2D Game Engine?Jesper Blad Jensen aka. Deldy2009-04-13T14:28:47Z2009-04-15T11:47:54Z<ul>
<li>Animation framework so that you can say: take this sprite, move it in this direction, folowing this path using this speed, acceleration and such</li>
<li>Basic GUI system. Don't implement a whole Windows, but basic things like a pointer and a button, and such - keep it basic</li>
<li>Debugging component for displaying FPS, numbers of sprites and such</li>
</ul>
<p>Also a good thing is to make some games, and then you will quicky see what things you repeat doing for each game, and then look into how to can get that into the engine. </p>
http://stackoverflow.com/questions/743947/what-should-be-in-a-2d-game-engine/744091#7440918Answer by Organiccat for What Should Be in a 2D Game Engine?Organiccat2009-04-13T14:36:19Z2009-04-13T14:36:19Z<p>A theme or market for your engine. If you're doing anything beyond basic your basic graphics engine, you'll want to concentrate on a market for your engine, like RPG, strategy, puzzle, platformer, action, or FPS (ok, not FPS).</p>
<p>This will help you point yourself in the direction you need to go in order to make further enhancements to the engine without asking us. An engine like say, the Unreal Engine, can do multiple things, but what it tends to do best is what it's made for, FPS games. Likewise, you should tailor your engine so that it suits a particular field of interest, and therefore is picked up for that type of gameplay.</p>
<p>You can make it general to a point, but realize the more generalized your engine is, the harder it is to program, both time wise and skill wise. Other programmers are also less likely to pick up a general engine (unless that's all there is) if a more specific platform is available. Or to just write their own since modifying a generalized engine is about as hard as creating your own.</p>
http://stackoverflow.com/questions/743947/what-should-be-in-a-2d-game-engine/744171#7441710Answer by Neil N for What Should Be in a 2D Game Engine?Neil N2009-04-13T15:00:54Z2009-04-13T15:00:54Z<p>A tile repeat tool. Something that allows the user to add/create a tile, and manipulate the edges for a smooth repeath pattern.</p>
http://stackoverflow.com/questions/743947/what-should-be-in-a-2d-game-engine/744173#7441731Answer by Reed Copsey for What Should Be in a 2D Game Engine?Reed Copsey2009-04-13T15:01:11Z2009-04-13T15:01:11Z<p>It depends on the game, but another thing often needed is a good networking framework.</p>
<p>Many modern games, including 2D games, seem to have some form of networking in place.</p>
http://stackoverflow.com/questions/743947/what-should-be-in-a-2d-game-engine/744175#7441752Answer by Marcel J. for What Should Be in a 2D Game Engine?Marcel J.2009-04-13T15:01:38Z2009-04-13T15:01:38Z<p>I think that you covered the general requirements of a 2D engine. The only thing I would miss in that list would be:</p>
<ul>
<li>GUI Library</li>
</ul>
<p>Also to make development processes easier:</p>
<ul>
<li>Script Engine (LUA, C#Script, ...)</li>
<li>Dynamically Refreshed Assets (see <a href="http://nickgravelyn.com/2009/03/dynamically-refreshed-assets-in-xna/" rel="nofollow">Nick Gravelyn's Blog Entry</a>)</li>
</ul>
<p>You might also add another layer on top of XNA's existing stuff:</p>
<ul>
<li>A quite bareboned Network/Lobby implementation</li>
<li>More abstract handling of multiple controllers (DropIn/DropOut during gaming sessions, like see Resident Evil 5 Coop) - maybe event-based</li>
</ul>
<p>Finally you might add some "ready2use" shaders. Maybe get some inspiration from the discontinued <a href="http://www.facewound.com/?s=media" rel="nofollow">FaceWound</a> (from the "Garry's Mod" developer).</p>
http://stackoverflow.com/questions/743947/what-should-be-in-a-2d-game-engine/744214#7442141Answer by Nikwin for What Should Be in a 2D Game Engine?Nikwin2009-04-13T15:14:33Z2009-04-13T15:14:33Z<p>Good collision detection is very helpful. If you implement it efficiently, it really reduces the time required for every frame. Besides that, in my engine (for Pygame) I have a method of separating the main screen into a number of subscreens, which I find useful.</p>
http://stackoverflow.com/questions/743947/what-should-be-in-a-2d-game-engine/744247#7442470Answer by SnOrfus for What Should Be in a 2D Game Engine?SnOrfus2009-04-13T15:24:21Z2009-04-13T15:29:41Z<p>Depending on the target game type, include Navigation Graph(s) with node and edge annotations. (Good for many games, but not so much for the token side scrollers that are made with 2D graphics engines)</p>
<ul>
<li>A component to generate them (via a flood fill algorithm).</li>
<li>Be sure to include all of the major path finding/planning algorithms (A*/Dijkstra/etc.) to traverse those graphs.</li>
</ul>
<p>The pitfall of this is that you will have to define what a 'map' is for the engine, which might limit users of the engine. </p>
<p>Related things:</p>
<ul>
<li>Location based triggers (player enters an invisible circle and something happens - queue cutscene, start ambush, etc.). I would say provide a base class for the trigger and implement some basic ones to show how it's done (ie. weapon pickups etc.)</li>
<li>Some game engines implement networking (though this is kind of part of the 'xna stuff')</li>
</ul>
http://stackoverflow.com/questions/743947/what-should-be-in-a-2d-game-engine/744806#7448060Answer by Dunk for What Should Be in a 2D Game Engine?Dunk2009-04-13T17:59:10Z2009-04-13T17:59:10Z<p>The most useful thing to include above all else would be tools to easily use your engine. Maybe use your engine to create the tools. I'm sure you would find a lot of flaws that way.</p>
http://stackoverflow.com/questions/743947/what-should-be-in-a-2d-game-engine/751332#7513321Answer by Lars for What Should Be in a 2D Game Engine?Lars2009-04-15T11:42:55Z2009-04-15T11:42:55Z<p>Simple pixelperfect collision detection. NOT Farseer Physics. Simple drawing routines like drawline, drawcircle etc.</p>
http://stackoverflow.com/questions/743947/what-should-be-in-a-2d-game-engine/817058#8170580Answer by Alexey Orlov for What Should Be in a 2D Game Engine?Alexey Orlov2009-05-03T13:26:03Z2009-05-03T13:26:03Z<p>Um. This list is an "internals" list. To make great engine is to make great "external" list.
Look at UE3 for example -- it is here because of great tools. You need tools for world creation, to create optimal packages of resources (it should be in internal list too ;-)), for collision object specification etc.
Plus, to add to <a href="http://stackoverflow.com/questions/743947/what-should-be-in-a-2d-game-engine/744091#744091">Organiccat answer</a> you should decide on tech level. You can go for simple sprites or you can want fancy effects (so shaders are needed, and with this you need infrastructure)</p>
http://stackoverflow.com/questions/743947/what-should-be-in-a-2d-game-engine/817091#8170915Answer by jalf for What Should Be in a 2D Game Engine?jalf2009-05-03T13:44:53Z2009-05-03T13:44:53Z<p>You're approaching it in an upside-down manner.</p>
<p>What should be in your engine is the following:</p>
<p><em>All the code that turned out to be common between your first and your second game.</em></p>
<p>First, write a game. Don't write an engine, because, as you have found out, you don't know what it should contain, or how it should be designed. Write a game instead.</p>
<p>Once you have that game, write <em>another</em> game. Then, when you have done that, examine the second game's code. How much of it was reused from the first game?</p>
<p>Anything that was reused should then be refactored out into a separate project. That project is now your game engine.</p>