-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathminas.c
More file actions
300 lines (271 loc) · 9.1 KB
/
Copy pathminas.c
File metadata and controls
300 lines (271 loc) · 9.1 KB
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
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <time.h>
struct casilla {
char etiq;
char tipo;
int nMinas;
char o;
char f;
};
typedef struct casilla tipoCasilla;
tipoCasilla **matriz;
tipoCasilla **CrearMatriz(int filas, int cols){
int i,j;
tipoCasilla **matriz=(tipoCasilla**) malloc (filas*sizeof(tipoCasilla*));
for (i=0;i<filas;i++){
matriz[i]=(tipoCasilla*) malloc (cols*sizeof(tipoCasilla));
for(j=0;j<cols;j++){
matriz[i][j].etiq='*';
matriz[i][j].tipo='C';
matriz[i][j].nMinas=0;
matriz[i][j].o=0;
matriz[i][j].f='F';
}
}
return matriz;
}
void PonerMinas (int filas,int cols,tipoCasilla **matriz,int numeroMinas){
int posFil,posCol,n;
srand(time (NULL));
n=0;
while (n<numeroMinas){
posFil=rand ()%filas;
posCol=rand ()%cols;
if (matriz[posFil][posCol].tipo != 'M'){
n++;
}
matriz[posFil][posCol].tipo='M';
}
}
void dibujarTablero2(int filas, int cols, tipoCasilla **matriz){
int i,j;
printf (" ");
for(j=0;j<cols;j++){
printf ("-%d-",j);
}
printf ("\n");
for (i=0;i<filas;i++){
printf ("%d--",i);
for(j=0;j<cols;j++){
printf ("|%c|",matriz[i][j].tipo);
}
printf ("\n");
}
}
void dibujarTablero(int filas, int cols, tipoCasilla **matriz){
int i,j;
printf (" ");
for(j=0;j<cols;j++){
printf ("-%d-",j);
}
printf ("\n");
for (i=0;i<filas;i++){
printf ("%d--",i);
for(j=0;j<cols;j++){
printf ("|%c|",matriz[i][j].etiq);
}
printf ("\n");
}
}
int validar (int i, int j, int filas, int cols){
if ((i)>=0 && (j)>=0 && (j)<cols && (i)<filas){
return 1;
}
return 0;
}
void ColocarNumero(int filas,int cols, tipoCasilla **matriz){
int i,j;
for (i=0;i<filas;i++){
for(j=0;j<cols;j++){
if(validar (i,j-1,filas,cols) && matriz[i][j-1].tipo=='M'){
matriz[i][j].nMinas++;
}
if(validar (i,j+1,filas,cols) && matriz[i][j+1].tipo=='M'){
matriz[i][j].nMinas++;
}
if(validar (i-1,j-1,filas,cols) && matriz[i-1][j-1].tipo=='M'){
matriz[i][j].nMinas++;
}
if(validar (i-1,j,filas,cols) && matriz[i-1][j].tipo=='M'){
matriz[i][j].nMinas++;
}
if(validar (i-1,j+1,filas,cols) && matriz[i-1][j+1].tipo=='M'){
matriz[i][j].nMinas++;
}
if(validar (i+1,j-1,filas,cols) && matriz[i+1][j-1].tipo=='M'){
matriz[i][j].nMinas++;
}
if(validar (i+1,j,filas,cols) && matriz[i+1][j].tipo=='M'){
matriz[i][j].nMinas++;
}
if(validar (i+1,j+1,filas,cols) && matriz[i+1][j+1].tipo=='M'){
matriz[i][j].nMinas++;
}
}
}
}
void verZeros(int filas,int cols,tipoCasilla **matriz,int x,int y){
if (matriz[x][y].nMinas==0){
if(validar (x,y-1,filas,cols) && matriz[x][y-1].nMinas==0 && matriz[x][y-1].tipo=='C' && matriz[x][y-1].etiq=='*'){
matriz[x][y-1].etiq=matriz[x][y-1].nMinas+48;
AbrirNumeros(filas,cols,matriz,x,y-1);
}
if(validar (x,y+1,filas,cols) && matriz[x][y+1].nMinas==0 && matriz[x][y+1].tipo=='C' && matriz[x][y+1].etiq=='*'){
matriz[x][y+1].etiq=matriz[x][y+1].nMinas+48;
AbrirNumeros(filas,cols,matriz,x,y+1);
}
if(validar (x-1,y-1,filas,cols) && matriz[x-1][y-1].nMinas==0 && matriz[x-1][y-1].tipo=='C' && matriz[x-1][y-1].etiq=='*' ){
matriz[x-1][y-1].etiq=matriz[x-1][y-1].nMinas+48;
AbrirNumeros(filas,cols,matriz,x-1,y-1);
}
if(validar (x-1,y,filas,cols) && matriz[x-1][y].nMinas==0 && matriz[x-1][y].tipo=='C' && matriz[x-1][y].etiq=='*'){
matriz[x-1][y].etiq=matriz[x-1][y].nMinas+48;
AbrirNumeros(filas,cols,matriz,x-1,y);
}
if(validar (x-1,y+1,filas,cols) && matriz[x-1][y+1].nMinas==0 && matriz[x-1][y+1].tipo=='C' && matriz[x-1][y+1].etiq=='*'){
matriz[x-1][y+1].etiq=matriz[x-1][y+1].nMinas+48;
AbrirNumeros(filas,cols,matriz,x-1,y+1);
}
if(validar (x+1,y-1,filas,cols) && matriz[x+1][y-1].nMinas==0 && matriz[x+1][y-1].tipo=='C' && matriz[x+1][y-1].etiq=='*'){
matriz[x+1][y-1].etiq=matriz[x+1][y-1].nMinas+48;
AbrirNumeros(filas,cols,matriz,x+1,y-1);
}
if(validar (x+1,y,filas,cols) && matriz[x+1][y].nMinas==0 && matriz[x+1][y].tipo=='C' && matriz[x+1][y].etiq=='*' ){
matriz[x+1][y].etiq=matriz[x+1][y].nMinas+48;
AbrirNumeros(filas,cols,matriz,x+1,y);
}
if(validar (x+1,y+1,filas,cols) && matriz[x+1][y+1].nMinas==0 && matriz[x+1][y+1].tipo=='C' && matriz[x+1][y+1].etiq=='*'){
matriz[x+1][y+1].etiq=matriz[x+1][y+1].nMinas+48;
AbrirNumeros(filas,cols,matriz,x+1,y+1);
}
}
}
void AbrirNumeros(int filas,int cols, tipoCasilla **matriz,int x, int y){
int n=0,i,j;
if (matriz[x][y].nMinas==0){
if(validar (x,y-1,filas,cols) && matriz[x][y-1].nMinas==0 && matriz[x][y-1].tipo=='C' && matriz[x][y-1].etiq=='*'){
verZeros(filas,cols,matriz,x,y-1);
}
if(validar (x,y+1,filas,cols) && matriz[x][y+1].nMinas==0 && matriz[x][y+1].tipo=='C' && matriz[x][y+1].etiq=='*'){
verZeros(filas,cols,matriz,x,y+1);
}
if(validar (x-1,y-1,filas,cols) && matriz[x-1][y-1].nMinas==0 && matriz[x-1][y-1].tipo=='C' && matriz[x-1][y-1].etiq=='*' ){
verZeros(filas,cols,matriz,x-1,y-1);
}
if(validar (x-1,y,filas,cols) && matriz[x-1][y].nMinas==0 && matriz[x-1][y].tipo=='C' && matriz[x-1][y].etiq=='*'){
verZeros(filas,cols,matriz,x-1,y);
}
if(validar (x-1,y+1,filas,cols) && matriz[x-1][y+1].nMinas==0 && matriz[x-1][y+1].tipo=='C' && matriz[x-1][y+1].etiq=='*'){
verZeros(filas,cols,matriz,x-1,y+1);
}
if(validar (x+1,y-1,filas,cols) && matriz[x+1][y-1].nMinas==0 && matriz[x+1][y-1].tipo=='C' && matriz[x+1][y-1].etiq=='*'){
verZeros(filas,cols,matriz,x+1,y-1);
}
if(validar (x+1,y,filas,cols) && matriz[x+1][y].nMinas==0 && matriz[x+1][y].tipo=='C' && matriz[x+1][y].etiq=='*' ){
verZeros(filas,cols,matriz,x+1,y);
}
if(validar (x+1,y+1,filas,cols) && matriz[x+1][y+1].nMinas==0 && matriz[x+1][y+1].tipo=='C' && matriz[x+1][y+1].etiq=='*'){
verZeros(filas,cols,matriz,x+1,y+1);
}
if(validar (x,y-1,filas,cols) && matriz[x][y-1].tipo=='C' && matriz[x][y-1].etiq=='*'){
matriz[x][y-1].etiq=matriz[x][y-1].nMinas+48;
}
if(validar (x,y+1,filas,cols) && matriz[x][y+1].tipo=='C' && matriz[x][y+1].etiq=='*'){
matriz[x][y+1].etiq=matriz[x][y+1].nMinas+48;
}
if(validar (x-1,y-1,filas,cols) && matriz[x-1][y-1].tipo=='C' && matriz[x-1][y-1].etiq=='*' ){
matriz[x-1][y-1].etiq=matriz[x-1][y-1].nMinas+48;
}
if(validar (x-1,y,filas,cols) && matriz[x-1][y].tipo=='C' && matriz[x-1][y].etiq=='*'){
matriz[x-1][y].etiq=matriz[x-1][y].nMinas+48;
}
if(validar (x-1,y+1,filas,cols) && matriz[x-1][y+1].tipo=='C' && matriz[x-1][y+1].etiq=='*'){
matriz[x-1][y+1].etiq=matriz[x-1][y+1].nMinas+48;
}
if(validar (x+1,y-1,filas,cols) && matriz[x+1][y-1].tipo=='C' && matriz[x+1][y-1].etiq=='*'){
matriz[x+1][y-1].etiq=matriz[x+1][y-1].nMinas+48;
}
if(validar (x+1,y,filas,cols) && matriz[x+1][y].tipo=='C' && matriz[x+1][y].etiq=='*' ){
matriz[x+1][y].etiq=matriz[x+1][y].nMinas+48;
}
if(validar (x+1,y+1,filas,cols) && matriz[x+1][y+1].tipo=='C' && matriz[x+1][y+1].etiq=='*'){
matriz[x+1][y+1].etiq=matriz[x+1][y+1].nMinas+48;
}
}
}
void jugar (int filas,int cols, tipoCasilla **matriz,int x,int y,int z){
if (z=='n' && matriz[x][y].tipo=='C'){
matriz[x][y].etiq=matriz[x][y].nMinas+48;
dibujarTablero(filas,cols,matriz);
}
if (z=='f' && (matriz[x][y].tipo=='M' || matriz[x][y].tipo=='C')){
matriz[x][y].etiq=matriz[x][y].f;
dibujarTablero(filas,cols,matriz);
}
}
int ganar(int filas,int cols,tipoCasilla **matriz){
int i,j,l=0;
for (i=0;i<filas;i++){
for(j=0;j<cols;j++){
if (matriz[i][j].tipo=='M' && matriz[i][j].etiq=='F'){
l++;
}
}
}
return l;
}
void main(int argc, char*argv[]){
int filas=atoi (argv [1]);
int cols=atoi (argv [2]);
int minas=atoi (argv [3]);
tipoCasilla **matriz=CrearMatriz (filas,cols);
printf ("\n");;
printf ("Instrucciones:\n");
printf ("-- Primer valor es la fila.\n");
printf ("-- Segundo valor es la columna.\n");
printf ("-- Tercer valor es el tipo de casilla.\n");
printf ("-- Si deseas colocar una bandera hazlo con la letra f.\n");
printf ("-- De lo contrario usa la letra n como tercer comando.\n");
printf ("-- Solo se gana cuando se colocan banderas sobre todas las minas.\n");
printf ("-------------------------------------------------------------------\n");
PonerMinas(filas,cols,matriz,minas);
ColocarNumero(filas,cols,matriz);
dibujarTablero(filas,cols,matriz);
int x,y;
char z;
int n=0,p=0;
while (n<=(filas*cols)){
scanf("%d %d %c",&x,&y,&z);
int o=ganar(filas,cols,matriz);
if (matriz[x][y].tipo=='M' && z=='n'){
printf ("PERDISTE HABIA UNA MINA EN ESA POSICION!!\n");
printf ("M=Mina C=Normal\n");
dibujarTablero2(filas,cols,matriz);
break;
}
if (matriz[x][y].tipo=='C' && z=='n'){
printf ("-------------------------------\n");
p++;
AbrirNumeros(filas,cols,matriz,x,y);
jugar (filas,cols,matriz,x,y,z);
ganar(filas,cols,matriz);
}
if ((matriz[x][y].tipo=='C' || matriz[x][y].tipo=='M' ) && z=='f'){
printf ("-------------------------------\n");
p++;
jugar (filas,cols,matriz,x,y,z);
ganar(filas,cols,matriz);
}
n++;
if(o==minas-1){
printf("\n");
printf("HAS GANADO EL JUEGO!!\n");
printf ("MIRA LAS POSICIONES DE LAS MINAS:\n");
printf ("M=Mina C=Normal\n");
dibujarTablero2(filas,cols,matriz);
break;
}
}
}