Makefile Opérationnel + dérangement des fichiers

This commit is contained in:
2023-12-21 21:45:49 +01:00
parent 8cc9818ced
commit 284f9bea71
15 changed files with 32 additions and 30 deletions

View File

@@ -1,30 +0,0 @@
#include <graph.h>
#include <stdlib.h>
#include "../fichier.h/Oeuf.h"
#include "../fichier.h/time.h"
void InitialiserOeufs(int oeufx[], int oeufy[], int segment) {
int p;
int oeuf;
for (p = 0; p < 5; p++) {
oeufx[p] = ((rand() % (55) + 1) * 20);
oeufy[p] = ((rand() % (35) + 1) * 20);
ChargerImage("../img/oeuf.png", oeufx[p], oeufy[p],0,0, 20,20);
}
}
void Oeuf(int pos_x[], int pos_y[], int oeufx[], int oeufy[], int *segment){
int p;
int oeuf;
for (p = 0; p < 5; p++) {
ChargerImage("../img/oeuf.png", oeufx[p], oeufy[p],0,0, 20,20);
}
for(p=0; p<5; p++){
if(oeufx[p]==pos_x[0] && oeufy[p]==pos_y[0]){
(*segment) +=2;
oeufx[p] = ((rand() % (55)+1)*20);
oeufy[p] = ((rand() % (35)+1)*20);
Score(*segment);
}
}
}

View File

