-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMain.java
More file actions
330 lines (266 loc) · 8.33 KB
/
Main.java
File metadata and controls
330 lines (266 loc) · 8.33 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
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
import java.util.ArrayList;
import java.util.Scanner;
class UI
{
public static final String PINK = "\u001B[35m";
public static final String HOT_PINK = "\u001B[38;5;201m";
public static final String RESET = "\u001B[0m";
}
class TicTacToe
{
private final int ROWS = 3;
private final int COLS = 3;
private ArrayList<Integer> MOVES_USED = new ArrayList<>();
private char[][] BOARD = {
{'-', '-', '-'},
{'-', '-', '-'},
{'-', '-', '-'}
};
private void PrintBOARD(boolean WITH_ROWNUMS, String COLOR)
{
if (COLOR!=null)
{
System.out.println(COLOR);
}
int num = 1;
System.out.printf("\n");
for (int i = 0; i < ROWS; i++)
{
System.out.printf("+-----");
}
System.out.printf("+\n");
for (int i = 0; i < ROWS; i++)
{
for (int j = 0; j < COLS; j++)
{
if (!WITH_ROWNUMS)
{
System.out.printf("| %-4c", BOARD[i][j]);
}
else
{
System.out.printf("| %-4d", num++);
}
}
System.out.print("|\n");
for (int k = 0; k < ROWS; k++)
{
System.out.printf("+-----");
}
System.out.printf("+\n");
}
System.out.printf("\n");
System.out.println(UI.RESET);
}
private int GetValidInt(Scanner UserInput)
{
while (true)
{
String input = UserInput.nextLine();
try
{
return Integer.parseInt(input);
}
catch (NumberFormatException e)
{
System.out.print("[ERROR] -> Enter a valid number: ");
}
}
}
private char GetUserSymbolChoice(Scanner UserInput)
{
while (true)
{
System.out.print("player 1 -> enter choice (X / O) : ");
String input = UserInput.nextLine().trim();
if (input.length()==1)
{
char choice = Character.toUpperCase(input.charAt(0));
if (choice=='X' || choice=='O')
{
return choice;
}
}
System.out.println("[ERROR] -> enter a valid choice\nvalid choice -> [X / O]\n");
}
}
public String IsSomeOneWinning(char Player)
{
for (int i = 0; i < 3; i++)
{
if (BOARD[i][0]==Player && BOARD[i][1]==Player && BOARD[i][2]==Player)
{
return "row " + (i + 1);
}
if (BOARD[0][i]==Player && BOARD[1][i]==Player && BOARD[2][i]==Player)
{
return "column " + (i + 1);
}
}
if (BOARD[0][0]==Player && BOARD[1][1]==Player && BOARD[2][2]==Player)
{
return "main diagonal";
}
if (BOARD[0][2]==Player && BOARD[1][1]==Player && BOARD[2][0]==Player)
{
return "anti diagonal";
}
return null;
}
private void PrintWinningVisual(String reason, String COLOR)
{
if (COLOR!=null)
{
System.out.println(COLOR);
}
System.out.println("\nWINNING PATH HIGHLIGHT (-> " + reason + ") : ");
for (int i = 0; i < 3; i++)
{
System.out.println("+-----+-----+-----+");
for (int j = 0; j < 3; j++)
{
boolean part = false;
if (reason.contains("row " + (i + 1)))
{
part = true;
}
if (reason.contains("column " + (j + 1)))
{
part = true;
}
if (reason.equals("main diagonal") && i==j)
{
part = true;
}
if (reason.equals("anti diagonal") && i + j==2)
{
part = true;
}
System.out.print(part ? "| ^ ":"| ");
}
System.out.println("|");
}
System.out.println("+-----+-----+-----+");
System.out.println(UI.RESET);
}
private boolean IsMoveTaken(int move)
{
int size = MOVES_USED.size();
for (int i = 0; i < size; i++)
{
if (MOVES_USED.get(i)==move)
{
return true;
}
}
return false;
}
private void MakeMove(Scanner UserInput, char symbol)
{
while (true)
{
System.out.print("enter position [1 - 9] for " + symbol + " : ");
int position = GetValidInt(UserInput);
if (position >= 1 && position <= 9)
{
if (!IsMoveTaken(position))
{
int row = (position - 1) / 3;
int col = (position - 1) % 3;
BOARD[row][col] = symbol;
MOVES_USED.add(position);
System.out.println("move accepted !");
break;
}
else
{
System.out.println("[ERROR] -> position " + position + " is taken");
System.out.println("move REJECTED !\n");
}
}
else
{
System.out.println("[ERROR] -> valid range is [1 - 9]");
System.out.println("move REJECTED !\n");
}
}
}
public void execute(Scanner UserInput)
{
String ProjectGuide = "\nA minimal, simple, terminal-based Tic-Tac-Toe game written in Java,\nsupporting two-player gameplay with colored, clean console output,\ninput validation and win patterns (row, col, main-diagonal, anti-diagonal)\n\n";
System.out.println(ProjectGuide);
System.out.println("\nnumbers corresponding to each block in the grid : ");
PrintBOARD(true, UI.PINK);
char P1 = GetUserSymbolChoice(UserInput);
char P2 = (P1=='X') ? 'O':'X';
char CurrentPlayer = P1;
int PlayerNum = 1;
while (true)
{
System.out.println("\n----- PLAYER -> " + PlayerNum + " with choice -> (" + CurrentPlayer + ") -----");
MakeMove(UserInput, CurrentPlayer);
PrintBOARD(false, null);
String WinStatus = IsSomeOneWinning(CurrentPlayer);
if (WinStatus!=null)
{
PrintBOARD(false, UI.HOT_PINK);
System.out.println("====================================");
System.out.println("PLAYER -> " + PlayerNum + " with choice -> " + CurrentPlayer + " WINS !");
PrintWinningVisual(WinStatus, UI.HOT_PINK);
System.out.println("====================================");
break;
}
if (MOVES_USED.size()==9)
{
System.out.println("----- MATCH DRAW ! -----");
break;
}
CurrentPlayer = (CurrentPlayer==P1) ? P2:P1;
PlayerNum = (PlayerNum==1) ? 2:1;
}
}
private void ResetGame()
{
MOVES_USED.clear();
for (int i = 0; i < ROWS; i++)
{
for (int j = 0; j < COLS; j++)
{
BOARD[i][j] = '-';
}
}
}
public TicTacToe()
{
Scanner UserInput = new Scanner(System.in);
while (true)
{
ResetGame();
execute(UserInput);
String choice;
while (true)
{
System.out.print("\nDO YOU WANT TO PLAY AGAIN? [Y / N] : ");
choice = UserInput.nextLine().trim();
if (choice.equals("y") || choice.equals("Y") || choice.equals("n") || choice.equals("N"))
{
break;
}
System.out.println("[ERROR] -> INVALID INPUT !\nvalid input -> [Y / N]");
}
if (choice.equals("n") || choice.equals("N"))
{
System.out.println("THANKS FOR PLAYING\n");
break;
}
}
UserInput.close();
}
}
public class Main
{
public static void main(String[] args)
{
new TicTacToe();
}
}