no me imprime la matriz con los datos del metodo config
public class main {
static String[][] maze; //matriz para el cambas
static String player = "O"; //Icono del personaje
static String muro = "#"; //Icono del muro
static String vacio = " "; //Espacio en blamco del tablero
static String Win = "V"; //Icono de mtea
static String puerta = "="; // Puertas
static String llave = ";"; //llave
static int x = 1, y = 1;
public static void main(String[] args) {
// TODO Auto-generated method stub
maze = new String[10][20];
crear(); //creamos el tablero
actualizar(" "); //Mostramos el tablero creado
//play(); //Empieza el juego
}
public static void crear() {
for (int i = 0; i < maze.length; i++) {
for (int j = 0; j < maze[i].length; j++) {
if (i == 0 || i == maze.length-1) {
maze[i][j] = muro;
} else if (j == 0 || j == maze[i].length-1) {
maze[i][j] = muro;
} else {
maze[i][j] = vacio;
}
}
}
config(); //configuramos el tablero en base a la dificultat
}
public static void config() {
String [][] maze = {{"#","P","#"," "," "," "," "," "," "," ","#","#","#","#"," "," "," ",";"," ","#"}, //1
{"#"," ","#"," ","#"," ","#","#","#"," "," "," "," "," "," ","#"," ","#"," ","#"}, //2
{"#"," "," "," ","#"," ","#","#","#"," ","#"," ","#","#","#","#"," ","#","#","#"}, //3
{"#","=","#"," ","#","#"," "," ","#","#"," ","#"," ","#","#","#","#"," "," ","#"}, //4
{}}; //Esto entero
}
public static void actualizar(String txt) {
//borrar();
//Comprobamos si ha ganado
if (maze[x][y] == Win) {
//win();
}else {
maze[x][y] = player;
for (int i = 0; i < maze.length; i++) {
for (int j = 0; j < maze[i].length; j++) {
System.out.print(maze[i][j]);
}
System.out.println("");
}
}
//play(); //Comprobamos la tecla que pulsa el jugador
}
}