@@ -1,234 +0,0 @@
#include <stdlib.h>
#include <stdio.h>
#include <graph.h>
#include <time.h>
#define CYCLE 100000L
void DessinerScene(int murx[], int mury[], int minute, int seconde, char timer []){
int mur;
int i;
snprintf(timer,6,"%02d:%02d", minute ,seconde);
ChoisirCouleurDessin(CouleurParComposante(218,209,77));
RemplirRectangle(20,20,1160,700);
ChoisirCouleurDessin(CouleurParComposante(255,255,255));
srand(time(NULL));
for(i=0; i<30; i++){
murx[i] = ((rand() % (55)+1)*20);
mury[i] = ((rand() % (35)+1)*20);
ChargerImage("../img/cactus.png", murx[i], mury[i],0,0, 20,20);
}
}
void Score(int segment){
int nombre;
char score[4];
nombre= (segment-10)*25;
snprintf(score,4,"%04d0", nombre);
ChoisirCouleurDessin(CouleurParNom("black"));
RemplirRectangle(1100,700,1200,800);
ChoisirCouleurDessin(CouleurParNom("white"));
EcrireTexte(1000,760,"Score: ",2);
EcrireTexte(1100,760,score,2);
}
void Update_Timer(int minute, int seconde, char timer[]){
snprintf(timer,6,"%02d:%02d", minute, seconde);
ChoisirCouleurDessin(CouleurParComposante(0,0,0));
RemplirRectangle(10,700,12000,800);
ChoisirCouleurDessin(CouleurParComposante(255,255,255));
EcrireTexte(50,760,"time: ",2);
EcrireTexte(120,760,timer,2);
}
void Update_Serpent(int pos_x[], int pos_y[], int segment, int old_x[], int old_y[], int* direction){
int i = 0;
for (i=1 ; i<segment ; i++){
pos_x[i]=old_x[i-1];
pos_y[i]=old_y[i-1];
}
if (*direction == 1){
pos_y[0]=old_y[0]-20;
}
if (*direction == 2) {
pos_y[0]=old_y[0]+20;
}
if (*direction == 3) {
pos_x[0]=old_x[0]-20;
}
if (*direction == 4) {
pos_x[0]=old_x[0]+20;
}
for (i=0 ; i<segment ; i++){
ChargerImage("../img/serpent2.png", pos_x[i], pos_y[i],0,0, 20,20);
}
for (i=0 ; i<segment ; i++){
ChoisirCouleurDessin(CouleurParComposante(218,209,77));
RemplirRectangle(pos_x[segment-1], pos_y[segment-1], 20,20);
old_x[i]=pos_x[i];
old_y[i]=pos_y[i];
}
}
void Collision_Serpent(int pos_x[], int pos_y[], int segment, int murx[], int mury[], int *go_on){
int i;
/*Serpent contre coté*/
if (pos_x[0] >1160 || pos_x[0]<=0){
*go_on=0;
}
/*Serpent contre coté*/
if (pos_y[0]<20 || pos_y[0] >=700){
*go_on=0;
}
/*Serpent contre Serpent*/
for (i = 1; i < segment; i++) {
if (pos_x[0] == pos_x[i] && pos_y[0] == pos_y[i]){
*go_on = 0;
}
}
/*Serpent contre mur*/
for(i=0; i<30;i++){
if(pos_x[0] == murx[i] && pos_y[0] == mury[i]){
*go_on=0;
}
}
}
void Timer(int *minute, int *seconde, unsigned long int *suivant, int *seconde_actuel, int *old_seconde, char timer[]){
if(Microsecondes()> *suivant){
*suivant = Microsecondes()+CYCLE;
*seconde_actuel = (*suivant/1000000)%10;
if(seconde_actuel !=old_seconde){
*old_seconde = *seconde_actuel;
if(*seconde == 59){
*minute=*minute+1;
*seconde=0;
Update_Timer(*minute, *seconde, timer);
}else{
*seconde = *seconde+1;
Update_Timer(*minute, *seconde, timer);
}
}
}
}
void Controle(int *direction, int last_direction, int *go_on) {
int t;
while(ToucheEnAttente()) {
t = Touche();
switch(t) {
case XK_Left:
if (last_direction != 4) {
*direction = 3;
}
return;
case XK_Right:
if (last_direction != 3) {
*direction = 4;
}
return;
case XK_Up:
if (last_direction != 2) {
*direction = 1;
}
return;
case XK_Down:
if (last_direction != 1) {
*direction = 2;
}
return;
case XK_Escape:
*direction = 0;
*go_on = 0;
return;
case XK_p:
*direction = 0;
}
}
}
void Serpent(int pos_x[], int pos_y[], int old_x[], int old_y[], int *segment, int murx[], int mury[], int *go_on, int *direction) {
int serpent;
int i = 0;
pos_x[0] = 600;
pos_y[0] = 400;
for (i = 0; i < *segment; i++){
pos_x[i]= pos_x[0];
pos_y[i]= pos_y[0];
old_x[i]=pos_x[i];
old_y[i]=pos_y[i];
}
}
void InitialiserOeufs(int oeufx[], int oeufy[], int segment) {
int p;
int oeuf;
for (p = 0; p < 5; p++) {
oeufx[p] = ((rand() % (55) + 1) * 20);
oeuf[p] = ((rand() % (35) + 1) * 20);
ChargerImage("../img/oeuf.png", oeufx[p], oeufy[p],0,0, 20,20);
}
}
void Oeuf(int pos_x[], int pos_y[], int oeufx[], int oeufy[], int *segment){
int p;
int oeuf;
for (p = 0; p < 5; p++) {
ChargerImage("../img/oeuf.png", oeufx[p], oeufy[p],0,0, 20,20);
}
for(p=0; p<5; p++){
if(oeufx[p]==pos_x[0] && oeufy[p]==pos_y[0]){
(*segment) +=2;
oeufx[p] = ((rand() % (55)+1)*20);
oeufy[p] = ((rand() % (35)+1)*20);
}
}
}
/*void Menu_debut(){
affiche = ChargerSprite("Img/image.png");
AfficherSprite(affiche,0,0);
}
Menu_debut();*/
int main(void){
int segment = 10;
int go_on = 1;
int direction = 4;
int minute = 0;
int seconde = 0;
int seconde_actuel = 0;
int old_seconde = 0;
unsigned long int suivant;
int pos_x[2400];
int pos_y[2400];
int old_x[2400];
int old_y[2400];
int oeufx[5];
int oeufy[5];
int murx[30];
int mury[30];
char timer[6];
int *pointeur_segment = &segment;
int *pointeur_go_on = &go_on;
int *pointeur_direction = &direction;
int *pointeur_minute = &minute;
int *pointeur_seconde = &seconde;
unsigned long int *pointeur_suivant = &suivant;
int *pointeur_seconde_actuel = &seconde_actuel;
int *pointeur_old_seconde = &old_seconde;
InitialiserGraphique();
CreerFenetre(350,100,1200,900);
EffacerEcran(CouleurParComposante(0,0,0));
suivant = Microsecondes()+CYCLE;
old_seconde=(suivant/1000000)%10;
DessinerScene(murx, mury, minute, seconde ,timer);
InitialiserOeufs(oeufx, oeufy, segment);
Serpent(pos_x, pos_y, old_x, old_y, pointeur_segment, murx, mury, pointeur_go_on, pointeur_direction);
while(go_on){
Timer( pointeur_minute, pointeur_seconde, pointeur_suivant, pointeur_seconde_actuel, pointeur_old_seconde, timer);
Score(segment);
Controle(pointeur_direction, 0, pointeur_go_on);
Update_Serpent(pos_x, pos_y, segment, old_x, old_y, pointeur_direction);
Collision_Serpent(pos_x, pos_y, segment, murx, mury, pointeur_go_on);
usleep(100000);
Oeuf(pos_x, pos_y, oeufx, oeufy, pointeur_segment);
}
FermerGraphique();
return EXIT_SUCCESS;
}

