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
|
#include <iostream>
#include <string>
#include <fstream>
using namespace std;
const int SIZE = 9;
const char BLANK = '.';
int charToInt(char c);
char intToChar(int i);
bool validBoard(const char board[SIZE][SIZE]);
void printBoard(const char board[SIZE][SIZE]);
bool isNumber(char c);
void copyBoard(const char input[SIZE][SIZE], char output[SIZE][SIZE]);
bool isOpenSpot(const char board[SIZE][SIZE]);
bool isOpen(const char board[SIZE][SIZE], int row, int col);
// Make this for part A
void readBoard(char board[SIZE][SIZE], string fileName);
// Make this for part B
void saveBoard(char board[SIZE][SIZE], string fileName);
int main()
{
string dump;
char b[SIZE][SIZE];
for(int i=0; i < SIZE; i++)
{
for(int j=0; j < SIZE; j++)
{
b[i][j] = '.';
}
}
string message = "";
while(isOpenSpot(b))
{
char row, col;
cout << "\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n";
printBoard(b);
cout << message << endl;
message = "";
cout << "Where do you wish to play? (or load/save) ";
cin >> row;
if(tolower(row) == 'l')
{
cout << "What file do you wish to load? ";
getline(cin, dump);
getline(cin, dump);
readBoard(b, dump);
continue;
}
else if(tolower(row) == 's')
{
cout << "Where do you wish to save? ";
getline(cin,dump);
getline(cin,dump);
saveBoard(b, dump);
continue;
}
cin >> col;
getline(cin, dump);
int rrow, rcol;
if(tolower(row) >= 'a' && tolower(row) <= 'i')
{
rrow = tolower(row)-'a';
rcol = col-'1';
}
else
{
rcol = tolower(col)-'a';
rrow = row-'1';
}
if(isOpen(b,rrow,rcol))
{
char value;
cout << "What number should go at "<<row<<col<<"? ";
cin >> value;
getline(cin, dump);
char copy[SIZE][SIZE];
copyBoard(b, copy);
if(value < '1' || value > '9')
{
message = "You can only play 1 - 9";
}
else
{
copy[rrow][rcol] = value;
if(validBoard(copy))
{
b[rrow][rcol] = value;
}
else
{
message = "That is not a valid move";
}
}
}
else
{
message = "You cannot play there";
}
}
}
int charToInt(char c)
{
return c-'1'+1;
}
char intToChar(int i)
{
return '1'+(i-1);
}
bool validBoard(const char board[SIZE][SIZE])
{
// whole board formatting check
for(int row=0; row < SIZE; row++)
{
for(int col=0; col < SIZE; col++)
{
if(!(isNumber(board[row][col]) || board[row][col] == BLANK))
{
return false;
}
}
}
// row check
for(int row=0; row < SIZE; row++)
{
string letters = "";
for(int col=0; col < SIZE; col++)
{
// if letters doesn't have this character (and its in 1-9)
if(letters.find(board[row][col])==static_cast<long unsigned>(-1)
&& isNumber(board[row][col]))
{
letters = letters+board[row][col];
}
else if(isNumber(board[row][col]))
{
return false;
}
}
}
// col check
for(int col=0; col < SIZE; col++)
{
string letters = "";
for(int row=0; row < SIZE; row++)
{
// if letters doesn't have this character (and its in 1-9)
if(letters.find(board[row][col])==static_cast<long unsigned>(-1)
&& isNumber(board[row][col]))
{
letters = letters+board[row][col];
}
else if(isNumber(board[row][col]))
{
return false;
}
}
}
// 3x3 square checks
for(int b=0; b < SIZE; b++) // boxes
{
string letters = "";
for(int s=0; s<SIZE; s++) //square in the 3x3
{
int row = (b%3)*3 + s%3;
int col = (b/3)*3 + s/3;
// if letters doesn't have this character (and its in 1-9)
if(letters.find(board[row][col])==static_cast<long unsigned>(-1)
&& isNumber(board[row][col]))
{
letters = letters+board[row][col];
}
else if(isNumber(board[row][col]))
{
return false;
}
}
}
return true;
}
void printBoard(const char board[SIZE][SIZE])
{
cout << " 123 456 789\n";
for(int row=0; row<SIZE; row++)
{
cout << static_cast<char>('a'+row) << ' ';
for(int col=0; col<SIZE; col++)
{
cout << board[row][col];
if(col%3==2 && col != SIZE-1)
{
cout <<"|";
}
}
if(row%3==2 && row != SIZE-1)
{
cout << "\n ---+---+---";
}
cout << endl;
}
}
bool isNumber(char c)
{
return ('1' <= c && c <= '9');
}
void copyBoard(const char input[SIZE][SIZE], char output[SIZE][SIZE])
{
for(int row=0; row<SIZE;row++)
{
for(int col=0; col<SIZE;col++)
{
output[row][col] = input[row][col];
}
}
}
bool isOpenSpot(const char board[SIZE][SIZE])
{
for(int rrow=0; rrow < SIZE; rrow++)
{
for(int rcol=0; rcol < SIZE; rcol++)
{
if(!isNumber(board[rrow][rcol]))
{
return true;
}
}
}
// didn't find an open spot... =(
return false;
}
bool isOpen(const char board[SIZE][SIZE], int row, int col)
{
if(row < 0 || col < 0 || col >= SIZE || row >= SIZE)
{
return false;
}
return board[row][col] < '1' || board[row][col] > '9';
}
// Make this for part A
void readBoard(char board[SIZE][SIZE], string fileName)
{
// im empty!
}
// Make this for part B
void saveBoard(char board[SIZE][SIZE], string fileName)
{
// sad code
}
|