-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathOthello.java
197 lines (170 loc) · 6.67 KB
/
Othello.java
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
import java.util.HashSet;
import java.util.Scanner;
/**
* this class make the game playing and print suitable notes for players
* @author Setayesh
*/
public class Othello {
/**
* playing the game...
*
* @param B board class
*/
public static void twoPlayers(Board B) {
char w = 9675;
char b = 9679;
Scanner scan = new Scanner(System.in);
Point move = new Point(-1, -1);
System.out.println("Black Moves first");
int result;
Boolean pass;
String input;
while (true) {
pass = false;
HashSet<Point> blackLocations = B.getLocations(b, w);
HashSet<Point> whiteLocations = B.getLocations(w, b);
B.showLocations(blackLocations, b, w);
result = B.gameResult(whiteLocations, blackLocations);
if (result == -1) {
System.out.println("Black wins: " + B.BScore + ":" + B.WScore);
break;
} else if (result == 0) {
System.out.println("It is a draw.");
break;
} else if (result == 1) {
System.out.println("White wins: " + B.WScore + ":" + B.BScore);
break;
}
if (blackLocations.isEmpty()) {
System.out.println("PASS");
pass = true;
}
if (!pass) {
System.out.println("Black : ");
input = scan.next();
move.x = (Integer.parseInt(input.charAt(0) + "") - 1);//change the char to its int value
move.y = B.coordinateX(input.charAt(1));
while (!blackLocations.contains(move)) {
System.out.println("Invalid move!\n\nBlack : ");
input = scan.next();
move.x = Integer.parseInt((input.charAt(0) + "")) - 1;
move.y = B.coordinateX(input.charAt(1));
}
B.placeMove(move, b, w);
B.updateScores();
System.out.println("\nBlack: " + B.BScore + " White: " + B.WScore);
}
pass = false;
whiteLocations = B.getLocations(w, b);
blackLocations = B.getLocations(b, w);
B.showLocations(whiteLocations, w, b);
result = B.gameResult(whiteLocations, blackLocations);
if (result == -1) {
System.out.println("Black wins: " + B.BScore + ":" + B.WScore);
break;
} else if (result == 0) {
System.out.println("It is a draw.");
break;
} else if (result == 1) {
System.out.println("White wins: " + B.WScore + ":" + B.BScore);
break;
}
if (whiteLocations.isEmpty()) {
System.out.println("PASS");
pass = true;
}
if (!pass) {
System.out.println("White : ");
input = scan.next();
move.x = (Integer.parseInt(input.charAt(0) + "") - 1);
move.y = B.coordinateX(input.charAt(1));
while (!whiteLocations.contains(move)) {
System.out.println("Invalid move!\n\nWhite : ");
input = scan.next();
move.x = (Integer.parseInt(input.charAt(0) + "") - 1);
move.y = B.coordinateX(input.charAt(1));
}
B.placeMove(move, w, b);
B.updateScores();
System.out.println("\nBlack : " + B.BScore + " White : " + B.WScore);
}
}
}
/**
* playin with computer method
*
* @param B Board class
*/
public static void onePlayer(Board B) {
char w = 9675;
char b = 9679;
Scanner scan = new Scanner(System.in);
Point move = new Point(-1, -1);
System.out.println("you Move first!");
//you are black and computer is white
int result;
Boolean pass;
String input;
while (true) {
pass = false;
HashSet<Point> humanLocations = B.getLocations(b, w);
HashSet<Point> computerLocations = B.getLocations(w, b);
B.showLocations(humanLocations, b, w);
result = B.gameResult(computerLocations, humanLocations);
if (result == -1) {
System.out.println("you win: " + B.BScore + ":" + B.WScore);
break;
} else if (result == 0) {
System.out.println("It is a draw.");
break;
} else if (result == 1) {
System.out.println("computer wins: " + B.WScore + ":" + B.BScore);
break;
}
if (humanLocations.isEmpty()) {
System.out.println("PASS");
pass = true;
}
if (!pass) {
System.out.println("you : ");
input = scan.next();
move.x = (Integer.parseInt(input.charAt(0) + "") - 1);//change the char to its int value
move.y = B.coordinateX(input.charAt(1));
while (!humanLocations.contains(move)) {
System.out.println("Invalid move!\n\nyou : ");
input = scan.next();
move.x = Integer.parseInt((input.charAt(0) + "")) - 1;
move.y = B.coordinateX(input.charAt(1));
}
B.placeMove(move, b, w);
B.updateScores();
System.out.println("\nyou: " + B.BScore + " computer: " + B.WScore);
}
pass = false;
computerLocations = B.getLocations(w, b);
humanLocations = B.getLocations(b, w);
B.showLocations(computerLocations, w, b);
result = B.gameResult(computerLocations, humanLocations);
if (result == -1) {
System.out.println("you win : " + B.BScore + ":" + B.WScore);
break;
} else if (result == 0) {
System.out.println("It is a draw.");
break;
} else if (result == 1) {
System.out.println("computer wins : " + B.WScore + ":" + B.BScore);
break;
}
if (computerLocations.isEmpty()) {
System.out.println("PASS");
pass = true;
}
if (!pass) {
System.out.println("computer : ");
B.placeMove(B.computerSmartMove(computerLocations), w, b);
B.updateScores();
System.out.println("\nyou : " + B.BScore + " computer : " + B.WScore);
}
}
}
}