View File

@@ -1,73 +0,0 @@
#include <stdlib.h>
#include <stdio.h>
#include <graph.h>
#include "../fichier.h/serpent.h"
#include "../fichier.h/Oeuf.h"
#include "../fichier.h/time.h"
#include "../fichier.h/main.h"
#include "../fichier.h/menu.h"
#define CYCLE 100000L
int lancer_jeu(){
int go_on=1;
int pause = 1;
int segment = 10;
int direction = 4;
int minute = 0;
int seconde = 0;
int seconde_actuel = 0;
int old_seconde = 0;
unsigned long int suivant;
int pos_x[2400];
int pos_y[2400];
int old_x[2400];
int old_y[2400];
int oeufx[5];
int oeufy[5];
int murx[30];
int mury[30];
char timer[6];
int *pointeur_segment = &segment;
int *pointeur_direction = &direction;
int *pointeur_minute = &minute;
int *pointeur_seconde = &seconde;
unsigned long int *pointeur_suivant = &suivant;
int *pointeur_seconde_actuel = &seconde_actuel;
int *pointeur_old_seconde = &old_seconde;
int *pointeur_pause = &pause;
suivant = Microsecondes()+CYCLE;
old_seconde=(suivant/1000000)%10;
DessinerScene(murx, mury, minute, seconde ,timer);
InitialiserOeufs(oeufx, oeufy, segment);
Serpent(pos_x, pos_y, old_x, old_y, pointeur_segment, murx, mury, &go_on, pointeur_direction);
bordure(segment);
Update_Serpent(pos_x, pos_y, segment, old_x, old_y, pointeur_direction);
while(go_on==1){
Controle(pointeur_direction, 0, &go_on, pointeur_pause);
if(pause == 1){
Timer( pointeur_minute, pointeur_seconde, pointeur_suivant, pointeur_seconde_actuel, pointeur_old_seconde, timer);
Update_Serpent(pos_x, pos_y, segment, old_x, old_y, pointeur_direction);
dessinerSerpent(pos_x, pos_y, segment, old_x, old_y);
Collision_Serpent(pos_x, pos_y, segment, murx, mury, &go_on);
usleep(90000);
Oeuf(pos_x, pos_y, oeufx, oeufy, pointeur_segment);
}
}
}
int main(void){
int choix = 0;
InitialiserGraphique();
CreerFenetre(350,100,1200,900);
EffacerEcran(CouleurParComposante(0,0,0));
Menu();
if(Menu() == 1){
lancer_jeu();
}
if(Menu() == 0){
Menu();
}
FermerGraphique();
return EXIT_SUCCESS;
}

