-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProgram.cs
59 lines (52 loc) · 1.54 KB
/
Program.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
using tabuleiro;
using xadrez;
namespace ProjetoXadrez
{
class Program
{
static void Main(string[] args)
{
PartidaDeXadrez partida = new PartidaDeXadrez();
while (!partida.terminada)
{
try
{
Console.Clear();
Tela.imprimirPartida(partida);
Console.WriteLine();
Console.Write("Origem: ");
Posicao origem = Tela.lerPosicaoXadrez().toPosicao();
partida.validarPosicaoDeOrigem(origem);
bool[,] posicoesPossiveis = partida.tab.peca(origem).movimentosPossiveis();
Console.Clear();
Tela.imprimirTabuleiro(partida.tab, posicoesPossiveis);
Console.WriteLine();
Console.WriteLine("Turno: " + partida.turno);
Console.WriteLine("Aguardando jogada: " + partida.jogadorAtual);
Console.WriteLine();
Console.Write("Destino: ");
Posicao destino = Tela.lerPosicaoXadrez().toPosicao();
partida.validarPosicaoDeDestino(origem, destino);
partida.realizarJogada(origem, destino);
}
catch (TabuleiroException e)
{
Console.WriteLine(e.Message);
Console.ReadLine();
}
catch (FormatException e)
{
Console.WriteLine("FORMAT ERROR: " + e.Message);
Console.ReadLine();
}
catch (Exception e)
{
Console.WriteLine("ERROR: " + e.Message);
Console.ReadLine();
}
}
Console.Clear();
Tela.imprimirPartida(partida);
}
}
}