-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTela.cs
131 lines (118 loc) · 3.93 KB
/
Tela.cs
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
using System;
using tabuleiro;
using xadrez;
using System.Collections.Generic;
namespace ChessProject
{
class Tela
{
public static void imprimirPartida(PartidaDeXadrez partida)
{
imprimirTabuleiro(partida.tab);
Console.WriteLine();
imprimirPecasCapturadas(partida);
Console.WriteLine();
Console.WriteLine("Turno: " + partida.turno);
if(!partida.terminada) {
Console.WriteLine("Aguardando jogada: " + partida.jogadorAtual);
if(partida.xeque)
{
Console.WriteLine("XEQUE!");
}
} else
{
Console.WriteLine("XEQUEMATE!");
Console.WriteLine("Vencedor: " + partida.jogadorAtual);
}
}
public static void imprimirPecasCapturadas(PartidaDeXadrez partida)
{
Console.WriteLine("Peças capturadas:");
Console.Write("Brancas: ");
imprimirConjunto(partida.pecasCapturadas(Cor.Branca));
Console.WriteLine();
Console.Write("Pretas: ");
ConsoleColor aux = Console.ForegroundColor;
Console.ForegroundColor = ConsoleColor.Yellow;
imprimirConjunto(partida.pecasCapturadas(Cor.Preta));
Console.ForegroundColor = aux;
Console.WriteLine();
}
public static void imprimirConjunto(HashSet<Peca> conjunto)
{
Console.Write("[");
foreach (Peca x in conjunto)
{
Console.Write(x + " ");
}
Console.Write("]");
}
public static void imprimirTabuleiro(Tabuleiro tab)
{
for (int i = 0; i < tab.linhas; i++)
{
Console.Write(8 - i + " ");
for (int j = 0; j < tab.colunas; j++)
{
imprimirPeca(tab.peca(i, j));
}
Console.WriteLine();
}
Console.WriteLine(" a b c d e f g h");
}
public static void imprimirTabuleiro(Tabuleiro tab, bool[,] posicoePossiveis)
{
ConsoleColor fundoOriginal = Console.BackgroundColor;
ConsoleColor fundoAlterado = ConsoleColor.DarkGray;
for (int i = 0; i < tab.linhas; i++)
{
Console.Write(8 - i + " ");
for (int j = 0; j < tab.colunas; j++)
{
if (posicoePossiveis[i, j])
{
Console.BackgroundColor = fundoAlterado;
}
else
{
Console.BackgroundColor = fundoOriginal;
}
imprimirPeca(tab.peca(i, j));
Console.BackgroundColor = fundoOriginal;
}
Console.WriteLine();
}
Console.WriteLine(" a b c d e f g h");
Console.BackgroundColor = fundoOriginal;
}
public static PosicaoXadrez lerPosicaoXadrez()
{
string s = Console.ReadLine();
char coluna = s[0];
int linha = int.Parse(s[1] + "");
return new PosicaoXadrez(coluna, linha);
}
public static void imprimirPeca(Peca peca)
{
if (peca == null)
{
Console.Write("- ");
}
else
{
if (peca.cor == Cor.Branca)
{
Console.Write(peca);
}
else
{
ConsoleColor aux = Console.ForegroundColor;
Console.ForegroundColor = ConsoleColor.Yellow;
Console.Write(peca);
Console.ForegroundColor = aux;
}
Console.Write(" ");
}
}
}
}