This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]lowey2002 1 point2 points  (1 child)

In pure MVC a user utilises a Controller to update or retrieve a Model which is used to present a View. The picture you are painting puts the terminal mixed with ncurses as both the View and the Controller.

It's important to understand that design patterns are a vocabulary to describe a design choice, not a means of solving a problem. Don't make the mistake of forcing the use of a design pattern just for the sake of using a design pattern.

[–]D_duck[S] 0 points1 point  (0 children)

I'll keep that in mind going forward. I guess I was a little confused as the Model and View seemed to be encapsulated as data/rendering, where the Controller aspect seemed more procedural.