This commit is contained in:
Thomas ROGNANT 2023-12-15 09:15:22 +01:00
parent 1a083ffb39
commit f44ade1fe1
13 changed files with 489 additions and 375 deletions

View File

@ -1,14 +0,0 @@
CC = gcc
CFLAGS = -Wall -Wextra -I.
LIBS = -lgraph
all: serpent
serpent: main.o serpent.o
$() $() $^ -o $@ $()
%.o: %.c
$() $() -c $< -o $@
clean:
rm -f *.o serpent

View File

@ -1,14 +1,14 @@
CC = gcc snake : graphique.o pommes.o serpent.o obstacles.o main.o
CFLAGS = -Wall -Wextra -I. gcc -o snake graphique.o serpent.o pommes.o obstacles.o main.o -lgraph
LIBS = -lgraph run : exec
./exec
all: serpent graphique.o : graphique.c
gcc -c graphique.c -lgraph
serpent: main.o serpent.o serpent.o : serpent.c
$(CC) $(CFLAGS) $^ -o $@ $(LIBS) gcc -c serpent.c -lgraph
pommes.o : pommes.c
%.o: %.c gcc -c pommes.c -lgraph
$(CC) $(CFLAGS) -c $< -o $@ obstacles.o : obstacles.c
gcc -c obstacles.c -lgraph
clean: main.o : main.c
rm -f *.o serpent gcc -c main.c -lgraph

93
graphique.c Normal file
View File

@ -0,0 +1,93 @@
#include "graphique.h"
#include "serpent.h"
#include "pommes.h"
#include "obstacles.h"
#include <time.h>
void Attendre(unsigned int millisecondes) {
usleep(millisecondes * 1000);
}
void InitialiserJeu(Serpent* serpent, Pommes* pommes, Obstacles* obstacles) {
serpent->longueur = 10;
serpent->corps = malloc(sizeof(Position) * serpent->longueur);
pommes->nombre = NOMBRE_POMMES;
obstacles->nombre = NOMBRE_OBSTACLES;
srand(time(NULL));
serpent->corps[0].x = LARGEUR / 2 * TAILLE_CASE;
serpent->corps[0].y = HAUTEUR / 2 * TAILLE_CASE;
/* Initialisation des obstacles*/
obstacles->positions = malloc(sizeof(Position) * obstacles->nombre);
for (int i = 0; i < obstacles->nombre; i++) {
obstacles->positions[i].x = rand() % LARGEUR;
obstacles->positions[i].y = rand() % HAUTEUR;
}
}
void AfficherSerpent(Serpent* serpent) {
couleur couleurSerpent = CouleurParComposante(255, 255, 0);
ChoisirCouleurDessin(couleurSerpent);
for (int i = 0; i < serpent->longueur; i++) {
RemplirRectangle(serpent->corps[i].x, serpent->corps[i].y, TAILLE_CASE, TAILLE_CASE);
}
}
void LibererMemoire(Serpent* serpent, Pommes* pommes, Obstacles* obstacles) {
free(serpent->corps);
LibererPommes(pommes);
free(obstacles->positions);
}
void Graphique() {
InitialiserGraphique();
CreerFenetre(0, 0, 1240, 940);
EcrireTexte(500, 400, "Le jeu va commencer !", 2);
Attendre(1000);
EffacerEcran(CouleurParComposante(0, 0, 0));
}
void AffichageBasique() {
ChoisirCouleurDessin(CouleurParComposante(111, 255, 94));
RemplirRectangle(0, 0, 1140, 760);
}
void AfficherScore(int score) {
char scoreText[20];
snprintf(scoreText, 20, "Score: %d", score);
ChoisirCouleurDessin(CouleurParComposante(0, 0, 0));
RemplirRectangle(20, 820, 150, 40);
ChoisirCouleurDessin(CouleurParComposante(255, 255, 255));
EcrireTexte(20, 850, scoreText, 2);
}
void AfficheTemps(int minute, int seconde) {
char temps[6];
snprintf(temps, 6, "%02d:%02d", minute, seconde);
ChoisirCouleurDessin(CouleurParComposante(0, 0, 0));
RemplirRectangle(20, 870, 70, 40);
ChoisirCouleurDessin(CouleurParComposante(255, 255, 255));
EcrireTexte(20, 900, temps, 2);
}
void AfficherEcranFin(int score) {
EffacerEcran(CouleurParComposante(0, 0, 0));
EcrireTexte(500, 300, "Game Over!", 2);
char scoreText[20];
snprintf(scoreText, 20, "Score: %d", score);
EcrireTexte(500, 400, scoreText, 2);
}
int PauseJeu() {
while (1) {
if (ToucheEnAttente()) {
int touche = Touche();
if (touche == XK_space) {
return 1; // La barre d'espace a été pressée, reprendre le jeu
}
}
Attendre(100);
}
}

