105 lines
2.0 KiB
C
105 lines
2.0 KiB
C
#include<stdlib.h>
|
|
#include<stdio.h>
|
|
#include<graph.h>
|
|
#include<time.h>
|
|
|
|
#define HAUTEUR 40
|
|
#define LARGEUR 60
|
|
|
|
#define CYCLE 10000L
|
|
|
|
#define SEGMENT 10
|
|
|
|
enum Direction { UP, DOWN, LEFT=0, RIGHT=1 };
|
|
int dir=1;
|
|
|
|
void graphique(int g){
|
|
InitialiserGraphique();
|
|
CreerFenetre(1700,950,1700,950);
|
|
couleur c, b;
|
|
b=CouleurParComposante(0,0,0);
|
|
ChoisirCouleurDessin(b);
|
|
RemplirRectangle(0,0,1750,950);
|
|
c=CouleurParComposante(111,255,94);
|
|
ChoisirCouleurDessin(c);
|
|
RemplirRectangle(100,100,1500,750);
|
|
Touche();
|
|
FermerGraphique();
|
|
};
|
|
|
|
void serpent(int tab[][LARGEUR],int taille) {
|
|
int posx_s,posy_s,i;
|
|
for(i=0;i<taille;i++){
|
|
posx_s = tab[i][0] * SEGMENT;
|
|
posy_s = tab[i][1] * SEGMENT;
|
|
couleur s = CouleurParComposante(255,255,0);
|
|
ChoisirCouleurDessin(s);
|
|
RemplirRectangle(100,100,25,25);
|
|
}
|
|
}s[100];
|
|
|
|
void mouvement(int tab[][LARGEUR],int *taille, enum Direction direction){
|
|
for (int i = *taille - 1; i>0;i--){
|
|
tab[i][0] = tab[i - 1][0];
|
|
tab[i][1] = tab[i - 1][1]
|
|
}
|
|
|
|
if(ToucheEnAttente()&&Touche()==XK_Left){
|
|
dir=0;
|
|
}
|
|
else if(ToucheEnAttente()&&Touche()==XK_Right){
|
|
dir=1;
|
|
}
|
|
else if(ToucheEnAttente()&&Touche()==XK_Up){
|
|
dir=2;
|
|
}
|
|
else if(ToucheEnAttente()&&Touche()==XK_Down){
|
|
dir=3;
|
|
}
|
|
}
|
|
|
|
int main() {
|
|
int dir=1;
|
|
int tab[HAUTEUR][LARGEUR],g;
|
|
unsigned long suivant;
|
|
suivant=Microseconde()+CYCLE;
|
|
int taille =3;
|
|
for(int i = 0;i < taille; i++){
|
|
tab[i][0] = LARGEUR / 2;
|
|
tab[i][1] = HAUTEUR / 2+1;
|
|
}
|
|
for(i=0;i<HAUTEUR;i++){
|
|
for(j=0;j<LARGEUR;j++{
|
|
tab[i][j]=0
|
|
}
|
|
}
|
|
}
|
|
serpent();
|
|
while(1){
|
|
if (Microsecondes()>suivant){
|
|
g++;
|
|
graphique(g);
|
|
suivant=Microsecondes()+CYCLE;
|
|
}
|
|
while(1){
|
|
|
|
if (dir=0){
|
|
tab[0][0] -=1;
|
|
break;
|
|
}
|
|
else if(dir=1){
|
|
tab[0][0] +=1;
|
|
break;
|
|
}
|
|
else if(dir=2){
|
|
tab[0][1] -=1;
|
|
break;
|
|
}
|
|
else if(dir=3){
|
|
tab[0][1] +=1;
|
|
break;
|
|
|
|
|
|
return EXIT_SUCCESS;
|
|
}
|