-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMyConnectFour.java
453 lines (407 loc) · 10.3 KB
/
MyConnectFour.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
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
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
import java.io.BufferedReader;
import java.io.InputStreamReader;
public class MyConnectFour {
private BufferedReader input;
private char[][] board;
String errorCode = null;
public MyConnectFour()
{
errorCode = "CF-1";
board = new char[7][6];
try
{
input = new BufferedReader(new InputStreamReader(System.in));
playGame();
}
catch(Exception e)
{
System.out.println("Error code :"+ errorCode +" For details check bug and omission list");
System.exit(1);
}
}
//Main function called from method
private void playGame()
{
System.out.println("Welcome to Connect 4");
System.out.println("There are 2 players red and yellow");
System.out.println("Player 1 is Red, Player 2 is Yellow");
System.out.println("To play the game type in the number of the column you want to drop you counter in");
System.out.println("A player wins by connecting 4 counters in a row - vertically, horizontally or diagonally");
System.out.println("");
printBoard();
Boolean endOfGame = true;
Boolean player_1 = true;
Boolean player_2 = false;
String inputColor = "R";
String userInput = "";
String player = "";
while(endOfGame) //This code block is run until the game is over.
{
if(player_1)
{
System.out.println("Player 1, please select to column :");
userInput = getUserInput();
inputColor = "R";
player = "Player-1";
}
if(player_2)
{
System.out.println("Player 2, please select to column : ");
userInput = getUserInput();
inputColor = "Y";
player = "Player-2";
}
Boolean controlUserInput = controlUserInput(userInput);
while(controlUserInput)
{
System.out.println("You must write column number");
userInput = getUserInput();
controlUserInput = controlUserInput(userInput);
}
Boolean controlColumnStatus = controlColumnStatus(userInput);
while(controlColumnStatus)
{
System.out.println("You can't choose this area, choose another place");
userInput = getUserInput();
controlColumnStatus = controlColumnStatus(userInput);
}
try
{
int column = updateBoard(userInput,inputColor);
printBoard();
endOfGame = checkEndOfGame(inputColor,Integer.parseInt(userInput)-1,column);
}
catch(Exception e)
{
errorCode = "CF-4";
System.out.println("Error code :"+ errorCode +" For details check bug and omission list");
}
if(!endOfGame)
{
System.out.println(player +" won the game.Congratulations!");
}
if(player_1)
{
player_1 = false;
player_2 = true;
}
else
{
player_1 = true;
player_2 = false;
}
}
}
//The part where the game is checked whether there is a winner or not.
private Boolean checkEndOfGame(String color,Integer firstDimension,Integer secondDimension)
{
int colorNumber = 0;
Boolean returnValue = true;
char currentColor = color.charAt(0);
int rightAndLeftMatchNumber = 0;
int downMatchNumber = 0;
int leftDownRightUpMatchNumber = 0;
int leftUpRightDownMatchNumber = 0;
Boolean leftCheck = true;
Boolean rightCheck = true;
Boolean downCheck = true;
Boolean leftDownCheck = true;
Boolean rightUpCheck = true;
Boolean leftUpCheck = true;
Boolean rightDownCheck = true;
for(int i=0;i<=board.length-1;i++)
{
for(int j=0;j<=board[i].length-1;j++)
{
if(currentColor == board[i][j])
{
colorNumber++;
}
}
}
if(colorNumber >=4)
{
//Left check
int leftFirstDimension = firstDimension-1;
while(leftCheck)
{
try
{
if(currentColor == board[leftFirstDimension][secondDimension])
{
rightAndLeftMatchNumber++;
leftFirstDimension--;
}
else
{
leftCheck = false;
}
}
catch(Exception e)
{
leftCheck = false;
}
}
if(rightAndLeftMatchNumber == 3)
{
return false;
}
//Right check
int rightFirstDimension = firstDimension+1;
while(rightCheck)
{
try
{
if(currentColor == board[rightFirstDimension][secondDimension])
{
rightAndLeftMatchNumber++;
rightFirstDimension++;
}
else
{
rightCheck = false;
}
}
catch(Exception e)
{
rightCheck = false;
}
}
if(rightAndLeftMatchNumber == 3)
{
return false;
}
//Down check
int downSecondDimension = secondDimension+1;
while(downCheck)
{
try
{
if(currentColor == board[firstDimension][downSecondDimension])
{
downMatchNumber++;
downSecondDimension++;
}
else
{
downCheck = false;
}
}
catch(Exception e)
{
downCheck = false;
}
}
if(downMatchNumber == 3)
{
return false;
}
//Left-Down check
leftFirstDimension = firstDimension-1;
downSecondDimension = secondDimension+1;
while(leftDownCheck)
{
try
{
if(currentColor == board[leftFirstDimension][downSecondDimension])
{
leftDownRightUpMatchNumber++;
leftFirstDimension--;
downSecondDimension++;
}
else
{
leftDownCheck = false;
}
}
catch(Exception e)
{
leftDownCheck = false;
}
}
if(leftDownRightUpMatchNumber == 3)
{
return false;
}
//Right-Up check
rightFirstDimension = firstDimension+1;
int upSecondDimension = secondDimension-1;
while(rightUpCheck)
{
try
{
if(currentColor == board[rightFirstDimension][upSecondDimension])
{
leftDownRightUpMatchNumber++;
rightFirstDimension++;
upSecondDimension--;
}
else
{
rightUpCheck = false;
}
}
catch(Exception e)
{
rightUpCheck = false;
}
}
if(leftDownRightUpMatchNumber == 3)
{
return false;
}
//Left-Up check
leftFirstDimension = firstDimension-1;
upSecondDimension = secondDimension-1;
while(leftUpCheck)
{
try
{
if(currentColor == board[leftFirstDimension][upSecondDimension])
{
leftUpRightDownMatchNumber++;
leftFirstDimension--;
upSecondDimension--;
}
else
{
leftUpCheck = false;
}
}
catch(Exception e)
{
leftUpCheck = false;
}
}
if(leftUpRightDownMatchNumber == 3)
{
return false;
}
//Right-Down check
rightFirstDimension = firstDimension+1;
downSecondDimension = secondDimension+1;
while(rightDownCheck)
{
try
{
if(currentColor == board[rightFirstDimension][downSecondDimension])
{
leftUpRightDownMatchNumber++;
rightFirstDimension++;
downSecondDimension++;
}
else
{
rightDownCheck = false;
}
}
catch(Exception e)
{
rightDownCheck = false;
}
}
}
return true;
}
//The received input is thrown into the array.
private int updateBoard(String input,String color)
{
int column = board[0].length-1;
int row = Integer.parseInt(input)-1;
char value;
for(;column>=0;column--)
{
if((int)board[row][column]!=0)
{
;
}
else
{
board[row][column] = color.charAt(0);
return column;
}
}
return column;
}
//Checking if the column is empty is done here.
private Boolean controlColumnStatus(String input)
{
Boolean returnValue = false;
int column = 1;
errorCode = "CF-3";
try
{
column = Integer.parseInt(input)-1;
}
catch(Exception e)
{
System.out.println("Error code :"+ errorCode +" For details check bug and omission list");
}
if(board[column][0] != 0)
{
returnValue =true;
}
return returnValue;
}
//The control of the value received from the user is done here.
private Boolean controlUserInput(String input)
{
Boolean returnValue = false;
if(input.equals("1") || input.equals("2") || input.equals("3") || input.equals("4")
|| input.equals("5") || input.equals("6") ||input.equals("7"))
{
returnValue =false;
}
else
{
returnValue =true;
}
return returnValue;
}
//The value is taken from the user.
private String getUserInput(){
String toReturn = null;
errorCode = "CF-2";
try
{
toReturn = input.readLine();
}
catch(Exception e)
{
System.out.println("Error code :"+ errorCode +" For details check bug and omission list");
}
return toReturn;
}
//The current state of the board is printed on the screen.
private void printBoard()
{
try
{
for(int i=0; i<board.length-1; i++)
{
for(int j=0; j<=board[i].length; j++)
{
if(board[j][i] == 'R')
{
System.out.print("| R ");
}
else if(board[j][i] == 'Y')
{
System.out.print("| Y ");
}
else
{
System.out.print("| ");
}
}
System.out.println("|");
}
System.out.println(" 1 2 3 4 5 6 7");
}
catch(Exception e)
{
errorCode = "CF-5";
System.out.println("Error code :"+ errorCode +" For details check bug and omission list");
}
}
}