23
graphique.h Normal file
View File

@ -0,0 +1,23 @@
#ifndef GRAPHIQUE_H
#define GRAPHIQUE_H
#include <graph.h>
#include "serpent.h"
#include <stdio.h>
#include <stdlib.h>
#define NOMBRE_POMMES 5
#define NOMBRE_OBSTACLES 20
void Attendre(unsigned int millisecondes);
void Graphique();
void AffichageBasique();
void AfficherScore(int score);
void AfficheTemps(int minute, int seconde);
void AfficherEcranFin(int score);
int PauseJeu();
void AfficherSerpent(Serpent* serpent);
void InitialiserJeu(Serpent* serpent, Pommes* pommes, Obstacles* obstacles);
void LibererMemoire(Serpent* serpent, Pommes* pommes, Obstacles* obstacles);
#endif

86
main.c Normal file
View File

@ -0,0 +1,86 @@
#include "main.h"
#include "serpent.h"
#include "pommes.h"
#include "obstacles.h"
#include "graphique.h"
#include <stdlib.h>
#include <stdio.h>
int main() {
int direction = 1;
unsigned long suivant = Microsecondes() + CYCLE;
int temps[2] = {0, 0}, seconde_actuel, old_seconde;
int jeuEnPause = 0, perdu = 0, score = 0;
Serpent serpent;
Pommes pommes;
Obstacles obstacles;
InitialiserJeu(&serpent, &pommes, &obstacles);
Graphique();
EffacerEcran(CouleurParComposante(0, 0, 0));
AffichageBasique();
GenererPommes(&pommes);
GenererObstacles(&obstacles, &pommes, &serpent);
AfficherSerpent(&serpent);
AfficherScore(score);
while (perdu != -1) {
if (!jeuEnPause) {
if (Microsecondes() > suivant) {
suivant = Microsecondes() + CYCLE;
seconde_actuel = (suivant / 1000000) % 10;
if (seconde_actuel != old_seconde) {
old_seconde = seconde_actuel;
if ((temps[1] + 1) == 60) {
temps[0]++;
temps[1] = 0;
} else {
temps[1]++;
}
AfficheTemps(temps[0], temps[1]);
}
}
if (ToucheEnAttente()) {
int touche = Touche();
int nouvelleDirection;
// Déterminer la nouvelle direction en fonction de la touche pressée
if (touche == XK_Right) {
nouvelleDirection = 1;
} else if (touche == XK_Left) {
nouvelleDirection = 2;
} else if (touche == XK_Up) {
nouvelleDirection = 3;
} else if (touche == XK_Down) {
nouvelleDirection = 4;
} else if (touche == XK_space) {
jeuEnPause = 1;
} else if (touche == XK_Escape) {
return EXIT_FAILURE;
}
// Vérifier si la nouvelle direction n'est pas opposée à la direction actuelle
if (!EstDirectionOpposee(direction, nouvelleDirection)) {
// Mettre à jour la direction du serpent
direction = nouvelleDirection;
}
}
DeplacerSerpent(&serpent, &direction);
perdu = GestionCollision(&serpent, &pommes, &obstacles, perdu, &score);
} else {
if (ToucheEnAttente()) {
int touche = Touche();
if (touche == XK_space) {
if (touche == XK_Escape) {
return EXIT_FAILURE;
}
jeuEnPause = 0;
}
}
}
}
LibererMemoire(&serpent, &pommes, &obstacles);
return EXIT_SUCCESS;
}

