-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEnvironnement.java
271 lines (256 loc) · 7.72 KB
/
Environnement.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
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
public class Environnement
{ private int nbLignes;
private int nbColonnes;
private Thon[][] tabT;
private Requin[][] tabR;
private int[][] courbe;
public Environnement(int a, int b, int crt, int crr, int cf, int nbt, int nbr)
{ // nbt et nbr correspondent au nb donné de poissons vivants au départ
nbLignes = a;
nbColonnes = b;
// Déclaration des tableaux et allocation des espaces,
// les tableaux sont remplis de poissons morts
tabT = new Thon[a][b];
tabR = new Requin[a][b];
for (int i=0; i<a; i++)
{ for (int j=0; j<b; j++)
{ tabT[i][j] = new Thon(crt);
tabR[i][j] = new Requin(crr, cf);
}
}
//Tableau de la courbe courbe[0][] -> thons / courbe[1][] -> requins
//Indices -> 1 ms et 1 px
courbe = new int[2][630];
for (int i=0; i<2; i++)
{ for (int j=0; j<630; j++)
{ courbe[i][j] = 0;
}
}
//
int cpt = 0, l, c;
while (cpt < nbt)
{ l = (int)Math.floor(Math.random()*nbLignes);
c = (int)Math.floor(Math.random()*nbColonnes);
// Teste si un poisson est vivant dans la case et sinon créé un thon ou un poisson vivant
while (tabT[l][c].getVivant() || tabR[l][c].getVivant())
{ l = (int)Math.floor(Math.random()*nbLignes);
c = (int)Math.floor(Math.random()*nbColonnes);
}
tabT[l][c].setVivant(true);
cpt++;
}
cpt = 0;
while (cpt < nbr)
{ l = (int)Math.floor(Math.random()*nbLignes);
c = (int)Math.floor(Math.random()*nbColonnes);
// Teste si un poisson est vivant dans la case et sinon créé un thon ou un poisson vivant
while (tabT[l][c].getVivant() || tabR[l][c].getVivant())
{ l = (int)Math.floor(Math.random()*nbLignes);
c = (int)Math.floor(Math.random()*nbColonnes);
}
tabR[l][c].setVivant(true);
cpt++;
}
}
public int getNbLignes()
{ return nbLignes;
}
public int getNbColonnes()
{ return nbColonnes;
}
public Thon getTabT(int x, int y)
{ return tabT[x][y];
}
public Requin getTabR(int x, int y)
{ return tabR[x][y];
}
public int getNbCases()
{ return nbLignes*nbColonnes;
}
public int getNbThons()
{ int cpt = 0;
for (int i=0; i<nbLignes; i++)
{ for (int j=0; j<nbColonnes; j++)
{ if (tabT[i][j].getVivant())
{ cpt++;
}
}
}
return cpt;
}
public int getNbRequins()
{ int cpt = 0;
for (int i=0; i<nbLignes; i++)
{ for (int j=0; j<nbColonnes; j++)
{ if (tabR[i][j].getVivant())
{ cpt++;
}
}
}
return cpt;
}
public void evoluer(int a, int b)
{ //Déplacement aléatoire : nb aléatoire entre 1 et 8
int dir = (int)Math.ceil(Math.random()*8);
if (tabT[a][b].getVivant())
{ // Le thon vieillit d'un tour
tabT[a][b].tour();
if (dir == 1)
{ if ((b>0) && (tabT[a][b-1].getVivant() == false) && (tabR[a][b-1].getVivant() == false))
{ tabT[a][b-1].recopier(tabT[a][b]);
tabT[a][b].reproduire();
}
}
else if (dir == 2)
{ if ((a>0) && (b>0) && (tabT[a-1][b-1].getVivant() == false) && (tabR[a-1][b-1].getVivant() == false))
{ tabT[a-1][b-1].recopier(tabT[a][b]);
tabT[a][b].reproduire();
}
}
else if (dir == 3)
{ if ((a>0) && (tabT[a-1][b].getVivant() == false) && (tabR[a-1][b].getVivant() == false))
{ tabT[a-1][b].recopier(tabT[a][b]);
tabT[a][b].reproduire();
}
}
else if (dir == 4)
{ if ((a>0) && (b<nbColonnes-1) && (tabT[a-1][b+1].getVivant() == false) && (tabR[a-1][b+1].getVivant() == false))
{ tabT[a-1][b+1].recopier(tabT[a][b]);
tabT[a][b].reproduire();
}
}
else if (dir == 5)
{ if ((b<nbColonnes-1) && (tabT[a][b+1].getVivant() == false) && (tabR[a][b+1].getVivant() == false))
{ tabT[a][b+1].recopier(tabT[a][b]);
tabT[a][b].reproduire();
}
}
else if (dir == 6)
{ if ((a<nbLignes-1) && (b<nbColonnes-1) && (tabT[a+1][b+1].getVivant() == false) && (tabR[a+1][b+1].getVivant() == false))
{ tabT[a+1][b+1].recopier(tabT[a][b]);
tabT[a][b].reproduire();
}
}
else if (dir == 7)
{ if ((a<nbLignes-1) && (tabT[a+1][b].getVivant() == false) && (tabR[a+1][b].getVivant() == false))
{ tabT[a+1][b].recopier(tabT[a][b]);
tabT[a][b].reproduire();
}
}
else if (dir == 8)
{ if ((a<nbLignes-1) && (b>0) && (tabT[a+1][b-1].getVivant() == false) && (tabR[a+1][b-1].getVivant() == false))
{ tabT[a+1][b-1].recopier(tabT[a][b]);
tabT[a][b].reproduire();
}
}
}
//Partie requins
else if (tabR[a][b].getVivant())
{ tabR[a][b].tour();
if (dir == 1)
{ if ((b>0) && (tabR[a][b-1].getVivant() == false))
{ // Si la case contient un thon, le requin le mange
if (tabT[a][b-1].getVivant())
{ tabT[a][b-1].setVivant(false);
tabR[a][b].setNbToursAvantFamine(tabR[a][b].getCycleDeFamine());
}
tabR[a][b-1].recopier(tabR[a][b]);
tabR[a][b].reproduire();
}
}
else if (dir == 2)
{ if ((a>0) && (b>0) && (tabR[a-1][b-1].getVivant() == false))
{ if (tabT[a-1][b-1].getVivant())
{ tabT[a-1][b-1].setVivant(false);
tabR[a][b].setNbToursAvantFamine(tabR[a][b].getCycleDeFamine());
}
tabR[a-1][b-1].recopier(tabR[a][b]);
tabR[a][b].reproduire();
}
}
else if (dir == 3)
{ if ((a>0) && (tabR[a-1][b].getVivant() == false))
{ if (tabT[a-1][b].getVivant())
{ tabT[a-1][b].setVivant(false);
tabR[a][b].setNbToursAvantFamine(tabR[a][b].getCycleDeFamine());
}
tabR[a-1][b].recopier(tabR[a][b]);
tabR[a][b].reproduire();
}
}
else if (dir == 4)
{ if ((a>0) && (b<nbColonnes-1) && (tabR[a-1][b+1].getVivant() == false))
{ if (tabT[a-1][b+1].getVivant())
{ tabT[a-1][b+1].setVivant(false);
tabR[a][b].setNbToursAvantFamine(tabR[a][b].getCycleDeFamine());
}
tabR[a-1][b+1].recopier(tabR[a][b]);
tabR[a][b].reproduire();
}
}
else if (dir == 5)
{ if ((b<nbColonnes-1) && (tabR[a][b+1].getVivant() == false))
{ if (tabT[a][b+1].getVivant())
{ tabT[a][b+1].setVivant(false);
tabR[a][b].setNbToursAvantFamine(tabR[a][b].getCycleDeFamine());
}
tabR[a][b+1].recopier(tabR[a][b]);
tabR[a][b].reproduire();
}
}
else if (dir == 6)
{ if ((a<nbLignes-1) && (b<nbColonnes-1) && (tabR[a+1][b+1].getVivant() == false))
{ if (tabT[a+1][b+1].getVivant())
{ tabT[a+1][b+1].setVivant(false);
tabR[a][b].setNbToursAvantFamine(tabR[a][b].getCycleDeFamine());
}
tabR[a+1][b+1].recopier(tabR[a][b]);
tabR[a][b].reproduire();
}
}
else if (dir == 7)
{ if ((a<nbLignes-1) && (tabR[a+1][b].getVivant() == false))
{ if (tabT[a+1][b].getVivant())
{ tabT[a+1][b].setVivant(false);
tabR[a][b].setNbToursAvantFamine(tabR[a][b].getCycleDeFamine());
}
tabR[a+1][b].recopier(tabR[a][b]);
tabR[a][b].reproduire();
}
}
else if (dir == 8)
{ if ((a<nbLignes-1) && (b>0) && (tabR[a+1][b-1].getVivant() == false))
{ if (tabT[a+1][b-1].getVivant())
{ tabT[a+1][b-1].setVivant(false);
tabR[a][b].setNbToursAvantFamine(tabR[a][b].getCycleDeFamine());
}
tabR[a+1][b-1].recopier(tabR[a][b]);
tabR[a][b].reproduire();
}
}
}
}
public void calculPoint(int temps)
{ if (temps > 630)
{ //Décalage du tableau
for (int i=0; i<2; i++)
{ for (int j=0; j<629; j++)
{ courbe[i][j] = courbe[i][j+1];
}
}
courbe[0][629] = this.getNbThons();
courbe[1][629] = this.getNbRequins();
}
else
{ courbe[0][temps-1] = this.getNbThons();
courbe[1][temps-1] = this.getNbRequins();
}
}
//Accesseurs courbe
public int getCourbeThons(int temps)
{ return courbe[0][temps];
}
public int getCourbeRequins(int temps)
{ return courbe[1][temps];
}
}