-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathihm.h
60 lines (54 loc) · 1.85 KB
/
ihm.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
/**
* \file ihm.h
* \brief Spécification de la couche IHM
* \author Millian Lamiaux & Malo Garnier
* \date 8 avril 2024
* \version 1.0
*/
#ifndef IHM_H
#define IHM_H
/*
*****************************************************************************************
* \noop I N C L U D E S S P E C I F I Q U E S
*/
#include <stdio.h>
#include <stdlib.h>
#include "session.h"
/*
*****************************************************************************************
* \noop D E F I N I T I O N DES M A C R O S
*/
/**
* \def CHECK(sts, msg)
* \brief Macro-fonction qui vérifie que sts est égal -1 (cas d'erreur : sts==-1)
* En cas d'erreur, il y a affichage du message adéquat et fin d'exécution
*/
#define CHECK(sts, msg) if ((sts)==-1) {perror(msg); exit(-1);}
/**
* \def PAUSE(msg)
* \brief Macro-fonction qui affiche msg et attend une entrée clavier
*/
#define PAUSE(msg) printf("%s [Appuyez sur entrée pour continuer]", msg); getchar();
/*
*****************************************************************************************
* \noop S T R C T U R E S DE D O N N E E S
*/
/*
*****************************************************************************************
* \noop P R O T O T Y P E S DES F O N C T I O N S
*/
/**
* \fn void afficherPlateau (int **matrix, int col, int ligne)
* \brief Affiche la matrice du Puissance 4 au format humain dans le Shell
* \param matrix : matrice d'entier comportant des 0, 1 ou 2
* \param col : le nombre de colonnes de la matrice
* \param ligne : le nombre de lignes de la matrice
* \note Ne pas donner une matrice trop grande sous peine de dégrader l'expérience utilisateur
*/
void afficherPlateau(plateau_t matrix, int col, int ligne, char colors[12][10]);
/**
* \fn void effacerShell ()
* \brief Effacele contenu du Shell
*/
void effacerShell();
#endif /* IHM_H */