forked from mmasias/22-23-prg1-examenfinal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Commit1.java
134 lines (119 loc) · 4.39 KB
/
Commit1.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
import java.util.Scanner;
public class Commit1 {
static int FILA = 0;
static int COLUMNA = 1;
static int contadorMonedas=0;
static void imprimeMoneda() {
System.out.print(" . ");
}
static void imprimeFantasma() {
System.out.print("F");
}
static void imprimePersonaje() {
System.out.print("P");
}
static void imprimeTerreno(int terreno1) {
String[] terreno = {
" . ",
"[#]",
" ",
};
System.out.print(terreno[terreno1]);
}
static final int ARRIBA = 1;
static final int ABAJO = 2;
static final int IZQUIERDA = 3;
static final int DERECHA = 4;
public static void main(String[] args) {
Scanner entrada = new Scanner(System.in);
char inputUsuario;
boolean terminar = false;
int[][] unMapa = {
{ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 },
{ 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1 },
{ 1, 0, 1, 0, 1, 0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 1, 0, 1, 0, 1 },
{ 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1 },
{ 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1, 1, 1, 1, 0, 1 },
{ 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0 },
{ 1, 0, 0, 0, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 0, 0, 1, 0, 0, 0, 0, 1 },
{ 1, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 1 },
{ 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1 },
{ 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0, 1 },
{ 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1 },
{ 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1 }
};
int[] posicionPersonaje = { 7, 10 };
int[] posicionFantasma = { 5, 10 };
do {
imprimeMundo(unMapa, posicionPersonaje, posicionFantasma);
} while (!terminar);
}
static void imprimeMundo(int[][] unMapa, int[] elPersonaje, int[] unFantasma) {
for (int fila = 0; fila < unMapa.length; fila++) {
for (int columna = 0; columna < unMapa[fila].length; columna++) {
if (fila == elPersonaje[FILA] && columna == elPersonaje[COLUMNA]) {
imprimePersonaje();
} else if (fila == unFantasma[FILA] && columna == unFantasma[COLUMNA]){
imprimeFantasma();
} else imprimeTerreno(unMapa[fila][columna]);
if (fila == elPersonaje[FILA] && columna==elPersonaje[COLUMNA] && unMapa[fila][columna]==1){
contadorMonedas++;
unMapa[fila][columna]=2;
}
}
System.out.println();
} if (unFantasma[FILA] == elPersonaje[FILA] && unFantasma[COLUMNA]==elPersonaje[COLUMNA]) {
System.exit(0);
}
System.out.println("Monedas: "+contadorMonedas);
}
private static int capturaMovimiento() {
switch (preguntaChar()) {
case 's', 'S', '8':
return ABAJO;
case 'w', 'W', '2':
return ARRIBA;
case 'a', 'A', '4':
return IZQUIERDA;
case 'd', 'D', '6':
return DERECHA;
}
return 0;
}
static char preguntaChar() {
Scanner entrada = new Scanner(System.in);
return entrada.next().charAt(0);
switch (inputUsuario) {
case 's', 'S', '8':
posicionPersonaje[2] = posicionPersonaje[2] + 1;
break;
case 'w', 'W', '2':
posicionPersonaje[2] = posicionPersonaje[2] - 1;
break;
case 'a', 'A', '4':
posicionPersonaje[1] = posicionPersonaje[1] - 1;
break;
case 'd', 'D', '6':
posicionPersonaje[1] = posicionPersonaje[1] + 1;
break;
case 'f', 'F':
terminar = true;
}
}
private static void definePosicion(int[] elPersonaje, int[] elFantasma) {
switch (capturaMovimiento()) {
case ARRIBA:
mueve(elPersonaje, ARRIBA);
break;
case ABAJO:
mueve(elPersonaje, ABAJO);
break;
case IZQUIERDA:
mueve(elPersonaje, IZQUIERDA);
break;
case DERECHA:
mueve(elPersonaje, DERECHA);
break;
}
}
}