direction
This commit is contained in:
parent
7c6fc9e1fa
commit
7d050ef7a1
30
Avance.c
30
Avance.c
@ -44,7 +44,7 @@ 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,sxmin=1,symin=1,sxmax=10,symax=1,pause=0;
|
int i,j,posx=0,posy=0,n=0,sxmin=0,symin=1,sxmax=10,symax=1;
|
||||||
unsigned long suivant,suivant2;
|
unsigned long suivant,suivant2;
|
||||||
suivant2=Microsecondes()+DELTA;
|
suivant2=Microsecondes()+DELTA;
|
||||||
suivant=Microsecondes()+DELTA;
|
suivant=Microsecondes()+DELTA;
|
||||||
@ -54,19 +54,11 @@ int main(void){
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/*tab[sxmin][symin]=1;*/
|
tab[sxmin][symin]=0;
|
||||||
tab[sxmax][symax]=1;
|
tab[sxmax][symax]=1;
|
||||||
for(i=0;i<10;i++){
|
for(i=0;i<10;i++){
|
||||||
tab[i][1]=1;
|
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){
|
||||||
@ -74,16 +66,14 @@ int main(void){
|
|||||||
DessinerScene(n);
|
DessinerScene(n);
|
||||||
suivant=Microsecondes()+DELTA;
|
suivant=Microsecondes()+DELTA;
|
||||||
}
|
}
|
||||||
if(pause==0){
|
if(Microsecondes()>suivant2){
|
||||||
if(Microsecondes()>suivant2){
|
/*tab[sxmax][symax]=0;*/
|
||||||
/*tab[sxmax][symax]=0;*/
|
sxmax=sxmax+1;
|
||||||
sxmax=sxmax+1;
|
tab[sxmax][symax]=1;
|
||||||
tab[sxmax][symax]=1;
|
tab[sxmin][symin]=0;
|
||||||
tab[sxmin][symin]=0;
|
sxmin=sxmin+1;
|
||||||
sxmin=sxmin+1;
|
suivant2=Microsecondes()+DELTA;
|
||||||
suivant2=Microsecondes()+DELTA;
|
}
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
for(i=0;i<H;i++){
|
for(i=0;i<H;i++){
|
||||||
|
153
Direction.c
Normal file
153
Direction.c
Normal file
@ -0,0 +1,153 @@
|
|||||||
|
#include<stdlib.h>
|
||||||
|
#include<stdio.h>
|
||||||
|
#include<graph.h>
|
||||||
|
#include<time.h>
|
||||||
|
|
||||||
|
#define H 40
|
||||||
|
#define L 60
|
||||||
|
#define DELTA 1000000L
|
||||||
|
|
||||||
|
void Affiche(int tab[H][L], int posx, int posy, int i, int j){
|
||||||
|
couleur c;
|
||||||
|
if(tab[i][j]==0){
|
||||||
|
c=CouleurParNom("green");
|
||||||
|
ChoisirCouleurDessin(c);
|
||||||
|
RemplirRectangle(posx,posy,20,20);
|
||||||
|
}
|
||||||
|
|
||||||
|
if(tab[i][j]==1){
|
||||||
|
c=CouleurParNom("yellow");
|
||||||
|
ChoisirCouleurDessin(c);
|
||||||
|
RemplirRectangle(posx,posy,20,20);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
void DessinerScene(int n)
|
||||||
|
{
|
||||||
|
couleur c;
|
||||||
|
char buf[100];
|
||||||
|
c=CouleurParNom("white");
|
||||||
|
ChoisirCouleurDessin(c);
|
||||||
|
RemplirRectangle(0,850,200,100);
|
||||||
|
c=CouleurParNom("black");
|
||||||
|
ChoisirCouleurDessin(c);
|
||||||
|
snprintf(buf,100,"time : %d",n);
|
||||||
|
EcrireTexte(50,900,buf,2);
|
||||||
|
}
|
||||||
|
|
||||||
|
int main(void){
|
||||||
|
/*partie graphique*/
|
||||||
|
InitialiserGraphique();
|
||||||
|
CreerFenetre(10,10,1700,1000);
|
||||||
|
couleur c;
|
||||||
|
c=CouleurParNom("green");
|
||||||
|
ChoisirCouleurDessin(c);
|
||||||
|
int tab[H][L], haut=0,gauche=0,droite=0,bas=0;
|
||||||
|
int i,j,posx=0,posy=0,n=0,sxmin=0,symin=1,sxmax=10,symax=1;
|
||||||
|
unsigned long suivant,suivant2;
|
||||||
|
suivant2=Microsecondes()+DELTA;
|
||||||
|
suivant=Microsecondes()+DELTA;
|
||||||
|
|
||||||
|
|
||||||
|
/*initialisation de la grille a 0(vert)*/
|
||||||
|
for(i=0;i<H;i++){
|
||||||
|
for(j=0;j<L;j++){
|
||||||
|
tab[i][j]=0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
/*initialisation du serpent*/
|
||||||
|
tab[sxmin][symin]=0;
|
||||||
|
tab[sxmax][symax]=1;
|
||||||
|
for(i=0;i<10;i++){
|
||||||
|
tab[i][1]=1;
|
||||||
|
}
|
||||||
|
|
||||||
|
while(1){
|
||||||
|
/*timer*/
|
||||||
|
if(Microsecondes()>suivant){
|
||||||
|
n++;
|
||||||
|
DessinerScene(n);
|
||||||
|
suivant=Microsecondes()+DELTA;
|
||||||
|
}
|
||||||
|
/*deplacements du serpent*/
|
||||||
|
if(bas==1){
|
||||||
|
if(Microsecondes()>suivant2){
|
||||||
|
sxmax=sxmax+1;
|
||||||
|
tab[sxmax][symax]=1;
|
||||||
|
tab[sxmin][symin]=0;
|
||||||
|
sxmin=sxmin+1;
|
||||||
|
suivant2=Microsecondes()+DELTA;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
else if(haut==1){
|
||||||
|
if(Microsecondes()>suivant2){
|
||||||
|
sxmax=sxmax-1;
|
||||||
|
tab[sxmax][symax]=1;
|
||||||
|
tab[sxmin][symin]=0;
|
||||||
|
sxmin=sxmin-1;
|
||||||
|
suivant2=Microsecondes()+DELTA;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else if(gauche==1){
|
||||||
|
if(Microsecondes()>suivant2){
|
||||||
|
symax=symax-1;
|
||||||
|
tab[sxmax][symax]=1;
|
||||||
|
tab[sxmin][symin]=0;
|
||||||
|
symin=symin-1;
|
||||||
|
suivant2=Microsecondes()+DELTA;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else if(droite==1){
|
||||||
|
if(Microsecondes()>suivant2){
|
||||||
|
symax=symax+1;
|
||||||
|
tab[sxmax][symax]=1;
|
||||||
|
tab[sxmin][symin]=0;
|
||||||
|
symin=symin+1;
|
||||||
|
suivant2=Microsecondes()+DELTA;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
if(ToucheEnAttente()&&Touche()==XK_Left){
|
||||||
|
haut=0;
|
||||||
|
bas=0;
|
||||||
|
droite=0;
|
||||||
|
gauche=1;
|
||||||
|
}
|
||||||
|
if(ToucheEnAttente()&&Touche()==XK_Right){
|
||||||
|
haut=0;
|
||||||
|
bas=0;
|
||||||
|
droite=1;
|
||||||
|
gauche=0;
|
||||||
|
}
|
||||||
|
if(ToucheEnAttente()&&Touche()==XK_Up){
|
||||||
|
haut=1;
|
||||||
|
bas=0;
|
||||||
|
droite=0;
|
||||||
|
gauche=0;
|
||||||
|
}
|
||||||
|
if(ToucheEnAttente()&&Touche()==XK_Down){
|
||||||
|
haut=0;
|
||||||
|
bas=1;
|
||||||
|
droite=0;
|
||||||
|
gauche=0;
|
||||||
|
}
|
||||||
|
|
||||||
|
/*affichage du tableau pour rendu graphique*/
|
||||||
|
for(i=0;i<H;i++){
|
||||||
|
for(j=0;j<L;j++){
|
||||||
|
Affiche(tab, posx, posy, i, j);
|
||||||
|
posx=posx+20;
|
||||||
|
}
|
||||||
|
posx=0;
|
||||||
|
posy=posy+20;
|
||||||
|
}
|
||||||
|
posx=0;
|
||||||
|
posy=0;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
}
|
153
Direction.c~
Normal file
153
Direction.c~
Normal file
@ -0,0 +1,153 @@
|
|||||||
|
#include<stdlib.h>
|
||||||
|
#include<stdio.h>
|
||||||
|
#include<graph.h>
|
||||||
|
#include<time.h>
|
||||||
|
|
||||||
|
#define H 40
|
||||||
|
#define L 60
|
||||||
|
#define DELTA 1000000L
|
||||||
|
|
||||||
|
void Affiche(int tab[H][L], int posx, int posy, int i, int j){
|
||||||
|
couleur c;
|
||||||
|
if(tab[i][j]==0){
|
||||||
|
c=CouleurParNom("green");
|
||||||
|
ChoisirCouleurDessin(c);
|
||||||
|
RemplirRectangle(posx,posy,20,20);
|
||||||
|
}
|
||||||
|
|
||||||
|
if(tab[i][j]==1){
|
||||||
|
c=CouleurParNom("yellow");
|
||||||
|
ChoisirCouleurDessin(c);
|
||||||
|
RemplirRectangle(posx,posy,20,20);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
void DessinerScene(int n)
|
||||||
|
{
|
||||||
|
couleur c;
|
||||||
|
char buf[100];
|
||||||
|
c=CouleurParNom("white");
|
||||||
|
ChoisirCouleurDessin(c);
|
||||||
|
RemplirRectangle(0,850,200,100);
|
||||||
|
c=CouleurParNom("black");
|
||||||
|
ChoisirCouleurDessin(c);
|
||||||
|
snprintf(buf,100,"time : %d",n);
|
||||||
|
EcrireTexte(50,900,buf,2);
|
||||||
|
}
|
||||||
|
|
||||||
|
int main(void){
|
||||||
|
/*partie graphique*/
|
||||||
|
InitialiserGraphique();
|
||||||
|
CreerFenetre(10,10,1700,1000);
|
||||||
|
couleur c;
|
||||||
|
c=CouleurParNom("green");
|
||||||
|
ChoisirCouleurDessin(c);
|
||||||
|
int tab[H][L], haut=0,gauche=0,droite=0,bas=0;
|
||||||
|
int i,j,posx=0,posy=0,n=0,sxmin=0,symin=1,sxmax=10,symax=1;
|
||||||
|
unsigned long suivant,suivant2;
|
||||||
|
suivant2=Microsecondes()+DELTA;
|
||||||
|
suivant=Microsecondes()+DELTA;
|
||||||
|
|
||||||
|
|
||||||
|
/*initialisation de la grille a 0(vert)*/
|
||||||
|
for(i=0;i<H;i++){
|
||||||
|
for(j=0;j<L;j++){
|
||||||
|
tab[i][j]=0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
/*initialisation du serpent*/
|
||||||
|
tab[sxmin][symin]=0;
|
||||||
|
tab[sxmax][symax]=1;
|
||||||
|
for(i=0;i<10;i++){
|
||||||
|
tab[i][1]=1;
|
||||||
|
}
|
||||||
|
|
||||||
|
while(1){
|
||||||
|
/*timer*/
|
||||||
|
if(Microsecondes()>suivant){
|
||||||
|
n++;
|
||||||
|
DessinerScene(n);
|
||||||
|
suivant=Microsecondes()+DELTA;
|
||||||
|
}
|
||||||
|
/*deplacements du serpent*/
|
||||||
|
if(bas==1){
|
||||||
|
if(Microsecondes()>suivant2){
|
||||||
|
sxmax=sxmax+1;
|
||||||
|
tab[sxmax][symax]=1;
|
||||||
|
tab[sxmin][symin]=0;
|
||||||
|
sxmin=sxmin+1;
|
||||||
|
suivant2=Microsecondes()+DELTA;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if(haut==1){
|
||||||
|
if(Microsecondes()>suivant2){
|
||||||
|
sxmax=sxmax-1;
|
||||||
|
tab[sxmax][symax]=1;
|
||||||
|
tab[sxmin][symin]=0;
|
||||||
|
sxmin=sxmin-1;
|
||||||
|
suivant2=Microsecondes()+DELTA;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if(gauche==1){
|
||||||
|
if(Microsecondes()>suivant2){
|
||||||
|
symax=symax-1;
|
||||||
|
tab[sxmax][symax]=1;
|
||||||
|
tab[sxmin][symin]=0;
|
||||||
|
symin=symin-1;
|
||||||
|
suivant2=Microsecondes()+DELTA;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if(droite==1){
|
||||||
|
if(Microsecondes()>suivant2){
|
||||||
|
symax=symax+1;
|
||||||
|
tab[sxmax][symax]=1;
|
||||||
|
tab[sxmin][symin]=0;
|
||||||
|
symin=symin+1;
|
||||||
|
suivant2=Microsecondes()+DELTA;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
if(ToucheEnAttente()&&Touche()==XK_Left){
|
||||||
|
haut=0;
|
||||||
|
bas=0;
|
||||||
|
droite=0;
|
||||||
|
gauche=1;
|
||||||
|
}
|
||||||
|
if(ToucheEnAttente()&&Touche()==XK_Right){
|
||||||
|
haut=0;
|
||||||
|
bas=0;
|
||||||
|
droite=1;
|
||||||
|
gauche=0;
|
||||||
|
}
|
||||||
|
if(ToucheEnAttente()&&Touche()==XK_Up){
|
||||||
|
haut=1;
|
||||||
|
bas=0;
|
||||||
|
droite=0;
|
||||||
|
gauche=0;
|
||||||
|
}
|
||||||
|
if(ToucheEnAttente()&&Touche()==XK_Down){
|
||||||
|
haut=0;
|
||||||
|
bas=1;
|
||||||
|
droite=0;
|
||||||
|
gauche=0;
|
||||||
|
}
|
||||||
|
|
||||||
|
/*affichage du tableau pour rendu graphique*/
|
||||||
|
for(i=0;i<H;i++){
|
||||||
|
for(j=0;j<L;j++){
|
||||||
|
Affiche(tab, posx, posy, i, j);
|
||||||
|
posx=posx+20;
|
||||||
|
}
|
||||||
|
posx=0;
|
||||||
|
posy=posy+20;
|
||||||
|
}
|
||||||
|
posx=0;
|
||||||
|
posy=0;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
}
|
93
archive/Avance.c
Normal file
93
archive/Avance.c
Normal file
@ -0,0 +1,93 @@
|
|||||||
|
#include<stdlib.h>
|
||||||
|
#include<stdio.h>
|
||||||
|
#include<graph.h>
|
||||||
|
#include<time.h>
|
||||||
|
|
||||||
|
#define H 40
|
||||||
|
#define L 60
|
||||||
|
#define DELTA 1000000L
|
||||||
|
|
||||||
|
void Affiche(int tab[H][L], int posx, int posy, int i, int j){
|
||||||
|
couleur c;
|
||||||
|
if(tab[i][j]==0){
|
||||||
|
c=CouleurParNom("green");
|
||||||
|
ChoisirCouleurDessin(c);
|
||||||
|
RemplirRectangle(posx,posy,20,20);
|
||||||
|
}
|
||||||
|
|
||||||
|
if(tab[i][j]==1){
|
||||||
|
c=CouleurParNom("yellow");
|
||||||
|
ChoisirCouleurDessin(c);
|
||||||
|
RemplirRectangle(posx,posy,20,20);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
void DessinerScene(int n)
|
||||||
|
{
|
||||||
|
couleur c;
|
||||||
|
char buf[100];
|
||||||
|
c=CouleurParNom("white");
|
||||||
|
ChoisirCouleurDessin(c);
|
||||||
|
RemplirRectangle(0,850,200,100);
|
||||||
|
c=CouleurParNom("black");
|
||||||
|
ChoisirCouleurDessin(c);
|
||||||
|
snprintf(buf,100,"time : %d",n);
|
||||||
|
EcrireTexte(50,900,buf,2);
|
||||||
|
}
|
||||||
|
|
||||||
|
int main(void){
|
||||||
|
/*partie graphique*/
|
||||||
|
InitialiserGraphique();
|
||||||
|
CreerFenetre(10,10,1700,1000);
|
||||||
|
couleur c;
|
||||||
|
c=CouleurParNom("green");
|
||||||
|
ChoisirCouleurDessin(c);
|
||||||
|
int tab[H][L];
|
||||||
|
int i,j,posx=0,posy=0,n=0,sxmin=0,symin=1,sxmax=10,symax=1;
|
||||||
|
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[sxmin][symin]=0;
|
||||||
|
tab[sxmax][symax]=1;
|
||||||
|
for(i=0;i<10;i++){
|
||||||
|
tab[i][1]=1;
|
||||||
|
}
|
||||||
|
|
||||||
|
while(1){
|
||||||
|
if(Microsecondes()>suivant){
|
||||||
|
n++;
|
||||||
|
DessinerScene(n);
|
||||||
|
suivant=Microsecondes()+DELTA;
|
||||||
|
}
|
||||||
|
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++){
|
||||||
|
Affiche(tab, posx, posy, i, j);
|
||||||
|
posx=posx+20;
|
||||||
|
}
|
||||||
|
posx=0;
|
||||||
|
posy=posy+20;
|
||||||
|
}
|
||||||
|
posx=0;
|
||||||
|
posy=0;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user