29
main.h Normal file
View File

@ -0,0 +1,29 @@
#ifndef MAIN_H
#define MAIN_H
#include "serpent.h"
#include "pommes.h"
#include "obstacles.h"
#include "graphique.h"
#define HAUTEUR 40
#define LARGEUR 60
#define TAILLE_CASE 19
#define NOMBRE_POMMES 5
#define NOMBRE_OBSTACLES 20
#define CYCLE 100000L
void Attendre(unsigned int millisecondes);
void InitialiserJeu(Serpent* serpent, Pommes* pommes, Obstacles* obstacles);
void AffichageBasique();
void AfficherScore(int score);
void LibererMemoire(Serpent* serpent, Pommes* pommes, Obstacles* obstacles);
void AfficheTemps(int minute, int seconde);
void AfficherEcranFin(int score);
int PauseJeu();
void AfficherSerpent(Serpent* serpent);
void GenererObstacles(Obstacles* obstacles, Pommes* pommes, Serpent* serpent);
void DeplacerSerpent(Serpent* serpent, int* direction);
int GestionCollision(Serpent* serpent, Pommes* pommes, Obstacles* obstacles, int perdu, int* score);
#endif

31
obstacles.c Normal file
View File

@ -0,0 +1,31 @@
#include "obstacles.h"
void GenererObstacles(Obstacles* obstacles, Pommes* pommes, Serpent* serpent) {
couleur couleurObstacle = CouleurParComposante(128, 128, 128);
obstacles->positions = (Position*)malloc(obstacles->nombre * sizeof(Position));
if (obstacles->positions == NULL) {
perror("Allocation error");
exit(EXIT_FAILURE);
}
for (int i = 0; i < obstacles->nombre; i++) {
do {
obstacles->positions[i].x = rand() % LARGEUR;
obstacles->positions[i].y = rand() % HAUTEUR;
} while (CollisionAvecPommeSerpent(obstacles->positions[i], pommes->head) || CollisionAvecSerpent(serpent));
ChoisirCouleurDessin(couleurObstacle);
RemplirRectangle(obstacles->positions[i].x * TAILLE_CASE, obstacles->positions[i].y * TAILLE_CASE, TAILLE_CASE, TAILLE_CASE);
}
}
int CollisionAvecObstacle(Serpent* serpent, Obstacles* obstacles) {
for (int i = 0; i < obstacles->nombre; i++) {
if (serpent->corps[0].x == obstacles->positions[i].x * TAILLE_CASE &&
serpent->corps[0].y == obstacles->positions[i].y * TAILLE_CASE) {
return 1;
}
}
return 0;
}

19
obstacles.h Normal file
View File

@ -0,0 +1,19 @@
#ifndef OBSTACLES_H
#define OBSTACLES_H
#include "pommes.h"
#include "serpent.h"
#define LARGEUR 60
#define HAUTEUR 40
#define TAILLE_CASE 19
typedef struct Obstacles {
Position* positions;
int nombre;
} Obstacles;
void GenererObstacles(Obstacles* obstacles, Pommes* pommes, Serpent* serpent);
int CollisionAvecObstacle(Serpent* serpent, Obstacles* obstacles);
#endif

72
pommes.c Normal file
View File

