-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtictactoe_v1.cpp
212 lines (175 loc) · 4.46 KB
/
tictactoe_v1.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
#include<iostream>
using namespace std;
//declare functions
void togglePlayer();
char checkForWin();
//define a matrix to hold all positions
char matrix[3][3] = {'1', '2', '3', '4', '5', '6', '7', '8', '9'};
//define current user
char currentPlayer = 'X';
//total number of input taken to check for draw
int totalTry = 0;
//display the tictaktoe game current situations
void draw() {
for (int i = 0; i < 3; i++) {
for (int j = 0; j < 3; j++) {
cout << matrix[i][j] << " ";
}
cout << endl;
}
}
//take the input and place it to proper place
void input() {
int inputValue;
bool toggelUser = false;
cout << "Mr. " << currentPlayer << " Enter the field value: ";
cin >> inputValue;
if (inputValue == 1) {
if (matrix[0][0] == '1') {
matrix[0][0] = currentPlayer;
toggelUser = true;
}
else
cout << "Value alread entered try for other fields" << endl;
}
if (inputValue == 2) {
if (matrix[0][1] == '2') {
matrix[0][1] = currentPlayer;
toggelUser = true;
}
else
cout << "Value alread entered try for other fields" << endl;
}
if (inputValue == 3) {
if (matrix[0][2] == '3') {
matrix[0][2] = currentPlayer;
toggelUser = true;
}
else
cout << "Value alread entered try for other fields" << endl;
}
if (inputValue == 4) {
if (matrix[1][0] == '4') {
matrix[1][0] = currentPlayer;
toggelUser = true;
}
else
cout << "Value alread entered try for other fields" << endl;
}
if (inputValue == 5) {
if (matrix[1][1] == '5') {
matrix[1][1] = currentPlayer;
toggelUser = true;
}
else
cout << "Value alread entered try for other fields" << endl;
}
if (inputValue == 6) {
if (matrix[1][2] == '6') {
matrix[1][2] = currentPlayer;
toggelUser = true;
}
else
cout << "Value alread entered try for other fields" << endl;
}
if (inputValue == 7) {
if (matrix[2][0] == '7') {
matrix[2][0] = currentPlayer;
toggelUser = true;
}
else
cout << "Value alread entered try for other fields" << endl;
}
if (inputValue == 8) {
if (matrix[2][1] == '8') {
matrix[2][1] = currentPlayer;
toggelUser = true;
}
else
cout << "Value alread entered try for other fields" << endl;
}
if (inputValue == 9) {
if (matrix[2][2] == '9') {
matrix[2][2] = currentPlayer;
toggelUser = true;
}
else
cout << "Value alread entered try for other fields" << endl;
}
//after each input toggle player
if (toggelUser)
togglePlayer();
else { //call input again to choose proper field
totalTry--;
input();
}
}
void togglePlayer() {
if (currentPlayer == 'X')
currentPlayer = 'O';
else
currentPlayer = 'X';
}
char checkForWin() {
//for user X
//if any row completed
if (matrix[0][0] == 'X' && matrix[0][1] == 'X' && matrix[0][2] == 'X')
return 'X';
if (matrix[1][0] == 'X' && matrix[1][1] == 'X' && matrix[1][2] == 'X')
return 'X';
if (matrix[2][0] == 'X' && matrix[2][1] == 'X' && matrix[2][2] == 'X')
return 'X';
//if any column completed
if (matrix[0][0] == 'X' && matrix[1][0] == 'X' && matrix[2][0] == 'X')
return 'X';
if (matrix[0][1] == 'X' && matrix[1][1] == 'X' && matrix[2][1] == 'X')
return 'X';
if (matrix[0][2] == 'X' && matrix[1][2] == 'X' && matrix[2][2] == 'X')
return 'X';
//if any daigonal completed
if (matrix[0][0] == 'X' && matrix[1][1] == 'X' && matrix[2][2] == 'X')
return 'X';
if (matrix[0][2] == 'X' && matrix[1][1] == 'X' && matrix[2][0] == 'X')
return 'X';
//for user O
//if any row completed
if (matrix[0][0] == 'O' && matrix[0][1] == 'O' && matrix[0][2] == 'O')
return 'O';
if (matrix[1][0] == 'O' && matrix[1][1] == 'O' && matrix[1][2] == 'O')
return 'O';
if (matrix[2][0] == 'O' && matrix[2][1] == 'O' && matrix[2][2] == 'O')
return 'O';
//if any column completed
if (matrix[0][0] == 'O' && matrix[1][0] == 'O' && matrix[2][0] == 'O')
return 'O';
if (matrix[0][1] == 'O' && matrix[1][1] == 'O' && matrix[2][1] == 'O')
return 'O';
if (matrix[0][2] == 'O' && matrix[1][2] == 'O' && matrix[2][2] == 'O')
return 'O';
//if any daigonal completed
if (matrix[0][0] == 'O' && matrix[1][1] == 'O' && matrix[2][2] == 'O')
return 'O';
if (matrix[0][2] == 'O' && matrix[1][1] == 'O' && matrix[2][0] == 'O')
return 'O';
return 'N';
}
int main() {
char isWon;
draw();
//keep playing
while (1) {
totalTry++;
input();
draw();
isWon = checkForWin();
if (isWon != 'N') {
cout << isWon << " Won!!!!" << endl;;
break;
}
else if (totalTry == 9 && isWon == 'N') {
cout << "It's Draw !!!" << endl;
break;
}
}
return 0;
}