vote up 1 vote down star

I want a clean way of creating game object such as NPCs, bullets and power-ups, reducing the amount of inter-dependence on specific classes. I believe this is what the factory pattern is used for?

I would love to see a good implementation from a real game.

I'm not an expert on design patterns, and never use them if I don't understand them. I don't want to use a design pattern for the sake of it - I just want to understand if this pattern is the right way to solve this problem.

flag

2 Answers

vote up 1 vote down

After some more googling I Actually found a pretty good example:

http://cheezeworld.com/object-creation-game-factory/

thanks all

link|flag
vote up 3 vote down

It looks you are trying to find the problem to the solution.

On this particulary question it is nog really possible to give a good implemention because it deponds on how your game objects are stored, what they represent.

You should not try to look for how to implement a specific pattern to a problem, but to find the right sollution to your problem, and that might be a design pattern.

link|flag
Agreed, I don't want to use a design pattern for the sake of it - I want a clean way of creating game object such as NPCs, bullets and power-ups, reducing the amount of inter-dependence on specific classes. – Iain Jan 28 at 12:27
But that's a different question. You should ask how to design gameobjects. Now you just ask for a specific design pattern, which may not be suited at all. – Ikke Jan 28 at 13:16

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.