-
Notifications
You must be signed in to change notification settings - Fork 0
/
tic_tac_toh_game.cpp
462 lines (362 loc) · 9.65 KB
/
tic_tac_toh_game.cpp
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
454
455
456
457
458
459
460
461
462
#include<iostream> //standerd input output stream
#include<cmath> //using rand() function
#include<string> //using string to hold string values
#include<ctime> //for using time()
#include <cstdlib>
/*
Raj Jani
Tic Tac Toe CPP mini project
Features :
1. Simgle player vs Computer
2. Two player game mode
3. Select player name and x or o to play
4. host to check moves and declare winner and moves
*/
using namespace std;
/*class that contains all function and variable of tic tac tho game */
class TicTactToh {
//variable section
public:
string playerName = "";
string playerTowName = "";
char ch = '0'; //variable for choise
char gameBoard[3][3]; //game board
int board_size = 3;
char playerOne, playerTow; // varibole to hold X Or O
//public function section
public :
void displayBanner(); //function for display banner
void getUserName(); //function for getting player name
void initGameboard(); // function for initialize game board
void playWithHuman(); // function for playing with human
void showGameboard(); //function to show gameboard
char isOccupid(int row,int col); //function for cheking wether bame board postion is occupid or not
bool placeXorO(int row, int col, char opt); //function to place x or O at right empty place
void setPlayer(); //setting player x OR O for tow
void setOnePlayer(); // setting only one player and seocnd one computer
bool isFull(); //function for cheching wether game board is full or not
char check();// functio to check game over and winner
void playWithComputer(); //function for play with computer
};
//function to display banner
void TicTactToh::displayBanner() {
cout <<"****************************************" <<endl;
cout <<"* Welcome to Tic-Tac-Doh! *" <<endl;
cout <<"****************************************" << endl;
}
//function for getting player name
void TicTactToh::getUserName() {
cout << endl;
cout << "Enter your name plaese: "; cin >> playerName;
}
//function for initialize game board
void TicTactToh::initGameboard() {
for (int i = 0; i < board_size; i++)
{
for (int j = 0; j < board_size; j++)
{
gameBoard[i][j] = '-';
}
}
}
void TicTactToh::showGameboard() {
for (int i = 0; i < board_size; i++)
{
for (int j = 0; j < board_size; j++)
{
cout << gameBoard[i][j]<<"\t";
}
cout << endl;
}
}
//function for checking gameoard postion and accepts row and col as peramiter
// it return T as true if postion is occupid
// F as false
char TicTactToh::isOccupid(int row, int col) {
if (gameBoard[row][col] == '-') {
return 'F';
}
else {
return 'T';
}
}
//function for placing x or O at empty postion
//if postion is not empty then aagain ask for place
//opt is for x or O
//retunrs true if successfull move
bool TicTactToh::placeXorO(int row, int col, char opt) {
if (gameBoard[row][col] == '-') {
gameBoard[row][col] = opt;
return true;
}
else
{
cout << "Postion is not empty"<<endl;
return false;
}
}
//function for setting players x or o
//one paramiter number X or O
void TicTactToh::setPlayer() {
int ch = 0;
//geting tow player names
cout << "Please Enter Player one Name: "; cin >> playerName;
cout << "Please Enter player Tow Name: "; cin >> playerTowName;
cout << "Select X Or O for player one (type number 1 = X / 2 = O): "; cin >> ch;
if (ch == 1) {
playerOne = 'X';
playerTow = 'O';
}
else {
playerOne = 'O';
playerTow = 'X';
}
}
//function for playing wiht human
void TicTactToh::playWithHuman() {
int row, col;
int exit = 1;
int turn = 0;
char win = 'f';
initGameboard();
showGameboard();
setPlayer();
do {
if (turn == 0 || turn == 2) {
turn = 1;
cout <<playerName<< "'s turn ("<<playerOne<<")";
}
else
{
turn = 2;
cout <<playerTowName<< "'s turn (" << playerTow << ")";
}
cout << "select row(1-3)"; cin >> row;
cout << " select col(1-3)"; cin >> col;
row = row - 1;
col = col - 1;
if ((row >= 0 && row <= 2) && (col >= 0 && col <= 2)) {
cout << "Nice move"<<endl;
if (turn == 1) {
if (placeXorO(row, col, playerOne) == false) {
turn = 2;
}
}
else
{
if (placeXorO(row, col, playerTow) == false) {
turn = 1;
}
}
showGameboard();
}
else {
cout << "select range bettwen 1 to 3";
}
//calling function to check wether game is over or not
if (isFull() == true) {
cout << "No places left on the borad"<<endl;
cout << "match draw" << endl;
cout << "Game over areu you want to play again (0 = exit)"; cin >> exit;
}
else {
win = check();
if (win == playerOne) {
cout <<playerName<< " Win the Game (" << playerOne << ")" << endl;
exit = 0;
}
else if(win == playerTow)
{
cout <<playerTowName<< "Win the Game (" << playerTow << ")" << endl;
exit = 0;
}
}
} while (exit != 0);
}
//function for checking game board is full or not
//return true if full
//retunr false if empty
bool TicTactToh::isFull() {
for (int i = 0; i < board_size; i++)
{
for (int j = 0; j < board_size; j++)
{
if (gameBoard[i][j] == '-') {
return false;
}
}
}
return true;
}
//function for checking wether otr not game is over
//return true if game over and declare winer
//retunr false if turs are left
char TicTactToh::check()
{
int i;
for (i = 0; i<3; i++) /* check rows */
if (gameBoard[i][0] == gameBoard[i][1] &&
gameBoard[i][0] == gameBoard[i][2]) return gameBoard[i][0];
for (i = 0; i<3; i++) /* check columns */
if (gameBoard[0][i] == gameBoard[1][i] &&
gameBoard[0][i] == gameBoard[2][i]) return gameBoard[0][i];
/* test diagonals */
if (gameBoard[0][0] == gameBoard[1][1] &&
gameBoard[1][1] == gameBoard[2][2])
return gameBoard[0][0];
if (gameBoard[0][2] == gameBoard[1][1] &&
gameBoard[1][1] == gameBoard[2][0])
return gameBoard[0][2];
return ' ';
}
// setting only one player and seocnd one computer
//
void TicTactToh::setOnePlayer() {
int ch = 0;
//geting one player name
cout << "Enter Player Name:"; cin >> playerName;
playerTowName = "Com";
cout << "Select X Or O for player one (type number 1 = X / 2 = O): "; cin >> ch;
if (ch == 1) {
playerOne = 'X';
playerTow = 'O';
}
else {
playerOne = 'O';
playerTow = 'X';
}
}
//functio for play with computer
//compuert will ramdomly select postion and take turn
//
void TicTactToh::playWithComputer() {
int row, col;
int exit = 1;
int turn = 0;
char win = 'f';
//seting random seeds for random number ganaratore
srand(time(NULL));
initGameboard();
showGameboard();
setOnePlayer();
do {
if (turn == 0 || turn == 2) {
turn = 1;
cout << "players One's turn (" << playerOne << ")";
//geting input from one player
cout << "select row(1-3)"; cin >> row;
cout << " select col(1-3)"; cin >> col;
}
else
{
turn = 2;
cout << "Computer's turn (" << playerTow << ")"<<endl;
cout << "Computer Thinking...." << endl;
//getting input from computer
row = (rand() % 3) + 1;
col = (rand() % 3) + 1;
}
row = row - 1;
col = col - 1;
if ((row >= 0 && row <= 2) && (col >= 0 && col <= 2)) {
cout << "Nice move" << endl;
if (turn == 1) {
if (placeXorO(row, col, playerOne) == false) {
turn = 2;
}
}
else
{
if (placeXorO(row, col, playerTow) == false) {
turn = 1;
}
}
showGameboard();
}
else {
cout << "select range bettwen 1 to 3";
}
//calling function to check wether game is over or not
if (isFull() == true) {
cout << "No places left on the borad" << endl;
cout << "match draw" << endl;
cout << "Game over areu you want to play again (0 = exit)"; cin >> exit;
}
else {
win = check();
if (win == playerOne) {
cout <<playerName<< " Win the Game (" << playerOne << ")" << endl;
exit = 0;
}
else if (win == playerTow)
{
cout << "Player Computer Win the Game (" << playerTow << ")" << endl;
exit = 0;
}
}
} while (exit != 0);
}
//main function
int main() {
char choice;
TicTactToh game;
game.displayBanner();
//game.getUserName();
cout << "Welcome to the game " << endl;
cout << "Play with human (h) " << endl;
cout << "play with computer (c)" << endl;
cout << "Exit (e)"<<endl;
cout << "please Enter your choice: ";
//cin >> choice;
do{
system("cls");
game.displayBanner();
//game.getUserName();
cout << "Welcome to the game " << endl;
cout << "Play with human (h) " << endl;
cout << "play with computer (c)" << endl;
cout << "Exit (e)" << endl;
cout << "please Enter your choice: ";
//cin >> choice;
if(cin >> choice)
{
switch (choice)
{
case 'h':
case 'H':
cout << "How are playing two players game. Good luck" << endl;
cout << endl;
game.playWithHuman();
cout << endl;
system("pause");
break;
case 'c':
case 'C':
game.playWithComputer();
cout << endl;
cout << endl;
system("pause");
break;
case 'E':
case 'e':
exit(0);
break;
default:
cout << "Somthing went wrong use only specefid options." << endl;
cout << endl;
break;
}
}
else
{
cout<<"\n\t Input only Char please ! Press Enter To continue";
//getch();
cin.clear();
cin.ignore();
choice = 15 ;
}
}while(choice != 'e' || choice != 'E');
cout << endl;
system("pause");
return 0;
}