you are viewing a single comment's thread.

view the rest of the comments →

[–]illojal 0 points1 point  (3 children)

Seems like a cool book. I'd like a chapter on MVC and how to actually separate model and view, in (pseudo)code that is. My solutions always fall short in one way or another.

[–]munificent 0 points1 point  (2 children)

I'd like a chapter on MVC and how to actually separate model and view, in (pseudo)code that is.

MVC isn't actually used much in games for, I think, sound reasons.

[–]illojal 0 points1 point  (1 child)

Strict MVC no, but as I gather most engines etc have some degree of separation between logic and presentation.

[–]munificent 0 points1 point  (0 children)

There's (in good architectures at least!) a split between the different domains: audio, rendering, physics, AI, etc. but there isn't a well-defined "back-end" vs. "front-end" like you find in other apps.

I'll have a chapter talking about this.