-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.cpp
More file actions
256 lines (234 loc) · 7.34 KB
/
Copy pathmain.cpp
File metadata and controls
256 lines (234 loc) · 7.34 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
#include <iostream>
using namespace std;
char matrix[3][3] = {'1','2','3','4','5','6','7','8','9'}; //main matrix 3x3 to start game
char player = 'X';
int counter_gameplay; //counter for game if counter == 9 game is finished
string name1,name2,mainname; //name of players
void draw(){ //show matrix in real time
system("cls"); //replace new matrix
cout<<"\n";
for(int i=0;i<3;i++){
for(int j=0;j<3;j++){
cout<<" | "<<matrix[i][j]<<" | ";
}
if(i == 2){
break;
}
cout<<endl<<" -------------------"<<endl;
}
}
void input(){ //this function get a number 1 until 9 and check if input is correct write o and x in matrix
int get_input;
cout<<"\n\n # Hey \""<<mainname<<"\", "<<"You are \""<<player<<"\", Press the number of the field please: ";
cin>>get_input;
if(get_input == 1){
if(matrix[0][0] == '1'){
matrix[0][0] = player;
}
else{
cout<<"\n ----*** Feild already in use try again ***----"<<endl;
input();
}
}
else if(get_input == 2){
if(matrix[0][1] == '2'){
matrix[0][1] = player;
}
else{
cout<<"\n ----*** Feild already in use try again ***----"<<endl;
input();
}
}
else if(get_input == 3){
if(matrix[0][2] == '3'){
matrix[0][2] = player;
}
else{
cout<<"\n ----*** Feild already in use try again ***----"<<endl;
input();
}
}
else if(get_input == 4){
if(matrix[1][0] == '4'){
matrix[1][0] = player;
}
else{
cout<<"\n ----*** Feild already in use try again ***----"<<endl;
input();
}
}
else if(get_input == 5){
if(matrix[1][1] == '5'){
matrix[1][1] = player;
}
else{
cout<<"\n ----*** Feild already in use try again ***----"<<endl;
input();
}
}
else if(get_input == 6){
if(matrix[1][2] == '6'){
matrix[1][2] = player;
}
else{
cout<<"\n ----*** Feild already in use try again ***----"<<endl;
input();
}
}
else if(get_input == 7){
if(matrix[2][0] == '7'){
matrix[2][0] = player;
}
else{
cout<<"\n ----*** Feild already in use try again ***----"<<endl;
input();
}
}
else if(get_input == 8){
if(matrix[2][1] == '8'){
matrix[2][1] = player;
}
else{
cout<<"\n ----*** Feild already in use try again ***----"<<endl;
input();
}
}
else if(get_input == 9){
if(matrix[2][2] == '9'){
matrix[2][2] = player;
}
else{
cout<<"\n ----*** Feild already in use try again ***----"<<endl;
input();
}
}
else if(get_input != 1,get_input != 2,get_input != 3,get_input != 4,get_input != 5,get_input != 6,get_input != 7,get_input != 8,get_input != 9){ //check input to if get wrong input show error to player to enter again number
cout<<"\n ----*** Wrong input try again ***----"<<endl;
input();
}
}
void change_player(){
if(player == 'X'){
player = 'O';
}
else{
player = 'X';
}
}
void change_name_player(){
if(mainname == name1){
mainname = name2;
}
else if(mainname == name2){
mainname = name1;
}
}
char how_win(){ //this function check if 3 same symbol o or x finished the game and show name of player
//first player in X symbol
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(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(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';
}
//second player in O symbol
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(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(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 '/';
}
void game(){
while(1){
counter_gameplay++;
input();
draw();
if (how_win() == 'X'){
cout<<"\n\n\n ********$$$ WoW \""<<mainname<<"\" won the game"<<", congratulations $$$********"<<endl;
break;
}
else if(how_win() == 'O'){
cout<<"\n\n\n ********$$$ WoW \""<<mainname<<"\" won the game"<<", congratulations $$$********"<<endl;
break;
}
else if(how_win() == '/' && counter_gameplay == 9){
cout<<"\n\n\n ----*** Unfortunately, none of you won the game, play again ***----"<<endl;
break;
}
change_player();
change_name_player();
}
}
int main()
{
cout<<"------------------------------------------------------------------------------------------------------------------------";
cout<<"\n\t\t ************ Welcome to Real Time Tic_Tac_Toe 2 Player Game Project ************\n\n";
cout<<"\t\t\t\t\t Supervisor : Mr. Ali Bazghandi\n";
cout<<"\t\t\t\t\t Teacher Assistants : Mr. Foad Ataei, Mr. Amirhossein Kazemzadeh \n";
cout<<"\t\t\t\t\t Course : Basics of programming \n";
cout<<"\t\t\t\t\t Student : Yasin Rezvani \n";
cout<<"\t\t\t\t\t Date : Spring 2023 \n\n";
cout<<"\t\t\t\t\t Shahrood University of Technology \n\n";
cout<<"------------------------------------------------------------------------------------------------------------------------"<<endl;
char try_load_game;
cout<<" # Please enter the name of the first player: "; //get name of players
cin>>name1;
cout<<"\n # Please enter the name of the second player: ";
cin>>name2;
mainname = name1;
draw();
counter_gameplay = 0;
game();
while(1){
cout<<"\n\n # Would you like to play again? (y/n): "; //to request player if like to play again game
cin>>try_load_game;
if(try_load_game == 'y'){
counter_gameplay = 0;
matrix[0][0] = '1';matrix[0][1] = '2';matrix[0][2] = '3';matrix[1][0] = '4';matrix[1][1] = '5';matrix[1][2] = '6';matrix[2][0] = '7';matrix[2][1] = '8';matrix[2][2] = '9';
draw();
game();
}
else{
break;
}
}
return 0;
}