-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMain.java
172 lines (155 loc) · 6.15 KB
/
Main.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
package tictactoe;
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
// Scanner scanner = new Scanner(System.in);
String startingPlays = "_________";
//Create initial 2D array and print initial board
//board[3] = {countOfXs, countOfOs, null}
String[][] board = createStartingBoard(startingPlays);
printBoard(board);
//Loop to prompt user for input and evaluate state of game
int StateOfGame = 0;
// player guide: 0 = O, 1 = X
int player = 1;
while (StateOfGame == 0 || StateOfGame == 4) {
int [] coordinates = getInput(board);
board = nextPlay(board, coordinates, player);
int countOfXs = Integer.valueOf(board[3][0]);
int countOfOs = Integer.valueOf(board[3][1]);
printBoard(board);
StateOfGame = checkStateOfGame(board, countOfOs, countOfXs);
switch (player) {
case 0:
player = 1;
break;
case 1:
player = 0;
break;
}
}
printStateOfGame(StateOfGame);
}
public static String[][] createStartingBoard(String input) {
String[][] initialBoard = new String[4][3];
int countOfOs = 0;
int countOfXs = 0;
int startLine = 0;
for (int i = 0; i < initialBoard.length - 1; i++) {
char[] row = new char[initialBoard[i].length];
input.getChars(startLine, startLine + 3, row, 0);
startLine += 3;
for (int j = 0; j < initialBoard[i].length; j++) {
initialBoard[i][j] = String.valueOf(row[j]);
countOfOs = "O".equals(initialBoard[i][j]) ? ++countOfOs : countOfOs;
countOfXs = "X".equals(initialBoard[i][j]) ? ++countOfXs : countOfXs;
}
}
initialBoard[3][0] = Integer.toString(countOfXs);
initialBoard[3][1] = Integer.toString(countOfOs);
return initialBoard;
}
public static void printBoard(String[][] board) {
System.out.println("---------");
for (int i = 0; i < board.length - 1; i++) {
System.out.print("| ");
for (int j = 0; j < board[i].length; j++) {
//board[i][j] = board[i][j] == null ? "_" : board[i][j];
System.out.print(board[i][j] + " ");
}
System.out.println("|");
}
System.out.println("---------");
}
public static int checkStateOfGame(String[][] board, int countOfOs, int countOfXs) {
int winStates = 0;
String winner = "";
// Check for vertical and horizontal victory
for (int i = 0; i < board.length - 1; i++) {
if ("_".equals(board[i][0]) || "_".equals(board[0][i])) {
continue;
}
if (board[0][i].equals(board[1][i]) && board[2][i].equals(board[0][i])) {
winStates += 1;
winner = board[0][i];
}
if (board[i][0].equals(board[i][1]) && board[i][0].equals(board[i][2])) {
winStates += 1;
winner = board[i][0];
}
}
//diagonal victory
if (board[1][1].equals(board[0][0]) && board[1][1].equals(board[2][2]) && !"_".equals(board[1][1])) {
winStates += 1;
winner = board[1][1];
}
if (board[1][1].equals(board[0][2]) && board[1][1].equals(board[2][0]) && !"_".equals(board[1][1])) {
winStates += 1;
winner = board[1][1];
}
// return game state
if (winStates > 1 || countOfOs - countOfXs > 1 || countOfXs - countOfOs > 1) { //Impossible state
return 4;
} else if (winStates == 1) {
if ("X".equals(winner)) {
return 1; // X wins
} else return 2; // O wins
} else if (winStates == 0 && countOfOs + countOfXs == 9) { //Draw
return 3;
} else {
return 0; //Game not finished
}
}
public static int[] getInput(String[][] board) {
Scanner scanner = new Scanner(System.in);
int[] coordinates = new int[2];
boolean validInput = false;
//System.out.println("Please provide valid coordinates for your next move (two numbers between 1 and 3): ");
while (!validInput) {
while (!scanner.hasNextInt()) {
System.out.println("You should enter numbers!: ");
scanner.nextLine();
}
coordinates[0] = scanner.nextInt() - 1; // X Axis
coordinates[1] = scanner.nextInt() - 1; // Y Axis
if (coordinates[0] >= 0 && coordinates[0] <= 2 && coordinates[1] >= 0 && coordinates[1] <= 2) {
if (!"_".equals(board[coordinates[0]][coordinates[1]])) {
System.out.println("This cell is occupied! Choose another one!");
continue;
}
validInput = true;
return coordinates;
}
System.out.println("Coordinates should be from 1 to 3!");
}
return coordinates;
}
public static String[][] nextPlay(String[][] board, int[] coordinates, int player) {
board[coordinates[0]][coordinates[1]] = player == 1 ? "X" : "O";
if (player == 1) {
board[3][0] = String.valueOf(Integer.valueOf(board[3][0]) + 1); //increment CountOfXs
} else {
board[3][1] = String.valueOf(Integer.valueOf(board[3][1]) + 1); //increment CountOfOs
}
return board;
}
public static void printStateOfGame(int state) {
switch (state) {
case 0:
//System.out.println("Next player's turn!");
break;
case 1:
System.out.println("X wins!");
break;
case 2:
System.out.println("O wins!");
break;
case 3:
System.out.println("Draw!");
break;
case 4:
System.out.println("Impossible...");
break;
}
}
}