SAE11_2023/Snake/main.c

66 lines
1.8 KiB
C
Raw Normal View History

2023-12-16 14:11:07 +01:00
#include <stdlib.h>
#include <stdio.h>
#include <graph.h>
#include <time.h>
#include "Afficher.h"
#include "ModifTab.h"
#include "Deplacement.h"
#include "Chemin.h"
2023-12-19 14:18:40 +01:00
#include "Menu.h"
2023-12-16 14:11:07 +01:00
#define DELTA 1000000L;
#define DELTO 1000L
#define DELTI 900000L
int main(void) {
2023-12-19 14:18:40 +01:00
int tab[H][L], direction = 0, temoin = 0, direc = 0, pause = 1,mode=0;
int sxmin = 17, symin = 30, sxmax = 27, symax = 30, fin = 0, point = 0, Compteur_Temps = 0;
2023-12-16 14:11:07 +01:00
int *pointeur_pause = &pause;
int *pointeur_sxmin = &sxmin;
int *pointeur_symin = &symin;
int *pointeur_direc = &direc;
int *pointeur_temoin = &temoin;
int *pointeur_sxmax = &sxmax;
int *pointeur_symax = &symax;
int *pointeur_fin = &fin;
int *pointeur_point = &point;
unsigned long suivant = Microsecondes() + DELTA;
unsigned long suivant2 = Microsecondes() + DELTO;
unsigned long suivant3 = Microsecondes() + DELTO;
2023-12-19 14:18:40 +01:00
InitEcran();
mode=MenuDebut();
init(tab,mode);
2023-12-16 14:11:07 +01:00
while (1) {
2023-12-19 14:18:40 +01:00
if(fin!=1){
2023-12-16 14:11:07 +01:00
Affiche(tab);
if (ToucheEnAttente() == 1) {
2023-12-19 14:18:40 +01:00
direction = Semage(tab, direction, sxmax, symax, pointeur_pause, pointeur_fin);
2023-12-16 14:11:07 +01:00
}
if (pause == 1) {
2023-12-19 14:18:40 +01:00
if (Microsecondes() > suivant) {
Compteur_Temps++;
DessinerTimer(Compteur_Temps);
suivant = Microsecondes() + DELTA;
}
if (Microsecondes() > suivant3) {
DeplacementQueue(tab, pointeur_sxmin, pointeur_symin, pointeur_direc,mode);
suivant3 = TempsArret(pointeur_temoin);
}
if (Microsecondes() > suivant2) {
DeplacementTete(tab, pointeur_sxmax, pointeur_symax, direction, pointeur_temoin, pointeur_fin, pointeur_point,mode);
suivant2 = Microsecondes() + DELTO;
}
2023-12-16 14:11:07 +01:00
}
2023-12-19 14:18:40 +01:00
}
else if (fin == 1) {
if(Gagne(tab)==0){
MenuFinGagne();
}else{
MenuFinPerdu();
}
}
2023-12-16 14:11:07 +01:00
}
}