This commit is contained in:
Raphael BEAU 2023-11-20 16:09:51 +01:00
parent 2cd58909df
commit 7c6fc9e1fa
2 changed files with 27 additions and 8 deletions

View File

@ -44,28 +44,47 @@ int main(void){
c=CouleurParNom("green"); c=CouleurParNom("green");
ChoisirCouleurDessin(c); ChoisirCouleurDessin(c);
int tab[H][L]; int tab[H][L];
int i,j,posx=0,posy=0,n=0,sx=1,sy=1; int i,j,posx=0,posy=0,n=0,sxmin=1,symin=1,sxmax=10,symax=1,pause=0;
unsigned long suivant,suivant2; unsigned long suivant,suivant2;
suivant2=Microsecondes()+DELTA;
suivant=Microsecondes()+DELTA; suivant=Microsecondes()+DELTA;
for(i=0;i<H;i++){ for(i=0;i<H;i++){
for(j=0;j<L;j++){ for(j=0;j<L;j++){
tab[i][j]=0; tab[i][j]=0;
} }
} }
tab[sx][sy]=1;
/*tab[sxmin][symin]=1;*/
tab[sxmax][symax]=1;
for(i=0;i<10;i++){
tab[i][1]=1;
}
if(ToucheEnAttente()&&Touche()==XK_t){
if(pause==0){
pause=1;
}
if(pause==1){
pause=0;
}
}
while(1){ while(1){
if(Microsecondes()>suivant){ if(Microsecondes()>suivant){
n++; n++;
DessinerScene(n); DessinerScene(n);
suivant=Microsecondes()+DELTA; suivant=Microsecondes()+DELTA;
} }
if(pause==0){
suivant2=Microsecondes(); if(Microsecondes()>suivant2){
if(Microsecondes()==suivant2+DELTA){ /*tab[sxmax][symax]=0;*/
printf("salut"); sxmax=sxmax+1;
tab[sx][sy]=0; tab[sxmax][symax]=1;
tab[sx+1][sy]=1; tab[sxmin][symin]=0;
sxmin=sxmin+1;
suivant2=Microsecondes()+DELTA;
} }
}
for(i=0;i<H;i++){ for(i=0;i<H;i++){
for(j=0;j<L;j++){ for(j=0;j<L;j++){

BIN
exec

Binary file not shown.