-
Notifications
You must be signed in to change notification settings - Fork 2
/
bibliotheque.h
80 lines (52 loc) · 1.42 KB
/
bibliotheque.h
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
#ifndef bibliotheque_h
#define bibliotheque_h
// ==== Structure de Données ==== //
typedef struct {
int colonne[10];
} ligne;
typedef struct {
ligne ligne[15];
} grille;
typedef struct {
int x;
int y;
int nombre;
int tab[2][2];
} bloc;
//================================//
// ==== Prototypes ==== //
// ==== Menu Principal ==== //
// Auteur : Sarah Barlatier
void menuPrincipal();
void choixMenuPrincipal(int choix);
void nouvellePartie();
void chargerPartie();
void attenteDebut();
void reglesDuJeu();
void quitter();
// ==== Gestionnaire de Fichier ==== //
// Auteur : Fabrice Gerbaud
int fichierExiste(char nom[50]);
void chargerGrille(char nom[50], grille *g);
void sauvegarderGrille(grille g);
// ==== Jeu ==== //
// Auteur : Lemine Mahjoub
void grilleVide(grille *g);
void generationBloc(bloc *nouveauBloc);
void affichage(grille g, bloc bloc);
void afficherGrille(grille g);
void affichageBloc(bloc bloc);
void affichageCommande();
void placerBloc(grille *g, bloc b);
void commandeUtilisateur(bloc *b, grille *g);
void changementBloc(grille *g, bloc *b);
int blocAutour(grille g, int x, int y, int pasverif, int compteur, int valeur);
bloc bonBloc(grille g, int i, int j);
void deforestageGrille(grille *g, int i, int j);
void graviteGrille(grille *g, int x, int y);
void conditionVictoire(grille g);
void victoire();
void conditionDefaite(grille g);
void defaite();
void jeu(grille *g);
#endif