@ -0,0 +1,72 @@
#include <stdlib.h>
#include <graph.h>
#include "pommes.h"
void LibererPommes(Pommes* pommes) {
PommeNode* current = pommes->head;
while (current != NULL) {
PommeNode* next = current->next;
free(current);
current = next;
}
pommes->head = NULL;
}
void GenererPommes(Pommes* pommes) {
couleur couleurPommes = CouleurParComposante(255, 0, 0);
pommes->head = NULL;
for (int i = 0; i < pommes->nombre; i++) {
PommeNode* nouvellePomme = (PommeNode*)malloc(sizeof(PommeNode));
if (nouvellePomme == NULL) {
perror("Allocation error");
exit(EXIT_FAILURE);
}
nouvellePomme->position.x = rand() % LARGEUR;
nouvellePomme->position.y = rand() % HAUTEUR;
nouvellePomme->next = pommes->head;
pommes->head = nouvellePomme;
ChoisirCouleurDessin(couleurPommes);
RemplirArc(nouvellePomme->position.x * TAILLE_CASE, nouvellePomme->position.y * TAILLE_CASE,
TAILLE_CASE, TAILLE_CASE, 360, 360);
}
}
void AjouterPomme(Pommes* pommes, int x, int y) {
PommeNode* nouvellePomme = (PommeNode*)malloc(sizeof(PommeNode));
if (nouvellePomme == NULL) {
perror("Allocation error");
exit(EXIT_FAILURE);
}
nouvellePomme->position.x = x;
nouvellePomme->position.y = y;
nouvellePomme->next = pommes->head;
pommes->head = nouvellePomme;
pommes->nombre++;
}
void GenererNouvellePomme(Pommes* pommes) {
couleur couleurPommes = CouleurParComposante(255, 0, 0);
int newX = rand() % LARGEUR;
int newY = rand() % HAUTEUR;
// Assuming you have a function named AjouterPomme to add a new apple to the linked list.
AjouterPomme(pommes, newX, newY);
ChoisirCouleurDessin(couleurPommes);
RemplirArc(newX * TAILLE_CASE, newY * TAILLE_CASE, TAILLE_CASE, TAILLE_CASE, 360, 360);
}
int CollisionAvecPommeSerpent(Position position, PommeNode* pommes) {
PommeNode* current = pommes;
while (current != NULL) {
if (position.x == current->position.x && position.y == current->position.y) {
return 1;
}
current = current->next;
}
return 0;
}

29
pommes.h Normal file
View File

@ -0,0 +1,29 @@
#ifndef POMMES_H
#define POMMES_H
#include "serpent.h"
#include "graphique.h"
#include <graph.h>
#define LARGEUR 60
#define HAUTEUR 40
#define TAILLE_CASE 19
typedef struct PommeNode {
Position position;
struct PommeNode* next;
} PommeNode;
typedef struct Pommes {
PommeNode* head;
int nombre;
} Pommes;
void LibererPommes(Pommes* pommes);
void GenererPommes(Pommes* pommes);
void AjouterPomme(Pommes* pommes, int x, int y);
void GenererNouvellePomme(Pommes* pommes);
int CollisionAvecPommeSerpent(Position position, PommeNode* pommes);
int CollisionAvecPomme(Serpent* serpent, Pommes* pommes, int* score);
#endif

399
serpent.c
View File

