Any good tutorials or resources for learning how to design a scalable and "component" based game 'fr

Posted by CodeJustin.com on Stack Overflow See other posts from Stack Overflow or by CodeJustin.com
Published on 2010-05-02T04:23:00Z Indexed on 2010/05/02 4:27 UTC
Read the original article Hit count: 376

In short I'm creating a 2D mmorpg and unlike my last "mmo" I started developing I want to make sure that this one will scale well and work well when I want to add new in-game features or modify existing ones.

With my last attempt with an avatar chat within the first few thousand lines of code and just getting basic features added into the game I seen my code quality lowering and my ability to add new features or modify old ones was getting lower too as I added more features in. It turned into one big mess that some how ran, lol.

This time I really need to buckle down and find a design that will allow me to create a game framework that will be easy to add and remove features (aka things like playing mini-games within my world or a mail system or buddy list or a new public area with interactive items).

I'm thinking that maybe a component based approach MIGHT be what I'm looking for but I'm really not sure. I have read documents on mmorpg design and 2d game engine architecture but nothing really explained a way of designing a game framework that will basically let me "plug-in" new features into the main game and use the resources of the main game without changing much within my 'main game code'.

Hope someone understands what I mean, any help will is appreciated.

© Stack Overflow or respective owner

Related posts about game-development

Related posts about game-design