avance
This commit is contained in:
parent
2cd58909df
commit
7c6fc9e1fa
35
Avance.c
35
Avance.c
@ -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++){
|
||||||
|
Loading…
Reference in New Issue
Block a user