View File

@@ -1,47 +0,0 @@
#include <stdlib.h>
#include <graph.h>
#include <stdio.h>
#include "../fichier.h/main.h"
#include "../fichier.h/time.h"
void Menu_debut(void) {
int af = ChargerSprite("../img/image.jpg");
AfficherSprite(af, 0, 0);
}
int Menu(void) {
int choix = 1;
InitialiserGraphique();
Menu_debut();
while (1) {
if (ToucheEnAttente()) {
int touche = Touche();
switch (touche) {
case XK_e:
choix = 1;
return choix;
case XK_q: /* Changement de XK_q à XK_a*/
/*Code pour traiter la touche "a" (fermer le jeu, par exemple)*/
FermerGraphique();
exit(EXIT_SUCCESS);
return;
/* Ajoutez d'autres cas pour d'autres touches si nécessaire*/
}
}
}
}
int Menu_fin(void){
int fin = ChargerSprite("../img/Menu_Fin.png");
AfficherSprite(fin, 0,0);
Menu();
}
void bordure(int segment){
ChoisirCouleurDessin(CouleurParComposante(0,0,0));
RemplirRectangle(20,720,1180,200);
RemplirRectangle(0,0,20,900);
RemplirRectangle(0,0,1200,20);
RemplirRectangle(1180,0,1200,900);
Score(segment);
}

View File

@@ -1,118 +0,0 @@
#include <graph.h>
#include "../fichier.h/serpent.h"
void Update_Serpent(int pos_x[], int pos_y[], int segment, int old_x[], int old_y[], int* direction){
int i = 0;
for (i=1 ; i<segment ; i++){
pos_x[i]=old_x[i-1];
pos_y[i]=old_y[i-1];
}
if (*direction == 1){
pos_y[0]=old_y[0]-20;
ChargerImage("../img/tete_up.png", pos_x[0], pos_y[0], 0,0,20,20);
}
if (*direction == 2) {
pos_y[0]=old_y[0]+20;
ChargerImage("../img/tete_down.png", pos_x[0], pos_y[0], 0,0,20,20);
}
if (*direction == 3) {
pos_x[0]=old_x[0]-20;
ChargerImage("../img/tete_left.png", pos_x[0], pos_y[0], 0,0,20,20);
}
if (*direction == 4) {
pos_x[0]=old_x[0]+20;
ChargerImage("../img/tete_right.png", pos_x[0], pos_y[0], 0,0,20,20);
}
return;
}
void dessinerSerpent(int pos_x[], int pos_y[], int segment, int old_x[], int old_y[]){
int i;
for (i=0 ; i<segment ; i++){
ChargerImage("../img/serpent.png", old_x[i], old_y[i],0,0, 20,20);
}
for (i=0 ; i<segment ; i++){
ChoisirCouleurDessin(CouleurParComposante(218,209,77));
RemplirRectangle(old_x[segment-1], old_y[segment-1], 20,20);
old_x[i]=pos_x[i];
old_y[i]=pos_y[i];
}
}
void Collision_Serpent(int pos_x[], int pos_y[], int segment, int murx[], int mury[], int *go_on){
int i;
/*Serpent contre coté*/
if (pos_x[0] >1160 || pos_x[0]<=0){
*go_on=0;
}
/*Serpent contre coté*/
if (pos_y[0]<20 || pos_y[0] >=720){
*go_on=0;
}
/*Serpent contre Serpent*/
for (i = 1; i < segment; i++) {
if (pos_x[0] == pos_x[i] && pos_y[0] == pos_y[i]){
*go_on = 0;
}
}
/*Serpent contre mur*/
for(i=0; i<30;i++){
if(pos_x[0] == murx[i] && pos_y[0] == mury[i]){
*go_on=0;
}
}
return;
}
void Controle(int *direction, int last_direction, int *go_on, int *pause) {
int t;
while(ToucheEnAttente()) {
t = Touche();
switch(t) {
case XK_Left:
if (last_direction != 4) {
*direction = 3;
}
return;
case XK_Right:
if (last_direction != 3) {
*direction = 4;
}
return;
case XK_Up:
if (last_direction != 2) {
*direction = 1;
}
return;
case XK_Down:
if (last_direction != 1) {
*direction = 2;
}
return;
case XK_Escape:
*direction = 0;
*go_on = 0;
return;
case XK_space:
if (*pause == 0 ){
*pause == 1;
}else{
*pause = 0;
ChargerImage("../img/PAUSE.png", 400,200,0,0,350,300);
}
}
}
}
void Serpent(int pos_x[], int pos_y[], int old_x[], int old_y[], int *segment, int murx[], int mury[], int *go_on, int *direction) {
int serpent;
int i = 0;
/*Position initial serpent*/
pos_x[0] = 600;
pos_y[0] = 400;
for (i = 0; i < *segment; i++){
pos_x[i]= pos_x[0];
pos_y[i]= pos_y[0];
old_x[i]=pos_x[i];
old_y[i]=pos_y[i];
}
}

