Component based game engine design

Posted by a_m0d on Stack Overflow See other posts from Stack Overflow or by a_m0d
Published on 2009-12-14T14:33:14Z Indexed on 2010/04/02 13:33 UTC
Read the original article Hit count: 877

I have been looking at game engine design (specifically focused on 2d game engines, but also applicable to 3d games), and am interested in some information on how to go about it. I have heard that many engines are moving to a component based design nowadays rather than the traditional deep-object hierarchy.

Do you know of any good links with information on how these sorts of designs are often implemented? I have seen evolve your hierarchy, but I can't really find many more with detailed information (most of them just seem to say "use components rather than a hierarchy" but I have found that it takes a bit of effort to switch my thinking between the two models).

Any good links or information on this would be appreciated, and even books, although links and detailed answers here would be preferred.

© Stack Overflow or respective owner

Related posts about components

Related posts about game-engine