This repository was archived by the owner on Aug 5, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathScore.cs
78 lines (63 loc) · 2.52 KB
/
Score.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
using System;
using System.Collections.Generic;
using System.Text;
using System.Linq;
namespace Lab3
{
public class Score : IScore
{
string compositeWinString = "";
string leafWinString = "";
int xLeafWins = 0;
int oLeafWins = 0;
public void PrintScore(LeafBoard leafBoard)
{
Console.WriteLine("");
foreach (ComponentBoard.Coordinate coordinate in leafBoard.winList)
{
leafWinString += coordinate.ToString() + ", ";
}
Console.WriteLine(leafWinString.Substring(0, leafWinString.Length - 2));
switch (leafBoard.WonBy)
{
case ComponentBoard.Player.X:
Console.WriteLine("1, 0");
break;
case ComponentBoard.Player.O:
Console.WriteLine("0, 1");
break;
}
}
public void PrintScore(CompositeBoard compositeBoard)
{
xLeafWins = compositeBoard.Grid.Where(x => x.WonBy == ComponentBoard.Player.X).Count();
oLeafWins = compositeBoard.Grid.Where(x => x.WonBy == ComponentBoard.Player.O).Count();
foreach (ComponentBoard.Coordinate largeCoordinate in compositeBoard.winList)
{
compositeWinString += largeCoordinate.ToString() + ", ";
foreach (ComponentBoard.Coordinate leafcoordinate in compositeBoard.Grid[(int)largeCoordinate].winList)
{
leafWinString += largeCoordinate.ToString() + "." + leafcoordinate.ToString() + ", ";
}
}
Console.WriteLine(compositeWinString.Substring(0, compositeWinString.Length - 2));
Console.WriteLine(leafWinString.Substring(0, leafWinString.Length - 2));
switch (compositeBoard.WonBy)
{
case ComponentBoard.Player.X:
Console.WriteLine("1" + "." + xLeafWins + ", " + "0" + "." + oLeafWins);
break;
case ComponentBoard.Player.O:
Console.WriteLine("0" + "." + xLeafWins + ", " + "1" + "." + oLeafWins);
break;
case ComponentBoard.Player.None:
Console.WriteLine("0" + "." + xLeafWins + ", " + "0" + "." + oLeafWins);
break;
}
}
public void PrintScore(ComponentBoard componentBoard)
{
throw new NotImplementedException();
}
}
}