590ac30b
Martin CHAUVELIERE
Debut Collision
|
1
2
3
4
5
|
#include <stdio.h>
#include <stdlib.h>
#include "../Graphique/libgraph.h"
#include "../ListeC/Liste.h"
#include "Interactif.h"
|
66b129e5
Martin CHAUVELIERE
Collisions Sbires...
|
6
|
#include "../Main/init.h"
|
590ac30b
Martin CHAUVELIERE
Debut Collision
|
7
8
9
|
#define TailleX 500
#define TailleY 500
|
66b129e5
Martin CHAUVELIERE
Collisions Sbires...
|
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
|
#define ErreurHitbox 2
int CheckCollisionEntiteEntite(struct entite enti1,int L1,int H1,struct entite enti2 ,int L2, int H2)
{
//CheckX
int gauche1 = enti1.posx+ErreurHitbox;
int droite1 = enti1.posx+L1-ErreurHitbox;
int gauche2 = enti2.posx+ErreurHitbox;
int droite2 = enti2.posx+L2-ErreurHitbox;
int CheckX=0;
if(gauche1 >= gauche2 && gauche1 <= droite2)
{
CheckX=1;
}
else if(droite1 >= gauche2 && droite1 <= droite2)
{
CheckX=1;
}
//CheckY
int haut1 = enti1.posy+ErreurHitbox;
int bas1 = enti1.posy+H1-ErreurHitbox;
int haut2 = enti2.posy+ErreurHitbox;
int bas2 = enti2.posy+H2-ErreurHitbox;
int CheckY=0;
if(haut1 <= bas2 && haut1 >= haut2)
{
CheckY=1;
}
else if(bas1 <= bas2 && bas1 >= haut2)
{
CheckY=1;
}
if(CheckX+CheckY==2){return 1;}
else return 0;
}
int CheckCollisionListeEntite(struct liste_entite *Liste1,int L1,int H1,struct entite enti2, int L2, int H2)
{
struct liste_entite *pL1=Liste1;
while (pL1 != NULL)
{
if(CheckCollisionEntiteEntite(pL1->enti,L1,H1,enti2,L2,H2) == 1)
{
return 1;
}
pL1=pL1->suivant;
}
return 0;
}
struct liste_entite* CheckCollisionListeListe(struct liste_entite *Liste1,int L1,int H1,struct liste_entite *Liste2,int L2, int H2)
{
struct liste_entite *pL2=Liste2;
while (pL2 != NULL)
{
if(CheckCollisionListeEntite(Liste1,L1,H1,pL2->enti,L2,H2) == 1)
{
return pL2;
}
else
pL2=pL2->suivant;
}
return NULL;
}
|
590ac30b
Martin CHAUVELIERE
Debut Collision
|
79
80
81
82
83
84
85
86
87
88
89
|
void Tirer(struct entite joueur, struct liste_entite **pl)
{
struct liste_entite *ml=*pl;
if (ml==NULL)
{
ajout_tete(pl,creer_entite(joueur.posx+18,joueur.posy-5,0));
}
}
|
66b129e5
Martin CHAUVELIERE
Collisions Sbires...
|
90
|
void DeplacementTire(int tire,struct liste_entite **l)
|
590ac30b
Martin CHAUVELIERE
Debut Collision
|
91
92
93
94
95
96
97
|
{
struct liste_entite *ml = *l;
while (ml != NULL)
{
if (ml->enti.posy <= 0)
{
*l = NULL;
|
66b129e5
Martin CHAUVELIERE
Collisions Sbires...
|
98
|
afficherLutin(bouillie, ml->enti.posx-hitboxbouillieL/2, ml->enti.posy);
|
590ac30b
Martin CHAUVELIERE
Debut Collision
|
99
100
101
102
103
104
105
106
107
108
109
|
break;
}
else
{
ml->enti.posy -= 5;
afficherLutin(tire, ml->enti.posx, ml->enti.posy);
ml = ml->suivant;
}
}
}
|
66b129e5
Martin CHAUVELIERE
Collisions Sbires...
|
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
|
void SupprIfTouch(struct liste_entite **Liste1,int L1,int H1,struct liste_entite **Liste2,int L2, int H2)
{
struct liste_entite *suppr = CheckCollisionListeListe(*Liste1,L1,H1,*Liste2,L2,H2);
if (suppr != NULL)
{
int x = suppr->enti.posx-ErreurHitbox;
int y = suppr->enti.posy;
Supprimerentite(Liste2,suppr);
majSurface();
afficherLutin(bouillie,x,y);
*Liste1=NULL;
}
}
|
590ac30b
Martin CHAUVELIERE
Debut Collision
|
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
|
char touche()
{
char touche;
evenement even;
lireEvenement (&even,&touche,NULL);
return touche;
}
void action(struct entite *joueur,char c,struct liste_entite **tires)
{
if(c=='d')
{
if (joueur->posx<=9*TailleX/10) {joueur->posx+=3;}
}
if(c=='q')
{
if (joueur->posx>=TailleX/10) {joueur->posx-=3;}
}
if(c=='t'){Tirer(*joueur,tires);}
}
|