Package main

Source Code of main.prueba

package main;


import modelo.Partida;
import controlador.GameController;



import vista.VistaConsola;
import vista.GUI;


public class prueba {

  /**
   * @param args
   */
 
 
 
  public static void main(String[] args) {
    //System.out.println(System.getProperty("user.dir"));
   
   
   
   
   
   
    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);
    //vista.borrarPantalla(100);
    //vista.welcome();
    //Console console=System.console();
    //vista.borrarPantalla(50);
    //partida.buildAbadiaMap();
    //vista.readPlayers();
    //tablero.muestraCasillas();
    //tablero.squareConnectedTo(tablero.dameCasilla(15));
    //Jugador jug1=new Jugador("Fray Perico",Jugador.Colores.AMARILLO, tablero);
    //Jugador jug2=new Jugador("Fray Anselmo",Jugador.Colores.AZUL, tablero);
    //System.out.print(jug1);
    //System.out.print(jug2);
    //jug1.moveJugador(tablero.dameCasilla(1));
    //System.out.print(jug1);
    //System.out.print(tablero.dameCasilla(1).playersHere());
    //jug1.moveJugador(tablero.dameCasilla(2));
    //System.out.print(jug1);
    //System.out.print(tablero.dameCasilla(1).playersHere());
    //System.out.print(tablero.dameCasilla(2).playersHere());
  }
}
TOP

Related Classes of main.prueba

TOP
Copyright © 2018 www.massapi.com. 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.