lab.cpp/Chess/dep/term.cpp

25 lines
493 B
C++

// #include "term.h"
/* [1] Operations terminal
=========================================================*/
void clear(){ // efface l'ecran
cout << "\033[H\033[2J";
}
void setfont(const TERM_COLOR c, const TERM_STYLE s){
cout << "\033[" << s << ";" << c << "m";
}
void err(string msg){
// On affiche le WARNING
setfont(RED, BOLD);
cout << "/!\\ ";
// On affiche le message d'erreur
setfont(RED);
cout << msg << endl;
// On attends l'appui sur une touche
setfont();
sleep(1);
}