Interactif.c
11.3 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
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
#include <stdlib.h>
#include <string.h>
#include "../Graphique/libgraph.h"
#include "../ListeC/Liste.h"
#include "Interactif.h"
#include "../Main/init.h"
#define TailleX 500
#define TailleY 500
#define Sol 475
#define ErreurHitbox 2
#define TailleX9_10 (9 * TailleX / 10)
#define TailleX1_10 (TailleX / 10)
#define ValeurDeplacementTire 5
#define ValeurDeplacementJoueur 3
#define ValeurDeplacementBombe 2
int CheckCollisionEntiteEntite (struct entite entite1,
int L1,
int H1,
struct entite entite2,
int L2,
int H2)
{
//CheckX
int gauche1 = entite1.posx - L1/2 + ErreurHitbox;
int droite1 = entite1.posx + L1/2 - ErreurHitbox;
int gauche2 = entite2.posx - L2/2 + ErreurHitbox;
int droite2 = entite2.posx + L2/2 - ErreurHitbox;
//Tout les cas possibles de collision
int CheckX = (gauche1 >= gauche2 && gauche1 <= droite2) ||
(droite1 >= gauche2 && droite1 <= droite2) ||
(gauche1 >= gauche2 && droite1 <= droite2) ||
(gauche2 >= gauche1 && droite2 <= droite1);
//CheckY
int haut1 = entite1.posy - H1/2 + ErreurHitbox;
int bas1 = entite1.posy + H1/2 - ErreurHitbox;
int haut2 = entite2.posy - H2/2 + ErreurHitbox;
int bas2 = entite2.posy + H2/2 - ErreurHitbox;
int CheckY = (haut1 <= bas2 && haut1 >= haut2) ||
(bas1 <= bas2 && bas1 >= haut2) ||
(haut1 <= haut2 && bas1 >= bas2) ||
(haut2 <= haut1 && bas2 >= bas1);
return CheckX && CheckY;
}
//La fonction renvoie l'entite de la Liste1 si il y a collision
struct entite* CheckCollisionListeEntite (struct liste_entite* Liste1,
int L1,
int H1,
struct entite entite2,
int L2,
int H2)
{
struct liste_entite *pListe1 = Liste1;
while (pListe1 != NULL)
{
if(CheckCollisionEntiteEntite (pListe1->entite,
L1,
H1,
entite2,
L2,
H2) == 1)
{
return &pListe1->entite;
}
pListe1 = pListe1->suivant;
}
return NULL;
}
//La fonction renvoie une liste d'entite avec les deux entites à supprimer si il y a collision
struct liste_entite* CheckCollisionListeListe (struct liste_entite* Liste1,
int L1,
int H1,
struct liste_entite* Liste2,
int L2,
int H2)
{
struct liste_entite *pListe2 = Liste2;
while (pListe2 != NULL)
{
struct entite* collision = CheckCollisionListeEntite (Liste1,
L1,
H1,
pListe2->entite,
L2,
H2);
if (collision == NULL)
{
pListe2 = pListe2->suivant;
}
else
{
// Création des structures pour les deux entités
struct liste_entite* Entite1 = malloc(sizeof(struct liste_entite));
struct liste_entite* Entite2 = malloc(sizeof(struct liste_entite));
// Remplissage des structure avec les entités correspondantes
Entite1->entite = *collision;
Entite2->entite = pListe2->entite;
// Relier les structures entre elles
Entite1->suivant = Entite2;
Entite2->suivant = NULL;
return Entite1;
}
}
return NULL;
}
//Tire un missile, il ne peux y en avoir que un à la fois
void Tirer (struct entite joueur,
struct liste_entite** pl)
{
if (*pl == NULL)
{
ajout_tete(pl,
creer_entite(joueur.posx,
joueur.posy,
-1));
}
}
void DeplacementTire(struct liste_entite** Liste)
{
struct entite* Entite = &(*Liste)->entite;
if (Entite != NULL)
{
if (Entite->posy <= 0)
{
afficherLutin(bouillie,
Entite->posx - hitboxbouillieL/2 + ErreurHitbox,
Entite->posy);
SupprimerEntite(Liste, Entite);
}
else
{
Entite->posy -= ValeurDeplacementTire;
//Je divise ErreurHitbox par 2 car l'erreur du missile est plus petite que pour les autres images
afficherLutin(missile,
Entite->posx - hitboxmissileL/2 + ErreurHitbox/2,
Entite->posy - hitboxmissileH/2 + ErreurHitbox/2);
}
}
}
//La fonction fait une action soit au joueur soit aux tires selon la touche préssée
void action(struct entite* joueur,
char c,
struct liste_entite** tires)
{
switch (c)
{
case 'd':
if (joueur->posx <= TailleX9_10)
{
joueur->posx += ValeurDeplacementJoueur;
}
break;
case 'q':
if (joueur->posx >= TailleX1_10)
{
joueur->posx -= ValeurDeplacementJoueur;
}
break;
case 't':
Tirer(*joueur,
tires);
break;
default:
break;
}
}
//La fonction crée une liste de tout les enemies pouvant drop des bombes
//Ceux les plus bas de leur colonne
//Puis ajoute à la liste bombe, une bombe provenant d'un des enemies pouvant drop des bombes
//Le choix de quel enemie drop la bombe est aléatoire
void MakeBombeDrop (struct liste_entite* enemies,
struct liste_entite** bombes)
{
struct liste_entite* pListe = enemies;
struct liste_entite* Dropable = NULL;
int taille = 0;
while (pListe != NULL)
{
if (pListe->entite.dropbombe == 1)
{
ajout_tete(&Dropable,pListe->entite);
taille += 1;
}
pListe = pListe->suivant;
}
if(Dropable == NULL)
{
return;
}
//On choisit une valeur aléatoire qui représente l'enemie qui va drop la bombe
//Il ya un warning comme quoi rand() à une limite
//Mais on ne la dépassera jamais, taille ne pourra
//jamais excédé une vingtaine d'enemies par ligne
int randomIndex = rand() % taille-1;
struct liste_entite* pDropable = Dropable;
for (int i = 0; i <= randomIndex; i++)
{
pDropable = pDropable->suivant;
}
ajout_tete(bombes,
creer_entite(pDropable->entite.posx,
pDropable->entite.posy,
-1));
}
void DeplacementBombe(struct liste_entite** Liste)
{
struct liste_entite* pListe = *Liste;
while (pListe != NULL)
{
if (pListe->entite.posy + hitboxbombeH/2 - ErreurHitbox >= Sol)
{
struct entite* a_supprimer = &pListe->entite;
pListe = pListe->suivant;
SupprimerEntite(Liste,a_supprimer);
}
else
{
pListe->entite.posy += ValeurDeplacementBombe;
afficherLutin(bombe,
pListe->entite.posx - hitboxbombeL/2 + ErreurHitbox,
pListe->entite.posy - hitboxbombeH/2 + ErreurHitbox);
pListe = pListe->suivant;
}
}
}
//Si un enemie est éliminé et qu'il etait le plus bas de sa colonne (il pouvait drop des bombes)
//Alors si il y en a un l'enemie au dessus de lui (de la meme colonne) peut drop des bombes
void NouveauDroppeurBombe (struct liste_entite** liste,
struct entite* entite)
{
int posx = entite->posx;
int posy = entite->posy;
struct liste_entite* pListe = *liste;
struct entite* entite_basse = NULL;
// On parcourt la liste et on cherche l'entité la plus basse ayant la même position x
while (pListe != NULL)
{
if (pListe->entite.posy != posy)
{
if (pListe->entite.posx == posx &&
entite_basse == NULL)
{
entite_basse = &pListe->entite;
}
else if (pListe->entite.posx == posx &&
pListe->entite.posy > entite_basse->posy)
{
entite_basse = &pListe->entite;
}
}
pListe = pListe->suivant;
}
// Si aucune entité n'est située plus bas que l'entité en question, on ne peut pas dropper la bombe
if (entite_basse == NULL)
{
return;
}
entite_basse->dropbombe = 1;
}
//Fonction principale qui supprime les entités rentrées en collision de leur liste
int SupprimerEntitesEnCollision (struct liste_entite** Liste1,
int L1,
int H1,
struct liste_entite** Liste2,
int L2,
int H2)
{
struct liste_entite* collision = CheckCollisionListeListe(*Liste1,
L1,
H1,
*Liste2,
L2,
H2);
if (collision != NULL)
{
// Récupération des entités impliquées
struct entite* Entite1 = &collision->entite;
struct entite* Entite2 = &collision->suivant->entite;
if (Entite1->dropbombe == 1)
{
NouveauDroppeurBombe(Liste1,Entite1);
}
if (Entite2->dropbombe == 1)
{
NouveauDroppeurBombe(Liste2,Entite2);
}
// Suppression de l'entité 1 de la liste 1
SupprimerEntite(Liste1, Entite1);
// Suppression de l'entité 2 de la liste 2
SupprimerEntite(Liste2, Entite2);
afficherLutin(bouillie,
Entite2->posx - hitboxbouillieL/2 + ErreurHitbox,
Entite2->posy - hitboxbouillieH/2 + ErreurHitbox);
return 1;
}
return 0;
}