-
Notifications
You must be signed in to change notification settings - Fork 0
/
UI.cpp
75 lines (64 loc) · 1.6 KB
/
UI.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
72
73
74
75
/*
* -------------------------
* CLASSE UI
* -------------------------
* by Dr.XGB
* Version 1.1
*
* Classe responsável pela interface
* gráfica do jogo.
* Aqui é onde vai mostrar a tela de título,
* HUD e mensagens de fim de jogo.
* -------------------------------------------
*/
#include "UI.h"
#include <iostream>
#include <iomanip>
using namespace std;
void UI::titulo() {
cout << setfill('=') << setw(70) << '\0' << endl
<< "\t\tJOGO DA MEMÓRIA" << endl
<< setw(70) << '\0'
<< endl << endl;
}
void UI::limpaTela() {
system("cls");
titulo();
}
void UI::HUD(Jogo& jogo) {
// Colunas
cout << '\t';
for (char c = 'A'; c < 'A' + 10; c++) {
cout << setfill(' ') << setw(4) << c;
}
cout << '\0' << endl;
cout << '\t' << setfill('-') << setw(44) << '\0';
cout << endl;
// Mostra os números
cout << '\t';
jogo.getNumeros();
cout << endl;
// Mostra a quantidade de tentativas
cout << "Tentativas: " <<
jogo.getTentativas()
<< endl << endl;
}
void UI::fim(Jogo& jogo) {
if (jogo.getTentativas() < 3)
cout << "INCRÍVEL !!" << endl;
else if (jogo.getTentativas() < 5)
cout << "MUITO BEM !!" << endl;
else if (jogo.getTentativas() < 10)
cout << "OK" << endl;
cout << "Você concluiu o jogo em "
<< jogo.getTentativas() << " tentativas"
<< endl << endl;
if (jogo.getTentativas() < 3)
cout << "Você é o bixão mesmo!" << endl;
else if (jogo.getTentativas() < 5)
cout << "Até que você é bom de cabeça!" << endl;
else if (jogo.getTentativas() < 10)
cout << "Você foi... Eh... Mais ou menos, mais ou menos..." << endl;
else
cout << "Você precisa praticar mais!" << endl;
}