This commit is contained in:
Raphael BEAU 2023-11-29 16:44:08 +01:00
parent 3db08eb285
commit ef1da78c49
3 changed files with 75 additions and 47 deletions

122
Suivre.c
View File

@ -7,8 +7,9 @@
#define H 40 #define H 40
#define L 60 #define L 60
#define DELTA 1000000L #define DELTA 1000000L
#define DELTO 1000L #define DELTO 1000000L
/*recuperation des couleurs en fonction des chiffres dans le tableau*/
void AfficheTab(int tab[H][L], int posx, int posy, int i, int j){ void AfficheTab(int tab[H][L], int posx, int posy, int i, int j){
couleur c; couleur c;
if(tab[i][j]==0){ if(tab[i][j]==0){
@ -16,7 +17,12 @@ void AfficheTab(int tab[H][L], int posx, int posy, int i, int j){
ChoisirCouleurDessin(c); ChoisirCouleurDessin(c);
RemplirRectangle(posx,posy,20,20); RemplirRectangle(posx,posy,20,20);
} }
/*
6>droite
7>gauche
8>haut
8>bas
*/
if(tab[i][j]==1||tab[i][j]==6||tab[i][j]==7||tab[i][j]==8||tab[i][j]==9){ if(tab[i][j]==1||tab[i][j]==6||tab[i][j]==7||tab[i][j]==8||tab[i][j]==9){
c=CouleurParNom("dark orange"); c=CouleurParNom("dark orange");
ChoisirCouleurDessin(c); ChoisirCouleurDessin(c);
@ -24,8 +30,8 @@ void AfficheTab(int tab[H][L], int posx, int posy, int i, int j){
} }
} }
/*affichage du tableau pour rendu graphique*/
void Affiche(int tab[H][L]){ void Affiche(int tab[H][L]){
/*affichage du tableau pour rendu graphique*/
int i,j,posx=0,posy=0; int i,j,posx=0,posy=0;
for(i=0;i<H;i++){ for(i=0;i<H;i++){
for(j=0;j<L;j++){ for(j=0;j<L;j++){
@ -39,26 +45,30 @@ void Affiche(int tab[H][L]){
posy=0; posy=0;
} }
int CliqueTouche(void){ /*recuperation de la direction en fonction des touches*/
int direction; int CliqueTouche(int tab[H][L],int direction){
switch(Touche()){ switch(Touche()){
case XK_Up: case XK_Up:
if(direction!=0){ if(direction!=0){
printf("aaaaaaa");
direction=2; direction=2;
return direction; return direction;
} }
case XK_Down: case XK_Down:
if(direction!=2){ if(direction!=2){
printf("zzzzzzz");
direction=0; direction=0;
return direction; return direction;
} }
case XK_Right: case XK_Right:
if(direction!=1){ if(direction!=1){
printf("eeeeeeeee");
direction=3; direction=3;
return direction; return direction;
} }
case XK_Left: case XK_Left:
if(direction!=3){ if(direction!=3){
printf("rrrrrrrr");
direction=1; direction=1;
return direction; return direction;
} }
@ -66,8 +76,59 @@ int CliqueTouche(void){
} }
void DessinerTimer(int n) int DepXTete(unsigned long suivant2,int sxmax,int symax,int direction,int tab[H][L]){
{ /*haut*/
if(direction==2){
sxmax=sxmax-1;
tab[sxmax][symax]=1;
return sxmax;
}
/*bas*/
if(direction==0){
sxmax=sxmax+1;
tab[sxmax][symax]=1;
return sxmax;
}
}
int DepYTete(unsigned long suivant2,int sxmax,int symax,int direction,int tab[H][L]){
/*droite*/
if(direction==3){
symax=symax+1;
tab[sxmax][symax]=1;
return symax;
}
/*gauche*/
if(direction==1){
symax=symax-1;
tab[sxmax][symax]=1;
return symax;
}
}
/*mvmt du serpent*/
void Serpent(int tab[H][L]){
int sxmax=10,sxmin=1,symin=1,symax=1,direction=0;
unsigned long suivant2=Microsecondes()+DELTO;
/*deplacement tete*/
if(Microsecondes()>=suivant2){
if(direction==0||direction==2){
sxmax=DepXTete(suivant2,sxmax,symax,direction,tab);
}
else if(direction==1||direction==3){
symax=DepYTete(suivant2,sxmax,symax,direction,tab);
}
suivant2=Microsecondes()+DELTO;
}
}
/*affichage du timer*/
void DessinerTimer(int n){
couleur c; couleur c;
char buf[100]; char buf[100];
c=CouleurParNom("white"); c=CouleurParNom("white");
@ -79,6 +140,7 @@ void DessinerTimer(int n)
EcrireTexte(50,900,buf,2); EcrireTexte(50,900,buf,2);
} }
/*initialisation de la grille et de la fenetre*/
void init(int tab[H][L]){ void init(int tab[H][L]){
/*creation page*/ /*creation page*/
InitialiserGraphique(); InitialiserGraphique();
@ -102,58 +164,24 @@ void init(int tab[H][L]){
} }
int main(void){ int main(void){
/*partie graphique*/ int tab[H][L];
int n=0,fin=0;
int tab[H][L],direction=0; unsigned long suivant;
int n=0,sxmin=0,symin=1,sxmax=10,symax=1,fin=0;
unsigned long suivant,suivant2;
suivant2=Microsecondes()+DELTO;
suivant=Microsecondes()+DELTA; suivant=Microsecondes()+DELTA;
init(tab); init(tab);
while(1){ while(1){
Affiche(tab); Affiche(tab);
/*touche*/ Serpent(tab);
if(ToucheEnAttente()==1){
direction=CliqueTouche();
}
/*timer*/ /*timer*/
if(Microsecondes()>suivant){ if(Microsecondes()>suivant){
n++; n++;
DessinerTimer(n); DessinerTimer(n);
suivant=Microsecondes()+DELTA; suivant=Microsecondes()+DELTA;
} }
/*deplacement tete*/
if(Microsecondes()>suivant2){
/*haut*/
if(direction==2){
sxmax=sxmax-1;
tab[sxmax][symax]=1;
}
/*droite*/
if(direction==3){
symax=symax+1;
tab[sxmax][symax]=1;
}
/*gauche*/
if(direction==1){
symax=symax-1;
tab[sxmax][symax]=1;
}
/*bas*/
if(direction==0){
sxmax=sxmax+1;
tab[sxmax][symax]=1;
}
suivant2=Microsecondes()+DELTO;
}
/*deplacement queue*/
if(fin==1){ if(fin==1){
return EXIT_SUCCESS; return EXIT_SUCCESS;
} }

BIN
exec

Binary file not shown.