-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.cpp
47 lines (45 loc) · 1.25 KB
/
main.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
#include <iostream>
#include <stdlib.h>
#include "tabuleiro.h"
#include "funcoes.h"
#include <Windows.h>
using namespace std;
int main() {
wstring xadrez = L"Xadrez";
SetConsoleTitle(xadrez.c_str());
int opcao = 0;
while (1) {
system("cls");
cout << "================================" << endl;
cout << "1) Jogar partida" << endl;
cout << "2) Abrir uma partida" << endl;
cout << "3) Sair" << endl;
cout << "================================" << endl;
cin >> opcao;
if (opcao == 1) {
unique_ptr<Tabuleiro> tabuleiro(new Tabuleiro());
int numeroLances = 0;
int resultado = jogarPartida(*tabuleiro, numeroLances);
if (resultado == 2) {
cout << "Empate." << endl;
}
else {
if (resultado == 1) {
cout << "Brancas ";
}
else {
cout << "Pretas ";
}
cout << "venceram!" << endl;
}
salvarPartida(*tabuleiro, numeroLances);
}
if (opcao == 2) {
abrirPartida();
}
if (opcao == 3) {
break;
}
}
return 0;
}