forked from HeiBK201/Projet_S3_L2SPI_Zombie
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CreaCarte.c
198 lines (178 loc) · 4.01 KB
/
CreaCarte.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
#include "Outilcpy.h"
#include "bibliotheque.h"
int mat[T][T];
int carte[T][T];
char batiment;
void initialisation(int mat[T][T])//Initialisation de la matrice
{
int i;
int j;
for(i=0;i<T;i++){
for(j=0;j<T;j++){
mat[i][j] = 0;
}
}
}
char batiAlea()//Batiment aleatoire
{
int nb;
char maison = 'M'; // taille 1
char restaurant = 'R'; // taille 4
char clinique = '+'; // taille 4
char usine = 'U'; //taille 6
char epicerie = 'E'; //taille 2
char champs = 'C'; // taille 4 ou 6
char garage = 'G'; // taille 4
char rien = '.';
char batiment;
nb = uHasard(10);
switch(nb)
{
case 1:batiment = maison;break;
case 2:batiment = restaurant;break;
case 3:batiment = clinique;break;
case 4:batiment = usine;break;
case 5:batiment = epicerie;break;
case 6:batiment = champs;break;
case 7:batiment = garage;break;
default: batiment = rien;
}
return batiment;
}
void voisinRoute(){
//Cherche les cases voisines d'une route
int i;
int j;
int voisinR = 2;
for(i=0;i<T;i++){
for(j=0;j<T;j++){
if(mat[i][j] == 1){
if(j-1 >= 0)
if(mat[i][j-1] == 0)
mat[i][j-1] = voisinR;
if(j+1 < T)
if(mat[i][j+1] == 0)
mat[i][j+1] = voisinR;
if(i-1 >=0)
if(mat[i-1][j] == 0)
mat[i-1][j] = voisinR;
if(i+1 < T)
if(mat[i+1][j] == 0)
mat[i+1][j] = voisinR;
}
}
}
}
void placerBatiment()//Affichage carte
{
//int compteurM = 0; //compteur de maisons
int compteurR = 0; //compteur de restaurants
int compteurClinique = 0; //compteur de cliniques
int compteurU = 0; //compteur d'usines
int compteurE = 0; //compteur d'epiceries
int compteurC = 0; //compteur de champs
int compteurG = 0; //compteur de garages
int compteurtotal;
int i;
int j;
for(i=0;i<T;i++)
{
compteurtotal = 0;
for(j=0;j<T;j++)
{
if(mat[i][j] == 1)
{
//Affichage de la route
Assert1("probleme matrice route",mat[i][j]==1);
carte[i][j] = 1;
}
else if(mat[i][j] == 2)
{
//Initialisation des bâtiments speciaux
Assert1("probleme matrice batiment",mat[i][j]==2);
batiment = batiAlea();
if((batiment == 'R') && (compteurR == 0) && (compteurtotal == 0))
{
compteurR ++;
compteurtotal++;
carte[i][j] = 3;
}
else if((batiment == '+') && (compteurClinique == 0) && (compteurtotal == 0))
{
compteurClinique ++;
compteurtotal++;
carte[i][j] = 4;
}
else if((batiment == 'U') && (compteurU == 0) && (compteurtotal == 0))
{
compteurU ++;
compteurtotal++;
carte[i][j] = 5;
}
else if((batiment == 'E') && (compteurE == 0) && (compteurtotal == 0))
{
compteurE ++;
compteurtotal++;
carte[i][j] = 6;
}
else if((batiment == 'C') && (compteurC == 0) && (compteurtotal == 0))
{
compteurC ++;
compteurtotal++;
carte[i][j] = 7;
}
else if((batiment == 'G') && (compteurG == 0) && (compteurtotal == 0))
{
compteurG ++;
compteurtotal++;
carte[i][j] = 8;
}
else if(batiment == '.')
carte[i][j] = 0;
else
carte[i][j] = 2;
}
else{ // Lorsque mat[i][j] == 0
Assert2("probleme matrice autre",mat[i][j] !=1, mat[i][j] !=2);
}
}
}
}
void afficherCarte()
{
int i,j;
char maison = 'M';
char restaurant = 'R';
char clinique = '+';
char usine = 'U';
char epicerie = 'E';
char champs = 'C';
char garage = 'G';
char rien = '.';
char route = '#';
for(i=0;i<T;i++){
for(j=0;j<T;j++){
if(carte[i][j] == 0)
printf("\033[0m%c ",rien);
if(carte[i][j] == 1)
printf("\033[31m%c ",route);
if(carte[i][j] == 2)
printf("\033[0m%c ",maison);
if(carte[i][j] == 3)
printf("\033[0m%c ",restaurant);
if(carte[i][j] == 4)
printf("\033[0m%c ",clinique);
if(carte[i][j] == 5)
printf("\033[0m%c ",usine);
if(carte[i][j] == 6)
printf("\033[0m%c ",epicerie);
if(carte[i][j] == 7)
printf("\033[0m%c ",champs);
if(carte[i][j] == 8)
printf("\033[0m%c ",garage);
}
Ligne();
Ligne();
}
printf("\033[0m");
}