-
Notifications
You must be signed in to change notification settings - Fork 147
/
Copy pathProgram.cs
223 lines (212 loc) · 8.22 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
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
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
Exception? exception = null;
Encoding encoding = Console.OutputEncoding;
try
{
Console.OutputEncoding = Encoding.UTF8;
Game game = ShowIntroScreenAndGetOption();
Console.Clear();
RunGameLoop(game);
RenderGameState(game, promptPressKey: true);
Console.ReadKey(true);
}
catch (Exception e)
{
exception = e;
throw;
}
finally
{
Console.OutputEncoding = encoding;
Console.CursorVisible = true;
Console.Clear();
Console.WriteLine(exception?.ToString() ?? "Checkers was closed.");
}
Game ShowIntroScreenAndGetOption()
{
Console.Clear();
Console.WriteLine();
Console.WriteLine(" Checkers");
Console.WriteLine();
Console.WriteLine(" Checkers is played on an 8x8 board between two sides commonly known as black");
Console.WriteLine(" and white. The objective is simple - capture all your opponent's pieces. An");
Console.WriteLine(" alternative way to win is to trap your opponent so that they have no valid");
Console.WriteLine(" moves left.");
Console.WriteLine();
Console.WriteLine(" Black starts first and players take it in turns to move their pieces forward");
Console.WriteLine(" across the board diagonally. Should a piece reach the other side of the board");
Console.WriteLine(" the piece becomes a king and can then move diagonally backwards as well as");
Console.WriteLine(" forwards.");
Console.WriteLine();
Console.WriteLine(" Pieces are captured by jumping over them diagonally. More than one enemy piece");
Console.WriteLine(" can be captured in the same turn by the same piece. If you can capture a piece");
Console.WriteLine(" you must capture a piece.");
Console.WriteLine();
Console.WriteLine(" Moves are selected with the arrow keys. Use the [enter] button to select the");
Console.WriteLine(" from and to squares. Invalid moves are ignored.");
Console.WriteLine();
Console.WriteLine(" Press a number key to choose number of human players:");
Console.WriteLine(" [0] Black (computer) vs White (computer)");
Console.WriteLine(" [1] Black (human) vs White (computer)");
Console.Write(" [2] Black (human) vs White (human)");
int? humanPlayerCount = null;
while (humanPlayerCount is null)
{
Console.CursorVisible = false;
switch (Console.ReadKey(true).Key)
{
case ConsoleKey.D0 or ConsoleKey.NumPad0: humanPlayerCount = 0; break;
case ConsoleKey.D1 or ConsoleKey.NumPad1: humanPlayerCount = 1; break;
case ConsoleKey.D2 or ConsoleKey.NumPad2: humanPlayerCount = 2; break;
}
}
return new Game(humanPlayerCount.Value);
}
void RunGameLoop(Game game)
{
while (game.Winner is null)
{
Player currentPlayer = game.Players.First(player => player.Color == game.Turn);
if (currentPlayer.IsHuman)
{
while (game.Turn == currentPlayer.Color)
{
(int X, int Y)? selectionStart = null;
(int X, int Y)? from = game.Board.Aggressor is not null ? (game.Board.Aggressor.X, game.Board.Aggressor.Y) : null;
List<Move> moves = game.Board.GetPossibleMoves(game.Turn);
if (moves.Select(move => move.PieceToMove).Distinct().Count() is 1)
{
Move must = moves.First();
from = (must.PieceToMove.X, must.PieceToMove.Y);
selectionStart = must.To;
}
while (from is null)
{
from = HumanMoveSelection(game);
selectionStart = from;
}
(int X, int Y)? to = HumanMoveSelection(game, selectionStart: selectionStart, from: from);
Piece? piece = null;
piece = game.Board[from.Value.X, from.Value.Y];
if (piece is null || piece.Color != game.Turn)
{
from = null;
to = null;
}
if (from is not null && to is not null)
{
Move? move = game.Board.ValidateMove(game.Turn, from.Value, to.Value);
if (move is not null &&
(game.Board.Aggressor is null || move.PieceToMove == game.Board.Aggressor))
{
game.PerformMove(move);
}
}
}
}
else
{
List<Move> moves = game.Board.GetPossibleMoves(game.Turn);
List<Move> captures = moves.Where(move => move.PieceToCapture is not null).ToList();
if (captures.Count > 0)
{
game.PerformMove(captures[Random.Shared.Next(captures.Count)]);
}
else if(!game.Board.Pieces.Any(piece => piece.Color == game.Turn && !piece.Promoted))
{
var (a, b) = game.Board.GetClosestRivalPieces(game.Turn);
Move? priorityMove = moves.FirstOrDefault(move => move.PieceToMove == a && Board.IsTowards(move, b));
game.PerformMove(priorityMove ?? moves[Random.Shared.Next(moves.Count)]);
}
else
{
game.PerformMove(moves[Random.Shared.Next(moves.Count)]);
}
}
RenderGameState(game, playerMoved: currentPlayer, promptPressKey: true);
Console.ReadKey(true);
}
}
void RenderGameState(Game game, Player? playerMoved = null, (int X, int Y)? selection = null, (int X, int Y)? from = null, bool promptPressKey = false)
{
const char BlackPiece = '○';
const char BlackKing = '☺';
const char WhitePiece = '◙';
const char WhiteKing = '☻';
const char Vacant = '·';
Console.CursorVisible = false;
Console.SetCursorPosition(0, 0);
StringBuilder sb = new();
sb.AppendLine();
sb.AppendLine(" Checkers");
sb.AppendLine();
sb.AppendLine($" ╔═══════════════════╗");
sb.AppendLine($" 8 ║ {B(0, 7)} {B(1, 7)} {B(2, 7)} {B(3, 7)} {B(4, 7)} {B(5, 7)} {B(6, 7)} {B(7, 7)} ║ {BlackPiece} = Black");
sb.AppendLine($" 7 ║ {B(0, 6)} {B(1, 6)} {B(2, 6)} {B(3, 6)} {B(4, 6)} {B(5, 6)} {B(6, 6)} {B(7, 6)} ║ {BlackKing} = Black King");
sb.AppendLine($" 6 ║ {B(0, 5)} {B(1, 5)} {B(2, 5)} {B(3, 5)} {B(4, 5)} {B(5, 5)} {B(6, 5)} {B(7, 5)} ║ {WhitePiece} = White");
sb.AppendLine($" 5 ║ {B(0, 4)} {B(1, 4)} {B(2, 4)} {B(3, 4)} {B(4, 4)} {B(5, 4)} {B(6, 4)} {B(7, 4)} ║ {WhiteKing} = White King");
sb.AppendLine($" 4 ║ {B(0, 3)} {B(1, 3)} {B(2, 3)} {B(3, 3)} {B(4, 3)} {B(5, 3)} {B(6, 3)} {B(7, 3)} ║");
sb.AppendLine($" 3 ║ {B(0, 2)} {B(1, 2)} {B(2, 2)} {B(3, 2)} {B(4, 2)} {B(5, 2)} {B(6, 2)} {B(7, 2)} ║ Taken:");
sb.AppendLine($" 2 ║ {B(0, 1)} {B(1, 1)} {B(2, 1)} {B(3, 1)} {B(4, 1)} {B(5, 1)} {B(6, 1)} {B(7, 1)} ║ {game.TakenCount(White),2} x {WhitePiece}");
sb.AppendLine($" 1 ║ {B(0, 0)} {B(1, 0)} {B(2, 0)} {B(3, 0)} {B(4, 0)} {B(5, 0)} {B(6, 0)} {B(7, 0)} ║ {game.TakenCount(Black),2} x {BlackPiece}");
sb.AppendLine($" ╚═══════════════════╝");
sb.AppendLine($" A B C D E F G H");
sb.AppendLine();
if (selection is not null)
{
sb.Replace(" $ ", $"[{ToChar(game.Board[selection.Value.X, selection.Value.Y])}]");
}
if (from is not null)
{
char fromChar = ToChar(game.Board[from.Value.X, from.Value.Y]);
sb.Replace(" @ ", $"<{fromChar}>");
sb.Replace("@ ", $"{fromChar}>");
sb.Replace(" @", $"<{fromChar}");
}
PieceColor? wc = game.Winner;
PieceColor? mc = playerMoved?.Color;
PieceColor? tc = game.Turn;
// Note: these strings need to match in length
// so they overwrite each other.
string w = $" *** {wc} wins ***";
string m = $" {mc} moved ";
string t = $" {tc}'s turn ";
sb.AppendLine(
game.Winner is not null ? w :
playerMoved is not null ? m :
t);
string p = " Press any key to continue...";
string s = " ";
sb.AppendLine(promptPressKey ? p : s);
Console.Write(sb);
char B(int x, int y) =>
(x, y) == selection ? '$' :
(x, y) == from ? '@' :
ToChar(game.Board[x, y]);
static char ToChar(Piece? piece) =>
piece is null ? Vacant :
(piece.Color, piece.Promoted) switch
{
(Black, false) => BlackPiece,
(Black, true) => BlackKing,
(White, false) => WhitePiece,
(White, true) => WhiteKing,
_ => throw new NotImplementedException(),
};
}
(int X, int Y)? HumanMoveSelection(Game game, (int X, int y)? selectionStart = null, (int X, int Y)? from = null)
{
(int X, int Y) selection = selectionStart ?? (3, 3);
while (true)
{
RenderGameState(game, selection: selection, from: from);
switch (Console.ReadKey(true).Key)
{
case ConsoleKey.DownArrow: selection.Y = Math.Max(0, selection.Y - 1); break;
case ConsoleKey.UpArrow: selection.Y = Math.Min(7, selection.Y + 1); break;
case ConsoleKey.LeftArrow: selection.X = Math.Max(0, selection.X - 1); break;
case ConsoleKey.RightArrow: selection.X = Math.Min(7, selection.X + 1); break;
case ConsoleKey.Enter: return selection;
case ConsoleKey.Escape: return null;
}
}
}