-
Notifications
You must be signed in to change notification settings - Fork 0
/
JeuDeLaVie.c
395 lines (256 loc) · 7.77 KB
/
JeuDeLaVie.c
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
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
/*
Jeu de la vie
PELLOIN VALENTIN - L2 SPI - Université Du Maine
ATTENTION : Pour fonctionner correctement, la fenêtre du terminal doit être suffisamment grande :
==> MINIMUM M+6 x N+15
(M et N définissent la taille de la matrice, cf ligne 28 et 29)
*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <time.h>
#define COLOR_RED "\x1b[31m"
#define COLOR_GREEN "\x1b[32m"
#define COLOR_YELLOW "\x1b[33m"
#define COLOR_BLUE "\x1b[34m"
#define COLOR_MAGENTA "\x1b[35m"
#define COLOR_CYAN "\x1b[36m"
#define COLOR_BLACK "\x1b[30m"
#define COLOR_WHITE "\x1b[37m"
#define COLOR_RESET "\x1b[0m"
#define N 30 //X : COLONNE
#define M 100 //Y : LIGNE
#define XSHIFT 5
#define YSHIFT 10
#define DEBUG_MODE 0
#define DISPLAY_WARNING 1
void clearScreen(){
printf("\e[1;1H\e[2J");
}
void changeColor(char color[]){
printf("%s", color);
}
//Wait for miliS miliseconds
void waitmiliS(int miliS){
usleep(miliS*1000);
}
//Move the cursor to the x ; y coordinates
void gotoxy(int x, int y){
printf("\033[%d;%dH", y, x);
}
//Move the cursor to the end of the matrix
void gotoEndDisplay(int shift){
gotoxy(0, N + YSHIFT + 2 + shift);
}
void displayCell(int valueCell){
switch(valueCell){
case 0: changeColor(COLOR_CYAN); printf("█"); break;
case 1: changeColor(COLOR_RED); printf("█"); break;
default: changeColor(COLOR_WHITE); printf("X"); break;
}
}
//Display the matrix and the current generation
void displayMatrix(int Mat[N][M], int generation){
int i, j, k;
clearScreen();
changeColor(COLOR_WHITE);
printf("\n\n Jeu de la vie : \n");
printf(" > Matrice de %ix%i.\n", M, N);
printf(" > Génération %i.\n\n", generation);
//Print table border
printf("┏");
for(i = 0 ; i <= M+3 ; i++) printf("━");
printf("┓\n┃\n┃ ");
//Print row numbers
changeColor(COLOR_BLUE);
for(i = 0 ; i < M ; i++) printf("%i",i%10);
changeColor(COLOR_WHITE);
//Print table border
gotoxy(M+XSHIFT+1,YSHIFT-1);
printf("┃\n┃ %s0",COLOR_BLUE);
for(i = 0 ; i < N ; i++){
for(j = 0 ; j < M ; j++){
displayCell(Mat[i][j]); //Display each cell
}
//Print table border
changeColor(COLOR_WHITE);
printf(" ┃\n┃ ");
//Print lines numbers
changeColor(COLOR_BLUE);
if(i+1 <= 9) printf(" %i", i+1);
else printf("%i", i+1);
}
//Print table border
changeColor(COLOR_WHITE);
printf("\n┗");
for(i = 0 ; i <= M+3 ; i++) printf("━");
printf("┛");
gotoxy(M+XSHIFT+1,N+YSHIFT);
printf("┃");
gotoxy(M+XSHIFT+1,YSHIFT-2);
printf("┃");
gotoxy(3,N+YSHIFT);
printf(" ");
gotoEndDisplay(4);
}
/* Utilisation :
N : LIGNES
M : COLONNES
Mat[N][M];
updateMatrix(Mat , INDICE DE LA LIGNE (Y => N), INDICE DE LA COLONNE (X => M));
*/
void updateMatrix(int Mat[N][M], int y, int x){
gotoxy(x+XSHIFT,y+YSHIFT);
displayCell(Mat[y][x]);
gotoEndDisplay(3);
}
//Retourne un entier aléatoire, 0 ou 1
int rand_0_1(){
return rand()%2;
}
//Cette fonction initialise les cellules de la matrice, en ouvrant un fichier indiqué par l'utilisateur
void initCells(int Mat[N][M]){
char fileName[255];
FILE *file;
int cellX, cellY;
char askSentence[255] = " > Veuillez indiquer un nom de fichier contenant la liste des cellules à ouvrir : ";
clearScreen();
changeColor(COLOR_WHITE);
printf("\n\n Jeu de la vie : \n");
printf("%s\n",askSentence);
printf(" => %srandom%s pour une génération initiale aléatoire.%s", COLOR_MAGENTA, COLOR_WHITE, COLOR_MAGENTA);
gotoxy(strlen(askSentence),4);
scanf("%s",fileName);
if(strcmp(fileName, "random") == 0){
for(cellX = 0 ; cellX < N ; cellX++){
for(cellY = 0 ; cellY < M ; cellY++){
Mat[cellX][cellY] = rand_0_1();
}
}
}
else {
file = fopen(fileName, "r");
while(file == NULL){
clearScreen();
changeColor(COLOR_RED);
printf("\n /!\\ Le fichier %s%s%s n'existe pas ! /!\\\n", COLOR_MAGENTA, fileName, COLOR_RED);
changeColor(COLOR_WHITE);
printf(" Jeu de la vie : \n");
printf(" > Veuillez indiquer un nom de fichier contenant la liste des cellules à ouvrir : ");
scanf("%s",fileName);
file = fopen(fileName, "r");
}
fscanf(file, "%i", &cellX);
while(!feof(file)){
fscanf(file, "%i", &cellY);
Mat[cellY][cellX] = 1;
fscanf(file, "%i", &cellX);
}
fclose(file);
}
}
//Demande à l'utilisateur le nombre de générations à afficher
int askGenerationMax(){
int maxGenerations;
do{
clearScreen();
changeColor(COLOR_WHITE);
printf("\n\n Jeu de la vie : \n");
printf(" > Veuillez indiquer le nombre de générations à afficher : %s",COLOR_MAGENTA);
scanf("%i", &maxGenerations);
}while(maxGenerations <= 0);
return maxGenerations;
}
//Calcule les voisins de chaque cellule
void calcNeighbor(int Mat[N][M], int Neighbor[N][M]){
int i, j;
int neighborTemp;
for(i = 0 ; i < N ; i++){
for(j = 0 ; j < M ; j++){
neighborTemp = 0;
//Si nous pouvons regarder en haut de la matrice
if(i - 1 >= 0){
if(Mat[i-1][j] == 1) neighborTemp++;
if((j - 1 >= 0) && (Mat[i-1][j-1] == 1)) neighborTemp++; //Si nous pouvons regarder en haut à gauche
if((j + 1 < M) && (Mat[i-1][j+1] == 1)) neighborTemp++; //Si nous pouvons regarder en haut à droite
}
if(i + 1 < N){
if(Mat[i+1][j] == 1) neighborTemp++;
if((j - 1 >= 0) && (Mat[i+1][j-1] == 1)) neighborTemp++; //Si nous pouvons regarder en haut à gauche
if((j + 1 < M) && (Mat[i+1][j+1] == 1)) neighborTemp++; //Si nous pouvons regarder en haut à droite
}
if((j - 1 >= 0) && (Mat[i][j-1] == 1)) neighborTemp++;
if((j + 1 < M) && (Mat[i][j+1] == 1)) neighborTemp++;
Neighbor[i][j] = neighborTemp;
}
}
}
//Calc living cells according to the neighbors
void calcLivingCells(int Mat[N][M], int Neighbor[N][M]){
int i, j;
for(i = 0 ; i < N ; i++){
for(j = 0 ; j < M ; j++){
if(Mat[i][j] == 1 && (Neighbor[i][j] != 2 && Neighbor[i][j] != 3)){
Mat[i][j] = 0;
updateMatrix(Mat,i,j);
}
else if(Mat[i][j] == 0 && Neighbor[i][j] == 3){
Mat[i][j] = 1;
updateMatrix(Mat, i, j);
}
}
}
}
//ONLY IN DEBUG MODE (IF DEBUB = 1), display the neighbors matrix
void displayNeighbor(int Neighbor[N][M]){
int i, j;
clearScreen();
gotoxy(0,N+15);
for(i = 0 ; i < N ; i++){
for(j = 0 ; j < M ; j++){
printf("%i", Neighbor[i][j]);
}
printf("\n");
}
printf("\n\n");
}
void displayWarning(){
clearScreen();
//gotoxy(0,10);
changeColor(COLOR_RED);
printf(" ATTENTION : VOTRE FENÊTRE DOIT FAIRE AU MINIMUM %s%i x %i%s POUR QUE LE PROGRAMME PUISSE FONCTIONNER.\n\n",COLOR_GREEN,M+6,N+15,COLOR_RED);
printf(" REDIMENSIONNEZ-LA SI NECESSAIRE, PUIS APPUYEZ SUR ENTRÉE.\n\n\n\n\n\n\n");
printf("%sPour ignorer l'avertissement la prochaine fois, modifiez \n %s#define DISPLAY_WARNING 1\n%s en \n %s#define DISPLAY_WARNING 0%s\n à la ligne %s35%s du programme.\n\n\n",COLOR_WHITE,COLOR_MAGENTA,COLOR_WHITE,COLOR_MAGENTA,COLOR_WHITE,COLOR_MAGENTA,COLOR_WHITE);
gotoxy(0,6);
scanf("*c");
}
int main(){
int Mat[N][M] = {0};
int Neighbor[N][M] = {0};
//int i;
int generation = 1;
int maxGenerations;
srand(time(NULL));
if(DISPLAY_WARNING) displayWarning(); //Warning about the size of the screen
initCells(Mat);
maxGenerations = askGenerationMax();
//First display of the matrix
displayMatrix(Mat, generation);
while(generation < maxGenerations){
calcNeighbor(Mat,Neighbor);
if(DEBUG_MODE) displayNeighbor(Neighbor); //Print neighbor only if DEBUG_MODE = 1
calcLivingCells(Mat,Neighbor); //Calc living cells and update display
generation++;
//Print the current generation
gotoxy(17,5);
changeColor(COLOR_WHITE);
printf("%i.", generation);
//Avoid waitmiliS to be executed before display (buffer)
gotoEndDisplay(2);
printf("\n");
waitmiliS(200); //Wait for .2 second
}
changeColor(COLOR_RESET);
gotoEndDisplay(2);
}