-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.java
183 lines (150 loc) · 4.41 KB
/
main.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
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
import java.util.Scanner;
public class main {
public static void main(String[] args) {
Scanner entrada=new Scanner(System.in);
int m = 0;
String nombre = null;//nombre de usuario
int tInicial = 0;//tamanio inicial del snake
int largo=0;
String[][] tablero;
String[] snake;
int posicionX;
int posicionY;
int frutoX = 0;
int frutoY = 0;
int randomX,randomY;
boolean jugar;
String movimiento;
int punteo=0;
String fruto="*";
String[] historial=new String[1];
int[] historial2=new int[3];
boolean menu=true;
while(menu) {
System.out.println("Elige una opcion");
System.out.println("1. Inicio del juego"+"\n"+"2. Datos del estudiante"+"\n"+
"3. Historial de partidas jugadas"+"\n"+"4. Salir");
int opcion=entrada.nextInt();
while((opcion<1)||(opcion>4)) {
System.out.println("Opcion no valida");
opcion=entrada.nextInt();
}
switch(opcion) {
case 1:
System.out.println("Introduce tu nombre");
nombre=entrada.next();
System.out.println("Introduce el tamanio del tablero");
m=entrada.nextInt();
while(m<10) {
System.out.println("el largo minimo debe ser de 10");
System.out.println("Introduce un largo");
m=entrada.nextInt();
}
System.out.println("Introduce el tamanio inicial del Snake");
tInicial=entrada.nextInt();
while((tInicial<=0)||(tInicial>=m)){
System.out.println("El tamanio minimo debe ser 1 y no mayor que "+(m-1));
System.out.println("Introduce el tamanio inicial del Snake");
tInicial=entrada.nextInt();
}
largo=tInicial;
snake=new String[1];
posicionX=m/2;
posicionY=m/2;
randomX=(int)(Math.random()*(m));
randomY=(int)(Math.random()*(m));
tablero=new String[m+2][m+2];
jugar=true;
while(jugar) {
System.out.println(punteo+" "+nombre);
for(int i=0;i<m+2;i++) {
System.out.println();
for(int j=0;j<m+2;j++) {
if((i==0)||(j==0)||(i==m+1)||(j==m+1)) {
tablero[i][j]="#";
}
else {
if((i==posicionY)&&(j==posicionX)){
for(int k=0;k<tInicial;k++) {
snake[k]="@";
System.out.print(snake[k]);
}
}
else{
if((i==randomX)&&(j==randomY)){
tablero[i][j]=fruto;
frutoX=i;
frutoY=j;
}
else{
tablero[i][j]=" ";
}
}
}
System.out.print(tablero[i][j]+" ");
}
}
switch(movimiento=entrada.next()){
case"a":
posicionX=posicionX-1;
break;
case "d":
posicionX=posicionX+1;
break;
case "w":
posicionY=posicionY-1;
if(tInicial>1) {
}
break;
case "s":
posicionY=posicionY+1;
break;
}
if((posicionX==0)||(posicionY==0)||(posicionX==m+1)||(posicionY==m+1)) {
System.out.println("perdiste");
jugar=false;
}
if((posicionX==randomY)&&(posicionY==randomX)) {
tInicial=tInicial+1;
snake=new String[tInicial];
randomX=(int)(Math.random()*(m));
randomY=(int)(Math.random()*(m));
tablero[randomX][randomY]=fruto;
System.out.println("fruto "+"("+posicionX+", "+posicionY+")");
if(frutoX>frutoY) {
punteo=Math.abs(((m/2)-frutoY));
}
else {
if(frutoX<frutoY) {
punteo=Math.abs(((m/2)-frutoX));
}
else {
if(frutoX==frutoY) {
punteo=Math.abs(((m/2)-frutoX));
}
}
}
punteo=punteo+punteo;
}
}
break;
case 2:
System.out.println("Eulalio Ernesto Tzul Perez"+"\n"+"Carne: 201602904");
break;
case 3:
historial[0]=nombre;
historial2[0]=punteo;
historial2[1]=m;
historial2[2]=largo;
System.out.println("nombre jugador: "+historial[0]);
System.out.println("Punteo: "+historial2[0]);
System.out.println("tamaño del tablero: "+historial2[1]);
System.out.println("tamaño inicial del snake: "+historial2[2]);
break;
case 4:
menu=false;
break;
}
}
}
}