-
Notifications
You must be signed in to change notification settings - Fork 0
/
utils.cpp
71 lines (60 loc) · 2.17 KB
/
utils.cpp
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
#include "utils.h"
int manhattanDistance(int x1, int y1, int x2, int y2)
// Calculer de la distance de Manhattan entre deux cases.
{
return abs(x1 - x2) + abs(y1 - y2);
}
std::pair<int,int> askCoord(std::string question)
// Demander à l'utilisateur des coordonnées et les retourner sous forme de paire.
{
int userx, usery;
while (true) {
std::cout << question << " (x y) : ";
if (!(std::cin >> userx >> usery)) {
printErr("Entrée invalide. Veuillez entrer deux entiers.");
std::cin.clear();
std::cin.ignore(std::numeric_limits<std::streamsize>::max(), '\n');
} else if (userx < 1 || userx > TAILLE || usery < 1 || usery > TAILLE) {
printErr("Coordonnées hors du plateau.");
} else {
return std::make_pair(userx, usery);
}
}
}
char askChar(std::string question)
// Demander à l'utilisateur un caractère.
{
char userChar;
while (true) {
std::cout << question << " (C) : ";
std::cin >> userChar;
if (std::cin.fail() || std::cin.peek() != '\n') {
printErr("Entrée invalide. Veuillez entrer un seul caractère.");
std::cin.clear();
std::cin.ignore(std::numeric_limits<std::streamsize>::max(), '\n');
} else {
return userChar;
}
}
}
void print(std::string msg)
{
std::cout << msg << std::endl;
}
void printErr(std::string msg)
{
std::cerr << RED << " ✕ " << RESET << ' ' << msg << std::endl;
}
void printValid(std::string msg)
{
std::cout << GREEN << " ✓ " << RESET << ' ' << msg << std::endl;
}
void printChoix() {
std::cout << " ☞ Souhaitez-vous" << MAGENTA << " donner un ordre " << RESET << "ou" << CYAN << " valider votre tour " << RESET << "(" << MAGENTA << "O" << RESET << "/" << CYAN << "V" << RESET << ")";
}
void printTour(bool who) {
std::cout << (who ? RED : BLUE) << "\n\t\tC'est au tour de l'équipe " << (who ? "Rouge" : "Bleu") << " de jouer : \t\t" << RESET << std::endl;
}
void printGagnant(int who) {
std::cout << (who ? RED : BLUE) << "\n\t\tL'équipe " << (who ? "Rouge" : "Bleu") << " a gagnée la partie ! \t\t" << RESET << std::endl;
}