vote up 4 vote down star
2

I'm trying to build a very light re-usable framework for my games, rather than starting from scratch each time I start a game. I have a component driven architecture - e.g. Entity composes a Position component and a Health component and Ai component etc.

My big question is whether my model composes view components to allow for more than one view of the model, or whether to use a truer MVC where the model does not know about its views, and they are managed externally.

I have tried both methods but if anyone knows the pros and cons of each approach and which is the industry standard, it would be great to know.

flag

2 Answers

vote up 4 vote down check

depends on your audience, game devs, myself included aren't very used to the MVC model, although most know it, it's not as easy to keep it clean cut, because of development casualties (not any serious technical reasons). So from experience, I've seen dozens of game frameworks start as MVC, but only a pair were able to maintain it until the end. My theory is MVC adds too much complexity and little benefits for small throwaway games (with normally a few devs), and it's to hard to keep really cleanly separate most game objects into these layers for large/complex games. And since games have a release date, they many times sacrifice code clarity and reusability for performance and quick adhoc solutions (that will get rewritten if necessarry in the sequel (if there is one)).

However, with the caveat above, it's better to aim high, because if you succeed it's better :) and if you fail, well to bad. So you should probably try the MVC, but don't worry if it fails, profesional game devs have all failed at the task many times :)

link|flag
great answer - are there actually any advantages to MVC for games? You can still have multiple views via components, so what does it add? – Iain May 4 at 13:55
It theoretically would allow for division of tasks, letting another dev work on views, while one models, and another controls. Problem is game tasks tend to be vertically sliced (AI, physics, maps, characters,etc...). So it's normally the responsability of the same dev to make the MVC stack. But ideally the designer should model, programmer control, artist vizualize. So the potential gain is there, if the modeling and visualization layers can be made into user friendly tools. – Robert Gould May 4 at 23:50
But for a lone programmer, it causes overhead to learn the tools, so it tends to get componentized. Another option it to look at mixins, that can also work, atleast I saw it work nicely once. – Robert Gould May 4 at 23:53
vote up 1 vote down

I’d certainly vote for the model to know nothing about its views. Loose coupling is good: Simpler model code, easier testing, more choices.

link|flag

Your Answer

Get an OpenID
or

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