avance
This commit is contained in:
parent
3db08eb285
commit
ef1da78c49
118
Suivre.c
118
Suivre.c
@ -7,8 +7,9 @@
|
||||
#define H 40
|
||||
#define L 60
|
||||
#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){
|
||||
couleur c;
|
||||
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);
|
||||
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){
|
||||
c=CouleurParNom("dark orange");
|
||||
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]){
|
||||
/*affichage du tableau pour rendu graphique*/
|
||||
int i,j,posx=0,posy=0;
|
||||
for(i=0;i<H;i++){
|
||||
for(j=0;j<L;j++){
|
||||
@ -39,26 +45,30 @@ void Affiche(int tab[H][L]){
|
||||
posy=0;
|
||||
}
|
||||
|
||||
int CliqueTouche(void){
|
||||
int direction;
|
||||
/*recuperation de la direction en fonction des touches*/
|
||||
int CliqueTouche(int tab[H][L],int direction){
|
||||
switch(Touche()){
|
||||
case XK_Up:
|
||||
if(direction!=0){
|
||||
printf("aaaaaaa");
|
||||
direction=2;
|
||||
return direction;
|
||||
}
|
||||
case XK_Down:
|
||||
if(direction!=2){
|
||||
printf("zzzzzzz");
|
||||
direction=0;
|
||||
return direction;
|
||||
}
|
||||
case XK_Right:
|
||||
if(direction!=1){
|
||||
printf("eeeeeeeee");
|
||||
direction=3;
|
||||
return direction;
|
||||
}
|
||||
case XK_Left:
|
||||
if(direction!=3){
|
||||
printf("rrrrrrrr");
|
||||
direction=1;
|
||||
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;
|
||||
char buf[100];
|
||||
c=CouleurParNom("white");
|
||||
@ -79,6 +140,7 @@ void DessinerTimer(int n)
|
||||
EcrireTexte(50,900,buf,2);
|
||||
}
|
||||
|
||||
/*initialisation de la grille et de la fenetre*/
|
||||
void init(int tab[H][L]){
|
||||
/*creation page*/
|
||||
InitialiserGraphique();
|
||||
@ -102,22 +164,16 @@ void init(int tab[H][L]){
|
||||
}
|
||||
|
||||
int main(void){
|
||||
/*partie graphique*/
|
||||
|
||||
int tab[H][L],direction=0;
|
||||
int n=0,sxmin=0,symin=1,sxmax=10,symax=1,fin=0;
|
||||
unsigned long suivant,suivant2;
|
||||
suivant2=Microsecondes()+DELTO;
|
||||
int tab[H][L];
|
||||
int n=0,fin=0;
|
||||
unsigned long suivant;
|
||||
suivant=Microsecondes()+DELTA;
|
||||
|
||||
init(tab);
|
||||
|
||||
while(1){
|
||||
Affiche(tab);
|
||||
/*touche*/
|
||||
if(ToucheEnAttente()==1){
|
||||
direction=CliqueTouche();
|
||||
}
|
||||
Serpent(tab);
|
||||
|
||||
/*timer*/
|
||||
if(Microsecondes()>suivant){
|
||||
@ -126,34 +182,6 @@ int main(void){
|
||||
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){
|
||||
return EXIT_SUCCESS;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user