-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAffichage.c
57 lines (50 loc) · 1.21 KB
/
Affichage.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
45
46
47
48
49
50
51
52
53
54
55
56
57
#include <stdlib.h>
#include <stdio.h>
#include <sys/wait.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <sys/sem.h>
#include <sys/msg.h>
#include <unistd.h>
#include <pthread.h>
#include <errno.h>
#include "Affichage.h"
void init_affichage(int nbrMachine)
{
if(pthread_mutex_init(&mutexAff, NULL) == -1)
{
perror("Initialisation mutex de synchro de machine\n");
exit(1);
}
int i=0;
printf("[Information] : \n\n");
printf("[Robot Alimentation] : \n\n");
for (i=0; i<nbrMachine; i++)
{
printf("[Machine %d] : Prête\n",i );
}
printf("\n[Robot de Retrait] : \n\n");
printf("[Erreur] : Pas d'erreur\n");
fflush(stdout);
}
void affichageConsole (int depLigne,char * Message)
{
pthread_mutex_lock(&mutexAff);
if (depLigne != 2)
{
printf("\033[%dA",depLigne); //Deplacement curseur en haut
fflush(stdout);
}
printf("\033[200D"); //Retour curseur à gauche
fflush(stdout);
printf("\033[2K"); //Efface ligne
fflush(stdout);
printf("%s",Message);
fflush(stdout);
printf("\033[%dB",depLigne); //Deplacement curseur en bas
fflush(stdout);
printf("\033[200D"); //Retour curseur à gauche
fflush(stdout);
pthread_mutex_unlock(&mutexAff);
sleep(1);
}