show/hide this revision's text 2 added 2 characters in body

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)

  • A component to generate them (via a flood fill algorithm).
  • Be sure to include all of the major path finding/planning algorithms (A*/Dijkstra/etc.) to traverse those graphs.

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.

Related things:

  • 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.)
  • Some game engines implement networking (though this is kind of part of the 'xna stuff')
show/hide this revision's text 1

Navigation Graph(s) with node and edge annotations. A component to generate them (via a flood fill algorithm). Be sure to include all of the major path finding/planning algorithms (A*/Dijkstra/etc.) to traverse those graphs.