-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathOXOController.java
More file actions
287 lines (237 loc) · 9.49 KB
/
OXOController.java
File metadata and controls
287 lines (237 loc) · 9.49 KB
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
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
import OXOExceptions.*;
class OXOController
{
OXOModel gameModel;
private int rowNumber;
private int colNumber;
private int playerCurrent;
private char letterCurrent;
final public int ASCII_a = 97;
final public int MAX_ROWS = 8;
public OXOController(OXOModel model)
{
gameModel = model;
playerCurrent = 0;
gameModel.setCurrentPlayer(gameModel.getPlayerByNumber(playerCurrent));
letterCurrent = ' ';
rowNumber = -1;
colNumber = -1;
}
public void handleIncomingCommand(String command) throws OXOMoveException
{
if(gameModel.getWinner() == null) {
char rowChar, colChar;
RowOrColumn type;
//----------------------------------------------------------
// Invalid Length Identifier Exception
//----------------------------------------------------------
if (command.length() != 2) {
throw new InvalidIdentifierLengthException(command.length());
}
//----------------------------------------------------------
// Invalid Character Identifier Exception
//----------------------------------------------------------
// Checks for invalid row character
rowChar = command.charAt(0);
type = RowOrColumn.ROW;
if (!Character.isLetter(rowChar)) {
throw new InvalidIdentifierCharacterException(rowChar, type);
}
// Checks for invalid column character
colChar = command.charAt(1);
type = RowOrColumn.COLUMN;
if (!Character.isDigit(colChar)) {
throw new InvalidIdentifierCharacterException(colChar, type);
}
//----------------------------------------------------------
// Outside Cell Range Exception
//----------------------------------------------------------
// Checks for row out of bounds
type = RowOrColumn.ROW;
if (Character.isUpperCase(rowChar)) {
rowChar = Character.toLowerCase(rowChar);
}
rowNumber = (int) (rowChar - ASCII_a);
if ((rowNumber < 0) || rowNumber >= gameModel.getNumberOfRows() || (rowNumber > MAX_ROWS) ) {
throw new OutsideCellRangeException(rowNumber+1, type);
}
// Checks for column out of bounds
type = RowOrColumn.COLUMN;
colNumber = Character.getNumericValue(colChar) - 1;
if ((colNumber < 0) || (colNumber >= gameModel.getNumberOfColumns()) ) {
throw new OutsideCellRangeException(colNumber+1, type);
}
//----------------------------------------------------------
// Cell Already Taken Exception
//----------------------------------------------------------
if (gameModel.getCellOwner(rowNumber, colNumber) != null) {
throw new CellAlreadyTakenException(rowNumber+1, colNumber+1);
}
//----------------------------------------------------------
// Set OXOModel Cell Owner
//----------------------------------------------------------
gameModel.setCellOwner(rowNumber, colNumber, gameModel.getCurrentPlayer());
letterCurrent = gameModel.getPlayerByNumber(playerCurrent).getPlayingLetter();
//----------------------------------------------------------
// Win detection
//----------------------------------------------------------
if (checkForWin()) {
gameModel.setWinner(gameModel.getCurrentPlayer());
}
//----------------------------------------------------------
// Draw detection
//----------------------------------------------------------
if (checkForDraw()) {
gameModel.setGameDrawn();
}
// Increments current player and sets current player to the next one
playerCurrent++;
if (playerCurrent >= gameModel.getNumberOfPlayers()) {
playerCurrent = 0;
}
gameModel.setCurrentPlayer(gameModel.getPlayerByNumber(playerCurrent));
}
}
public boolean checkForWin()
{
if ( winHorizontal() || winVertical() || winDiagonal() ){
return true;
}
else {
return false;
}
}
public boolean winHorizontal()
{
int iterator_column;
int counter = 1;
iterator_column = colNumber - 1;
while( iterator_column >= 0 ){
if ((gameModel.getCellOwner(rowNumber, iterator_column) == null) ||
(gameModel.getCellOwner(rowNumber, iterator_column).getPlayingLetter() != letterCurrent)){
break;
}
counter++;
iterator_column--;
}
iterator_column = colNumber + 1;
while( iterator_column < gameModel.getNumberOfColumns() ){
if ((gameModel.getCellOwner(rowNumber, iterator_column) == null) ||
(gameModel.getCellOwner(rowNumber, iterator_column).getPlayingLetter() != letterCurrent)){
break;
}
counter++;
iterator_column++;
}
if (counter >= gameModel.getWinThreshold()){
return true;
}
return false;
}
public boolean winVertical()
{
int iterator_row;
int counter = 1;
iterator_row = rowNumber - 1;
while( iterator_row >= 0 ){
if ((gameModel.getCellOwner(iterator_row, colNumber) == null) ||
(gameModel.getCellOwner(iterator_row, colNumber).getPlayingLetter() != letterCurrent)){
break;
}
counter++;
iterator_row--;
}
iterator_row = rowNumber + 1;
while( iterator_row < gameModel.getNumberOfRows() ){
if ((gameModel.getCellOwner(iterator_row, colNumber) == null) ||
(gameModel.getCellOwner(iterator_row, colNumber).getPlayingLetter() != letterCurrent)){
break;
}
counter++;
iterator_row++;
}
if (counter >= gameModel.getWinThreshold()){
return true;
}
return false;
}
public boolean winDiagonal()
{
int iterator_row;
int iterator_column;
int counter;
//----------------------------------------------------------
// Counts the number of contiguous cells from the
// top-left direction to the bottom-right direction
//----------------------------------------------------------
iterator_row = rowNumber - 1;
iterator_column = colNumber - 1;
counter = 1;
while( (iterator_row >= 0) && (iterator_column >= 0) ){
if ((gameModel.getCellOwner(iterator_row, iterator_column) == null) ||
(gameModel.getCellOwner(iterator_row, iterator_column).getPlayingLetter() != letterCurrent)) {
break;
}
iterator_row--;
iterator_column--;
counter++;
}
iterator_row = rowNumber + 1;
iterator_column = colNumber + 1;
while( (iterator_row < gameModel.getNumberOfRows()) && (iterator_column < gameModel.getNumberOfColumns()) ){
if ( (gameModel.getCellOwner(iterator_row, iterator_column) == null) ||
(gameModel.getCellOwner(iterator_row, iterator_column).getPlayingLetter() != letterCurrent) ) {
break;
}
iterator_row++;
iterator_column++;
counter++;
}
if(counter >= gameModel.getWinThreshold()){
return true;
}
//----------------------------------------------------------
// Counts the number of contiguous cells from the top-right
// direction to the bottom left direction
//----------------------------------------------------------
iterator_row = rowNumber + 1;
iterator_column = colNumber - 1;
counter = 1;
while( (iterator_row < gameModel.getNumberOfRows()) && (iterator_column >= 0) ){
if ( (gameModel.getCellOwner(iterator_row, iterator_column) == null) ||
(gameModel.getCellOwner(iterator_row, iterator_column).getPlayingLetter() != letterCurrent)) {
break;
}
iterator_row++;
iterator_column--;
counter++;
}
iterator_row = rowNumber - 1;
iterator_column = colNumber + 1;
while( (iterator_row >= 0) && (iterator_column < gameModel.getNumberOfColumns()) ){
if ( (gameModel.getCellOwner(iterator_row, iterator_column) == null) ||
(gameModel.getCellOwner(iterator_row, iterator_column).getPlayingLetter() != letterCurrent)) {
break;
}
iterator_row--;
iterator_column++;
counter++;
}
if(counter >= gameModel.getWinThreshold()){
return true;
}
return false;
}
public boolean checkForDraw()
{
int j, i;
for (j = 0; j < gameModel.getNumberOfRows(); j++){
for (i = 0; i < gameModel.getNumberOfColumns(); i++){
if (gameModel.getCellOwner(j, i) == null){
return false;
}
}
}
return true;
}
}