-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.c
44 lines (40 loc) · 1.04 KB
/
main.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
/* TITOUAN WATTELET */
/*------------------*/
/* LIBRAIRIES */
#include <stdlib.h>
#include <stdio.h>
#include <graph.h>
#include "log.h"
#include "run_interface.h"
/*CONFIGURATION DE BASE*/
#define GAME_NAME "Jeu du Taquin"
/*INITIALISATION ET PARAMETRAGE DE LA FENETRE*/
int main(void) {
unsigned short int res;
printlog("success", "Lancement du jeu.");
printlog("load", "Initialisation de l'interface graphique...");
res=InitialiserGraphique();
if ( res == 0 ) {
printlog("err", "Impossible d'initialiser l'interface graphique.");
exit(1);
}
else {
printlog("success", "Interface graphique initialisée.");
}
printlog("load", "Création de la fenêtre...");
if ( res == 0 ) {
printlog("err", "Impossible de créer la fenêtre.");
exit(1);
}
else {
CreerFenetre(10, 10, 1500, 844);
printlog("success", "Fenêtre graphique créée.");
}
ChoisirTitreFenetre(GAME_NAME);
printlog("load", "Ouverture d'interface...");
res=run_interface(1);
if (res!=0) {
printlog("err", "Impossible d'ouvrir l'interface.");
}
return EXIT_SUCCESS;
}