@ -1,276 +1,5 @@
#include <stdlib.h> #include "serpent.h"
#include <graph.h> #include "pommes.h"
#include <time.h>
#include <stdio.h>
#include <unistd.h>
#define HAUTEUR 40
#define LARGEUR 60
#define TAILLE_CASE 19
#define NOMBRE_POMMES 5
#define NOMBRE_OBSTACLES 20
#define CYCLE 100000L
typedef struct {
int x;
int y;
} Position;
typedef struct {
Position* corps;
int longueur;
} Serpent;
typedef struct PommeNode {
Position position;
struct PommeNode* next;
} PommeNode;
typedef struct {
PommeNode* head;
int nombre;
} Pommes;
typedef struct {
Position* positions;
int nombre;
} Obstacles;
void Attendre(unsigned int millisecondes) {
usleep(millisecondes * 1000);
}
void LibererPommes(Pommes* pommes) {
PommeNode* current = pommes->head;
while (current != NULL) {
PommeNode* next = current->next;
free(current);
current = next;
}
pommes->head = NULL;
}
void InitialiserJeu(Serpent* serpent, Pommes* pommes, Obstacles* obstacles) {
serpent->longueur = 10;
serpent->corps = malloc(sizeof(Position) * serpent->longueur);
pommes->nombre = NOMBRE_POMMES;
obstacles->nombre = NOMBRE_OBSTACLES;
srand(time(NULL));
serpent->corps[0].x = LARGEUR / 2 * TAILLE_CASE;
serpent->corps[0].y = HAUTEUR / 2 * TAILLE_CASE;
/* Initialisation des obstacles*/
obstacles->positions = malloc(sizeof(Position) * obstacles->nombre);
for (int i = 0; i < obstacles->nombre; i++) {
obstacles->positions[i].x = rand() % LARGEUR;
obstacles->positions[i].y = rand() % HAUTEUR;
}
}
void Graphique() {
InitialiserGraphique();
CreerFenetre(1, 1, 1240, 940);
EcrireTexte(500, 400, "Le jeu va commencer !", 2);
Attendre(1000);
EffacerEcran(CouleurParComposante(0, 0, 0));
}
void AffichageBasique() {
ChoisirCouleurDessin(CouleurParComposante(111, 255, 94));
RemplirRectangle(0, 0, 1140, 760);
}
void AfficherScore(int score) {
char scoreText[20];
snprintf(scoreText, 20, "Score: %d", score);
ChoisirCouleurDessin(CouleurParComposante(0, 0, 0));
RemplirRectangle(20, 820, 150, 40);
ChoisirCouleurDessin(CouleurParComposante(255, 255, 255));
EcrireTexte(20, 850, scoreText, 2);
}
void LibererMemoire(Serpent* serpent, Pommes* pommes, Obstacles* obstacles) {
free(serpent->corps);
LibererPommes(pommes);
free(obstacles->positions);
}
void AfficheTemps(int minute, int seconde) {
char temps[6];
snprintf(temps, 6, "%02d:%02d", minute, seconde);
ChoisirCouleurDessin(CouleurParComposante(0, 0, 0));
RemplirRectangle(20, 870, 70, 40);
ChoisirCouleurDessin(CouleurParComposante(255, 255, 255));
EcrireTexte(20, 900, temps, 2);
}
void AfficherEcranFin(int score) {
EffacerEcran(CouleurParComposante(0, 0, 0));
EcrireTexte(500, 300, "Game Over!", 2);
char scoreText[20];
snprintf(scoreText, 20, "Score: %d", score);
EcrireTexte(500, 400, scoreText, 2);
}
int PauseJeu() {
while (1) {
if (ToucheEnAttente()) {
int touche = Touche();
if (touche == XK_space) {
return 1; // La barre d'espace a été pressée, reprendre le jeu
}
}
Attendre(100);
}
}
void AfficherSerpent(Serpent* serpent) {
couleur couleurSerpent = CouleurParComposante(255, 255, 0);
ChoisirCouleurDessin(couleurSerpent);
for (int i = 0; i < serpent->longueur; i++) {
RemplirRectangle(serpent->corps[i].x, serpent->corps[i].y, TAILLE_CASE, TAILLE_CASE);
}
}
void GenererPommes(Pommes* pommes) {
couleur couleurPommes = CouleurParComposante(255, 0, 0);
pommes->head = NULL;
for (int i = 0; i < pommes->nombre; i++) {
PommeNode* nouvellePomme = (PommeNode*)malloc(sizeof(PommeNode));
if (nouvellePomme == NULL) {
perror("Allocation error");
exit(EXIT_FAILURE);
}
nouvellePomme->position.x = rand() % LARGEUR;
nouvellePomme->position.y = rand() % HAUTEUR;
nouvellePomme->next = pommes->head;
pommes->head = nouvellePomme;
ChoisirCouleurDessin(couleurPommes);
RemplirArc(nouvellePomme->position.x * TAILLE_CASE, nouvellePomme->position.y * TAILLE_CASE, TAILLE_CASE, TAILLE_CASE,360,360);
}
}
void AjouterPomme(Pommes* pommes, int x, int y) {
PommeNode* nouvellePomme = (PommeNode*)malloc(sizeof(PommeNode));
if (nouvellePomme == NULL) {
perror("Allocation error");
exit(EXIT_FAILURE);
}
nouvellePomme->position.x = x;
nouvellePomme->position.y = y;
nouvellePomme->next = pommes->head;
pommes->head = nouvellePomme;
pommes->nombre++;
}
void GenererNouvellePomme(Pommes* pommes) {
couleur couleurPommes = CouleurParComposante(255, 0, 0);
int newX = rand() % LARGEUR;
int newY = rand() % HAUTEUR;
// Assuming you have a function named AjouterPomme to add a new apple to the linked list.
AjouterPomme(pommes, newX, newY);
ChoisirCouleurDessin(couleurPommes);
RemplirArc(newX * TAILLE_CASE, newY * TAILLE_CASE, TAILLE_CASE, TAILLE_CASE,360,360);
}
int CollisionAvecPommeSerpent(Position position, PommeNode* pommes) {
PommeNode* current = pommes;
while (current != NULL) {
if (position.x == current->position.x && position.y == current->position.y) {
return 1;
}
current = current->next;
}
return 0;
}
int CollisionAvecPomme(Serpent* serpent, Pommes* pommes, int* score) {
PommeNode* current = pommes->head;
PommeNode* prev = NULL;
while (current != NULL) {
if (serpent->corps[0].x >= current->position.x * TAILLE_CASE &&
serpent->corps[0].x < (current->position.x + 1) * TAILLE_CASE &&
serpent->corps[0].y >= current->position.y * TAILLE_CASE &&
serpent->corps[0].y < (current->position.y + 1) * TAILLE_CASE) {
// La pomme a été mangée, mettre à jour les liens
if (prev == NULL) {
// La pomme était en tête de liste
pommes->head = current->next;
} else {
prev->next = current->next;
}
free(current);
*score = *score + 5;
AfficherScore(*score);
// Générer une nouvelle pomme
GenererNouvellePomme(pommes);
return 1;
}
prev = current;
current = current->next;
}
return 0;
}
int CollisionAvecObstacle(Serpent* serpent, Obstacles* obstacles) {
for (int i = 0; i < obstacles->nombre; i++) {
if (serpent->corps[0].x == obstacles->positions[i].x * TAILLE_CASE &&
serpent->corps[0].y == obstacles->positions[i].y * TAILLE_CASE) {
return 1;
}
}
return 0;
}
int CollisionAvecSerpent(Serpent* serpent) {
for (int i = 1; i < serpent->longueur; i++) {
if (serpent->corps[0].x == serpent->corps[i].x && serpent->corps[0].y == serpent->corps[i].y) {
return 1;
}
}
return 0;
}
int EstDirectionOpposee(int directionActuelle, int nouvelleDirection) {
if ((directionActuelle == 1 && nouvelleDirection == 2) ||
(directionActuelle == 2 && nouvelleDirection == 1) ||
(directionActuelle == 3 && nouvelleDirection == 4) ||
(directionActuelle == 4 && nouvelleDirection == 3)) {
return 1; // Les directions sont opposées
}
return 0; // Les directions ne sont pas opposées
}
int CollisionAvecBordures(Serpent* serpent) {
if (serpent->corps[0].x < 0 || serpent->corps[0].x >= LARGEUR * TAILLE_CASE ||
serpent->corps[0].y < 0 || serpent->corps[0].y >= HAUTEUR * TAILLE_CASE) {
return 1;
}
return 0;
}
void GenererObstacles(Obstacles* obstacles, Pommes* pommes, Serpent* serpent) {
couleur couleurObstacle = CouleurParComposante(128, 128, 128);
for (int i = 0; i < obstacles->nombre; i++) {
do {
obstacles->positions[i].x = rand() % LARGEUR;
obstacles->positions[i].y = rand() % HAUTEUR;
} while (CollisionAvecPommeSerpent(obstacles->positions[i], pommes->head) || CollisionAvecSerpent(serpent));
ChoisirCouleurDessin(couleurObstacle);
RemplirRectangle(obstacles->positions[i].x * TAILLE_CASE, obstacles->positions[i].y * TAILLE_CASE, TAILLE_CASE, TAILLE_CASE);
}
}
void DeplacerSerpent(Serpent* serpent, int* direction) { void DeplacerSerpent(Serpent* serpent, int* direction) {
couleur couleurFond = CouleurParComposante(0, 0, 0); couleur couleurFond = CouleurParComposante(0, 0, 0);
@ -310,93 +39,75 @@ void DeplacerSerpent(Serpent* serpent, int* direction) {
int GestionCollision(Serpent* serpent, Pommes* pommes, Obstacles* obstacles, int perdu, int* score) { int GestionCollision(Serpent* serpent, Pommes* pommes, Obstacles* obstacles, int perdu, int* score) {
int loose = perdu; int loose = perdu;
if (CollisionAvecPomme(serpent, pommes, score)) { if (CollisionAvecPomme(serpent, pommes, score)) {
serpent->longueur = serpent->longueur + 2; serpent->longueur = serpent->longueur + 2;
serpent->corps = realloc(serpent->corps, sizeof(Position) * serpent->longueur); serpent->corps = realloc(serpent->corps, sizeof(Position) * serpent->longueur);
loose = 1; loose = 1;
} }
if (CollisionAvecObstacle(serpent, obstacles) || CollisionAvecSerpent(serpent) || CollisionAvecBordures(serpent)) { if (CollisionAvecObstacle(serpent, obstacles) || CollisionAvecSerpent(serpent) || CollisionAvecBordures(serpent)) {
AfficherEcranFin(*score); AfficherEcranFin(*score);
Attendre(1000); Attendre(1000);
loose = -1; loose = -1;
} }
return loose; return loose;
} }
int main() { int CollisionAvecSerpent(Serpent* serpent) {
int direction = 1; for (int i = 1; i < serpent->longueur; i++) {
unsigned long suivant = Microsecondes() + CYCLE; if (serpent->corps[0].x == serpent->corps[i].x && serpent->corps[0].y == serpent->corps[i].y) {
int temps[2] = {0, 0}, seconde_actuel, old_seconde; return 1;
int jeuEnPause = 0, perdu = 0, score = 0;
Serpent serpent;
Pommes pommes;
Obstacles obstacles;
InitialiserJeu(&serpent, &pommes, &obstacles);
Graphique();
EffacerEcran(CouleurParComposante(0, 0, 0));
AffichageBasique();
GenererPommes(&pommes);
GenererObstacles(&obstacles, &pommes, &serpent);
AfficherSerpent(&serpent);
AfficherScore(score);
while (perdu != -1) {
if (!jeuEnPause) {
if (Microsecondes() > suivant) {
suivant = Microsecondes() + CYCLE;
seconde_actuel = (suivant / 1000000) % 10;
if (seconde_actuel != old_seconde) {
old_seconde = seconde_actuel;
if ((temps[1] + 1) == 60) {
temps[0]++;
temps[1] = 0;
} else {
temps[1]++;
}
AfficheTemps(temps[0], temps[1]);
} }
} }
if (ToucheEnAttente()) {
int touche = Touche();
int nouvelleDirection;
// Déterminer la nouvelle direction en fonction de la touche pressée return 0;
if (touche == XK_Right) {
nouvelleDirection = 1;
} else if (touche == XK_Left) {
nouvelleDirection = 2;
} else if (touche == XK_Up) {
nouvelleDirection = 3;
} else if (touche == XK_Down) {
nouvelleDirection = 4;
} else if (touche == XK_space) {
jeuEnPause = 1;
} else if (touche == XK_Escape) {
return EXIT_FAILURE;
}
// Vérifier si la nouvelle direction n'est pas opposée à la direction actuelle
if (!EstDirectionOpposee(direction, nouvelleDirection)) {
// Mettre à jour la direction du serpent
direction = nouvelleDirection;
}
} }
DeplacerSerpent(&serpent, &direction);
perdu = GestionCollision(&serpent, &pommes, &obstacles, perdu, &score); int EstDirectionOpposee(int directionActuelle, int nouvelleDirection) {
} else { if ((directionActuelle == 1 && nouvelleDirection == 2) ||
if (ToucheEnAttente()) { (directionActuelle == 2 && nouvelleDirection == 1) ||
int touche = Touche(); (directionActuelle == 3 && nouvelleDirection == 4) ||
if (touche == XK_space) { (directionActuelle == 4 && nouvelleDirection == 3)) {
if (touche == XK_Escape) { return 1; // Les directions sont opposées
return EXIT_FAILURE;
} }
jeuEnPause = 0;
} return 0; // Les directions ne sont pas opposées
} }
}
} int CollisionAvecBordures(Serpent* serpent) {
LibererMemoire(&serpent, &pommes, &obstacles); if (serpent->corps[0].x < 0 || serpent->corps[0].x >= LARGEUR * TAILLE_CASE ||
return EXIT_SUCCESS; serpent->corps[0].y < 0 || serpent->corps[0].y >= HAUTEUR * TAILLE_CASE) {
return 1;
}
return 0;
}
int CollisionAvecPomme(Serpent* serpent, Pommes* pommes, int* score) {
PommeNode* current = pommes->head;
PommeNode* prev = NULL;
while (current != NULL) {
if (serpent->corps[0].x >= current->position.x * TAILLE_CASE &&
serpent->corps[0].x < (current->position.x + 1) * TAILLE_CASE &&
serpent->corps[0].y >= current->position.y * TAILLE_CASE &&
serpent->corps[0].y < (current->position.y + 1) * TAILLE_CASE) {
// La pomme a été mangée, mettre à jour les liens
if (prev == NULL) {
// La pomme était en tête de liste
pommes->head = current->next;
} else {
prev->next = current->next;
}
free(current);
*score = *score + 5;
AfficherScore(*score);
// Générer une nouvelle pomme
GenererNouvellePomme(pommes);
return 1;
}
prev = current;
current = current->next;
}
return 0;
} }

35
serpent.h Normal file
View File

@ -0,0 +1,35 @@
#ifndef SERPENT_H
#define SERPENT_H
#include <graph.h>
#include <stdlib.h>
#define TAILLE_CASE 19
#define LARGEUR 60
#define HAUTEUR 40
typedef struct {
int x;
int y;
} Position;
typedef struct {
Position* corps;
int longueur;
} Serpent;
typedef struct Pommes Pommes;
typedef struct Obstacles Obstacles;
extern void DeplacerSerpent(Serpent* serpent, int* direction);
extern int GestionCollision(Serpent* serpent, Pommes* pommes, Obstacles* obstacles, int perdu, int* score);
extern int CollisionAvecSerpent(Serpent* serpent);
extern int EstDirectionOpposee(int directionActuelle, int nouvelleDirection);
extern int CollisionAvecBordures(Serpent* serpent);
int CollisionAvecPomme(Serpent* serpent, Pommes* pommes, int* score);
#endif // SERPENT_H

BIN
snake Executable file

Binary file not shown.