-
Notifications
You must be signed in to change notification settings - Fork 0
/
funcoes.cpp
174 lines (169 loc) · 6.41 KB
/
funcoes.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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
#include <iostream>
#include <string>
#include <fstream>
#include <conio.h>
#include "Tabuleiro.h"
using namespace std;
enum cor{branco, preto};
pair<pair<int, int>, pair<int, int>> converterLance(string pos_inicial, string pos_final) {
pair<pair<int, int>, pair<int, int>> lance;
lance.first.first = pos_inicial[0] - 'a';
lance.first.second = 8 - pos_inicial[1] + '0';
lance.second.first = pos_final[0] - 'a';
lance.second.second = 8 - pos_final[1] + '0';
return lance;
}
int jogarPartida(Tabuleiro& tabuleiro, int& numeroLances) {
bool cor_atual = cor{ branco };
bool lanceInvalido = 0;
while (1) {
system("cls");
cout << endl << endl;
if (lanceInvalido) cout << "Lance invalido." << endl << endl;
else cout << endl << endl;
lanceInvalido = 0;
tabuleiro.imprimir();
if (cor_atual) cout << "Pretas";
else cout << "Brancas";
cout << " jogam." << endl;
cout << "Insira \"D B\" para desistir com as brancas, \"D P\" para desistir com as pretas, \"E E\" para concordar em um empate" << endl
<< "\"O O\" para fazer o roque, \"OO O\" para o grande roque, " << "ou insira sua jogada (casa_inicial casa_final): " << endl;
string pos_inicial, pos_final;
cin >> pos_inicial >> pos_final;
if (pos_inicial == "D") {
if (pos_final == "B") {
return 0;
}
if (pos_final == "P") {
return 1;
}
}
if (pos_inicial == "E" && pos_final == "E") return 2;
pair<pair<int, int>, pair<int, int>> lance;
if (pos_inicial == "O" && pos_final == "O") {
pair<int, int> pos_inicial_rei = tabuleiro.get_rei(cor_atual);
if (tabuleiro.roque(cor_atual)) {
pair<int, int> pos_final_rei = tabuleiro.get_rei(cor_atual);
lance = make_pair(pos_inicial_rei, pos_final_rei);
tabuleiro.atualizarLista(lance);
numeroLances++;
}
else {
lanceInvalido = 1;
continue;
}
}
else if (pos_inicial == "OO" && pos_final == "O") {
pair<int, int> pos_inicial_rei = tabuleiro.get_rei(cor_atual);
if (tabuleiro.roque_grande(cor_atual)) {
pair<int, int> pos_final_rei = tabuleiro.get_rei(cor_atual);
lance = make_pair(pos_inicial_rei, pos_final_rei);
tabuleiro.atualizarLista(lance);
numeroLances++;
}
else {
lanceInvalido = 1;
continue;
}
}
else {
lance = converterLance(pos_inicial, pos_final);
if (tabuleiro.validarLance(lance, cor_atual)) {
tabuleiro.atualizarLista(lance);
numeroLances++;
}
else {
lanceInvalido = 1;
continue;
}
}
tabuleiro.atualizarParametros(lance, cor_atual);
cor_atual = !cor_atual;
}
}
void salvarPartida(Tabuleiro tabuleiro, int& numeroLances) {
cout << "Deseja salvar a partida (S/N)? ";
char resposta;
cin >> resposta;
if (resposta == 'S') {
cout << "Digite o nome do arquivo: ";
string nome;
cin >> nome;
ofstream arquivo;
arquivo.open(nome, ios::app);
pair<pair<int, int>, pair<int, int>> lance;
for (int i = 0; i < numeroLances; i++) {
lance = tabuleiro.getLance(i);
char a = 'a' + lance.first.first;
int b = 8 - lance.first.second;
char c = 'a' + lance.second.first;
int d = 8 - lance.second.second;
arquivo << a << b << ' ' << c << d << endl;
}
arquivo.close();
}
}
void abrirPartida() {
system("cls");
cout << endl << endl;
unique_ptr<Tabuleiro> partida(new Tabuleiro());
cout << "Insira o nome do arquivo (exemplo.txt): ";
string nome;
cin >> nome;
ifstream arquivo;
arquivo.open(nome);
string linha;
pair<pair<int, int>, pair<int, int>> lance;
string pos_inicial, pos_final;
int numeroLances = 0;
if (arquivo.is_open()) {
while (getline(arquivo, linha)) {
pos_inicial = linha.substr(0, 2);
pos_final = linha.substr(3, 2);
lance = converterLance(pos_inicial, pos_final);
partida->atualizarLista(lance);
numeroLances++;
}
int caracterPressionado = 1;
int index = -1;
cout << endl << endl << "Pressione 'S' para sair ou use as setas para navegar." << endl << endl;
partida->imprimir();
while (caracterPressionado != 83) { // "S" para sair
caracterPressionado = _getch();
if (caracterPressionado == 0 || caracterPressionado == 224) {
caracterPressionado = _getch();
if (caracterPressionado == 77 && index < (numeroLances - 1)) { // seta para a direita
index++;
if (!partida->testarRoque(partida->getLance(index))) {
partida->atualizar(partida->getLance(index));
}
system("cls");
cout << endl << endl;
cout << "Pressione 'S' para sair ou use as setas para navegar." << endl << endl;
partida->imprimir();
}
else if (caracterPressionado == 75 && index > -1) { // seta para a esquerda
pair<pair<int, int>, pair<int, int>> lance;
pair<int, int> temporario;
if (!partida->testarRoqueInverso(partida->getLance(index))) {
lance = partida->getLance(index);
temporario = lance.first;
lance.first = lance.second;
lance.second = temporario;
partida->atualizar(lance);
}
index--;
system("cls");
cout << endl << endl;
cout << "Pressione 'S' para sair ou use as setas para navegar." << endl << endl;
partida->imprimir();
}
if (index == numeroLances - 1) cout << "Fim do jogo." << endl;
}
}
arquivo.close();
}
else {
cout << "Nao foi possivel abrir o arquivo" << endl;
}
}