Help with my Tic-Tac-Toe program
Mar 22, 2016 at 5:50pm Mar 22, 2016 at 5:50pm UTC
Hi, I'm currently working on a console application to play tic-tac-toe against the computer. I was able to get the computer to randomly select moves, but now I'm trying to make it smart. I created a function so the computer can defend any potential win, but when it attempts its first move, it gets stuck in an endless loop of invalid moves. Any suggestions on how I should change my function or how it is called when I want the computer to make a move?
Here's what the code looks like:
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
//Tic-Tac-Toe Human vs Computer
#include <iostream>
#include <stdlib.h>
using namespace std;
char sq[10] = {'z' , '1' , '2' , '3' , '4' , '5' , '6' , '7' , '8' , '9' };
int choice;
int outcome ();
void board ();
int smart ();
int main ()
{
int turn = 1, c;
char mark;
string welcome = "Welcome to Tic Tac Toe" ;
do
{
cout << welcome << endl;
cout << endl;
board();
if (turn % 2 == 1)
{
turn = 1;
}
else
{
turn = 2;
}
//human
if (turn == 1)
{
cout << "Player " << turn << ", enter a number:" << endl;
cin >> choice;
}
//computer
else if (turn == 2)
{
choice = smart();
}
if (turn == 1)
{
mark = 'X' ;
}
else
{
mark = 'O' ;
}
if (choice == 1 && sq[1] == '1' )
{
sq[1] = mark;
}
else if (choice == 2 && sq[2] == '2' )
{
sq[2] = mark;
}
else if (choice == 3 && sq[3] == '3' )
{
sq[3] = mark;
}
else if (choice == 4 && sq[4] == '4' )
{
sq[4] = mark;
}
else if (choice == 5 && sq[5] == '5' )
{
sq[5] = mark;
}
else if (choice == 6 && sq[6] == '6' )
{
sq[6] = mark;
}
else if (choice == 7 && sq[7] == '7' )
{
sq[7] = mark;
}
else if (choice == 8 && sq[8] == '8' )
{
sq[8] = mark;
}
else if (choice == 9 && sq[9] == '9' )
{
sq[9] = mark;
}
else
{
cout << "That number is taken. Choose another." << endl;
turn --;
}
c = outcome();
turn ++;
} while (c == -1);
board();
if (c == 1)
{
cout << "Player " << --turn << " wins!" << endl;
}
else
{
cout << "This game is a draw" << endl;
}
}
int smart () //function where the computer checks the board and makes a block if necessary
{
if (sq[2] == sq[3]) //if squares 2 and 3 are the same
{
choice = 1; //choose square 1 (follow this logic for each else if section)
}
else if (sq[4] == sq[7])
{
choice = 1;
}
else if (sq[5] == sq[9])
{
choice = 1;
}
else if (sq[1] == sq[3])
{
choice = 2;
}
else if (sq[5] == sq[8])
{
choice = 2;
}
else if (sq[1] == sq[2])
{
choice = 3;
}
else if (sq[6] == sq[9])
{
choice = 3;
}
else if (sq[5] == sq[7])
{
choice = 3;
}
else if (sq[1] == sq[7])
{
choice = 4;
}
else if (sq[5] == sq[6])
{
choice = 4;
}
else if (sq[4] == sq[6])
{
choice = 5;
}
else if (sq[2] == sq[8])
{
choice = 5;
}
else if (sq[1] == sq[9])
{
choice = 5;
}
else if (sq[3] == sq[7])
{
choice = 5;
}
else if (sq[4] == sq[5])
{
choice = 6;
}
else if (sq[3] == sq[9])
{
choice = 6;
}
else if (sq[1] == sq[4])
{
choice = 7;
}
else if (sq[8] == sq[9])
{
choice = 7;
}
else if (sq[3] == sq[5])
{
choice = 7;
}
else if (sq[7] == sq[9])
{
choice = 8;
}
else if (sq[2] == sq[5])
{
choice = 8;
}
else if (sq[7] == sq[8])
{
choice = 9;
}
else if (sq[3] == sq[6])
{
choice = 9;
}
else if (sq[1] == sq[5])
{
choice = 9;
}
else
{
choice = rand() % 9 + 1;
}
return 0;
}
int outcome () //function to determine the outcome of the game (win or draw)
{
if (sq[1] == sq[2] && sq[2] == sq[3]) //if the mark on square 1 is equivalent to squares 2 and 3
{
return 1; //result is a win
}
else if (sq[4] == sq[5] && sq[5] == sq[6])
{
return 1;
}
else if (sq[7] == sq[8] && sq[8] == sq[9])
{
return 1;
}
else if (sq[1] == sq[4] && sq[4] == sq[7])
{
return 1;
}
else if (sq[2] == sq[5] && sq[5] == sq[8])
{
return 1;
}
else if (sq[3] == sq[6] && sq[6] == sq[9])
{
return 1;
}
else if (sq[1] == sq[5] && sq[5] == sq[9])
{
return 1;
}
else if (sq[3] == sq[5] && sq[5] == sq[7])
{
return 1;
}
else if (sq[1] != '1' && sq[2] != '2' && sq[3] != '3'
&& sq[4] != '4' && sq[5] != '5' && sq[6] != '6'
&& sq[7] != '7' && sq[8] != '8' && sq[9] != '9' )
{
return 0;
}
else
{
return -1;
}
}
void board () //function to display the game board
{
cout << "Player 1 is X. PLayer 2 is O." << endl;
cout << endl;
cout << " | | " << endl;
cout << " " << sq[1] << " | " << sq[2] << " | " << sq[3] << endl;
cout << " ------|-----|------" << endl;
cout << " " << sq[4] << " | " << sq[5] << " | " << sq[6] << endl;
cout << " ------|-----|------" << endl;
cout << " " << sq[7] << " | " << sq[8] << " | " << sq[9] << endl;
cout << " | | " << endl;
cout << endl;
}
Last edited on Mar 22, 2016 at 6:03pm Mar 22, 2016 at 6:03pm UTC
Mar 22, 2016 at 6:51pm Mar 22, 2016 at 6:51pm UTC
here's an edit that made it somewhat work, but the computer gets stuck when I'm going to win with more than one combination of squares.
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
//Tic-Tac-Toe Human vs Computer by Thomas Fantasia
#include <iostream>
#include <stdlib.h>
using namespace std;
char sq[10] = {'z' , '1' , '2' , '3' , '4' , '5' , '6' , '7' , '8' , '9' };
int choice;
int outcome ();
void board ();
int smart ();
int main ()
{
int turn = 1, c;
char mark;
srand ( time(0));
string welcome = "Welcome to Tic Tac Toe" ;
do
{
cout << welcome << endl;
cout << endl;
board();
if (turn % 2 == 1)
{
turn = 1;
}
else
{
turn = 2;
}
//human
if (turn == 1)
{
cout << "Player " << turn << ", enter a number:" << endl;
cin >> choice;
}
//computer
else if (turn == 2)
{
if (sq[2] == sq[3]) //if squares 2 and 3 are the same
{
choice = 1; //choose square 1 (follow this logic for each else if section)
}
else if (sq[4] == sq[7])
{
choice = 1;
}
else if (sq[5] == sq[9])
{
choice = 1;
}
else if (sq[1] == sq[3])
{
choice = 2;
}
else if (sq[5] == sq[8])
{
choice = 2;
}
else if (sq[1] == sq[2])
{
choice = 3;
}
else if (sq[6] == sq[9])
{
choice = 3;
}
else if (sq[5] == sq[7])
{
choice = 3;
}
else if (sq[1] == sq[7])
{
choice = 4;
}
else if (sq[5] == sq[6])
{
choice = 4;
}
else if (sq[4] == sq[6])
{
choice = 5;
}
else if (sq[2] == sq[8])
{
choice = 5;
}
else if (sq[1] == sq[9])
{
choice = 5;
}
else if (sq[3] == sq[7])
{
choice = 5;
}
else if (sq[4] == sq[5])
{
choice = 6;
}
else if (sq[3] == sq[9])
{
choice = 6;
}
else if (sq[1] == sq[4])
{
choice = 7;
}
else if (sq[8] == sq[9])
{
choice = 7;
}
else if (sq[3] == sq[5])
{
choice = 7;
}
else if (sq[7] == sq[9])
{
choice = 8;
}
else if (sq[2] == sq[5])
{
choice = 8;
}
else if (sq[7] == sq[8])
{
choice = 9;
}
else if (sq[3] == sq[6])
{
choice = 9;
}
else if (sq[1] == sq[5])
{
choice = 9;
}
else
{
choice = rand() % 9;
}
}
if (turn == 1)
{
mark = 'X' ;
}
else
{
mark = 'O' ;
}
if (choice == 1 && sq[1] == '1' )
{
sq[1] = mark;
}
else if (choice == 2 && sq[2] == '2' )
{
sq[2] = mark;
}
else if (choice == 3 && sq[3] == '3' )
{
sq[3] = mark;
}
else if (choice == 4 && sq[4] == '4' )
{
sq[4] = mark;
}
else if (choice == 5 && sq[5] == '5' )
{
sq[5] = mark;
}
else if (choice == 6 && sq[6] == '6' )
{
sq[6] = mark;
}
else if (choice == 7 && sq[7] == '7' )
{
sq[7] = mark;
}
else if (choice == 8 && sq[8] == '8' )
{
sq[8] = mark;
}
else if (choice == 9 && sq[9] == '9' )
{
sq[9] = mark;
}
else
{
cout << "That number is taken. Choose another." << endl;
turn --;
}
c = outcome();
turn ++;
} while (c == -1);
board();
if (c == 1)
{
cout << "Player " << --turn << " wins!" << endl;
}
else
{
cout << "This game is a draw" << endl;
}
}
int outcome () //function to determine the outcome of the game (win or draw)
{
if (sq[1] == sq[2] && sq[2] == sq[3]) //if the mark on square 1 is equivalent to squares 2 and 3
{
return 1; //result is a win
}
else if (sq[4] == sq[5] && sq[5] == sq[6])
{
return 1;
}
else if (sq[7] == sq[8] && sq[8] == sq[9])
{
return 1;
}
else if (sq[1] == sq[4] && sq[4] == sq[7])
{
return 1;
}
else if (sq[2] == sq[5] && sq[5] == sq[8])
{
return 1;
}
else if (sq[3] == sq[6] && sq[6] == sq[9])
{
return 1;
}
else if (sq[1] == sq[5] && sq[5] == sq[9])
{
return 1;
}
else if (sq[3] == sq[5] && sq[5] == sq[7])
{
return 1;
}
else if (sq[1] != '1' && sq[2] != '2' && sq[3] != '3'
&& sq[4] != '4' && sq[5] != '5' && sq[6] != '6'
&& sq[7] != '7' && sq[8] != '8' && sq[9] != '9' )
{
return 0;
}
else
{
return -1;
}
}
void board () //function to display the game board
{
cout << "Player 1 is X. PLayer 2 is O." << endl;
cout << endl;
cout << " | | " << endl;
cout << " " << sq[1] << " | " << sq[2] << " | " << sq[3] << endl;
cout << " ------|-----|------" << endl;
cout << " " << sq[4] << " | " << sq[5] << " | " << sq[6] << endl;
cout << " ------|-----|------" << endl;
cout << " " << sq[7] << " | " << sq[8] << " | " << sq[9] << endl;
cout << " | | " << endl;
cout << endl;
}
Topic archived. No new replies allowed.