Package modelo

Examples of modelo.Partida


   
   
   
   
   
    Partida partida=new Partida();
    GameController controlador = new GameController(partida);
    VistaConsola vista = new VistaConsola(controlador,partida);
    //ventana.setVisible(true);
    controlador.setVista(vista);
    //partida.addUpdateListener(ventana.getOyenteModelo());
    partida.addUpdateListener(vista.getGameListener());
   
    vista.start();
   
    //String so = System.getProperty("os.name");
    //System.out.print(so);
View Full Code Here


    this.vista.enableCargarPartida(archivo.exists());
  }

  private void nuevaPartida() {
    try {
      Partida modeloPartida = this.modelo.nuevaPartida();
      new NuevaPartidaControlador(modeloPartida, this.vista);
    } catch (ParserConfigurationException | SAXException | IOException e1) {
      throw new RuntimeException(e1);
    }
  }
View Full Code Here

    }
  }

  private void cargarPartida() {
    try {
      Partida modeloPartida = this.modelo.cargarPartida();
      new NuevaPartidaControlador(modeloPartida, this.vista);
    } catch (ParserConfigurationException | SAXException | IOException e1) {
      throw new RuntimeException(e1);
    }
  }
View Full Code Here

    // Creo OrdenDeArresto
    OrdenDeArresto orden = new OrdenDeArresto();
    orden.agregarLadronABaseDeDatos(ladron);

    // Creo Partida
    this.partida = new Partida(policia, ladron, turno, orden);
  }
View Full Code Here

TOP

Related Classes of modelo.Partida

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.