ivan-pi / fc8

Fortran CHIP-8 interpreter
GNU General Public License v3.0
7 stars 1 forks source link

Model-View-Controller #3

Open ivan-pi opened 1 year ago

ivan-pi commented 1 year ago

Does MVC apply to the virtual machine itself, or more to the games which are developed?

interkosmos commented 1 year ago

MVC in the strict sense is probably not a sensible choice for games and emulators as it introduces needless abstractions without benefit. Just implement a sane data model and build the rest around it, optionally with some thin layers in between.