View File

@@ -1,22 +0,0 @@
#include <stdlib.h>
#include <graph.h>
#include "../fichier.h/time.h"
#include "../fichier.h/terrain.h"
#include "../fichier.h/serpent.h"
#include "../fichier.h/main.h"
#include "../fichier.h/Oeuf.h"
void DessinerScene(int murx[], int mury[], int minute, int seconde, char timer []){
int mur;
int i;
snprintf(timer,6,"%02d:%02d", minute ,seconde);
ChoisirCouleurDessin(CouleurParComposante(218,209,77));
RemplirRectangle(20,20,1160,700);
ChoisirCouleurDessin(CouleurParComposante(255,255,255));
srand(time(NULL));
for(i=0; i<30; i++){
murx[i] = ((rand() % (55)+1)*20);
mury[i] = ((rand() % (35)+1)*20);
ChargerImage("../img/cactus.png", murx[i], mury[i],0,0, 20,20);
}
}

View File

@@ -1,44 +0,0 @@
#include <stdio.h>
#include <unistd.h>
#include <graph.h>
#include "../fichier.h/time.h"
#include "../fichier.h/main.h"
#include "../fichier.h/serpent.h"
#define CYCLE 100000L
void Score(int segment){
int nombre;
char score[4];
nombre= (segment-10)*25;
snprintf(score,4,"%04d0", nombre);
ChoisirCouleurDessin(CouleurParComposante(0,0,0));
RemplirRectangle(950,725,1300,800);
ChoisirCouleurDessin(CouleurParNom("white"));
EcrireTexte(1000,760,"Score: ",2);
EcrireTexte(1100,760,score,2);
}
void Update_Timer(int minute, int seconde, char timer[]){
snprintf(timer,6,"%02d:%02d", minute, seconde);
ChoisirCouleurDessin(CouleurParComposante(0,0,0));
RemplirRectangle(20,735,200,75);
ChoisirCouleurDessin(CouleurParComposante(255,255,255));
EcrireTexte(50,760,"time: ",2);
EcrireTexte(120,760,timer,2);
}
void Timer(int *minute, int *seconde, unsigned long int *suivant, int *seconde_actuel, int *old_seconde, char timer[]){
if(Microsecondes()> *suivant){
*suivant = Microsecondes()+CYCLE;
*seconde_actuel = (*suivant/1000000)%10;
if(seconde_actuel !=old_seconde){
*old_seconde = *seconde_actuel;
if(*seconde == 59){
*minute=*minute+1;
*seconde=0;
Update_Timer(*minute, *seconde, timer);
}else{
*seconde = *seconde+1;
Update_Timer(*minute, *seconde, timer);
}
}
}
}