Software design pattern MVC window creation strategies

174 Views Asked by At

I would like to hear some opinions on window strategy creation with MVC. I'm writing a game and I want to integrate MVC into it.. And one of the questions I have is should I create all the windows and register them within controller on the start of the application and fill them when appropriate event is fired or should I create them along only when they needed? If I should create the windows only when it needed, who should be in charge of creation?

Thanks in advance, Serhiy.

3

There are 3 best solutions below

1
On BEST ANSWER

I'd create them as they are needed and let the Controller be in control of creating the window.

1
On

you can consider the Swing's architecture, a modified MVC.

http://java.sun.com/products/jfc/tsc/articles/architecture/

0
On
  1. Create the model
  2. Create the controller
  3. Link controller to model.
  4. Create view
  5. Link view to model.
  6. Link view to controller.