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");
ChoisirCouleurDessin(c);
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;
suivant2=Microsecondes()+DELTA;
suivant=Microsecondes()+DELTA;
for(i=0;i<H;i++){
for(j=0;j<L;j++){
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){
if(Microsecondes()>suivant){
n++;
DessinerScene(n);
suivant=Microsecondes()+DELTA;
}
suivant2=Microsecondes();
if(Microsecondes()==suivant2+DELTA){
printf("salut");
tab[sx][sy]=0;
tab[sx+1][sy]=1;
if(pause==0){
if(Microsecondes()>suivant2){
/*tab[sxmax][symax]=0;*/
sxmax=sxmax+1;
tab[sxmax][symax]=1;
tab[sxmin][symin]=0;
sxmin=sxmin+1;
suivant2=Microsecondes()+DELTA;
}
}
for(i=0;i<H;i++){
for(j=0;j<L;j++){

BIN
exec

Binary file not shown.