Tic-Tac-Toe is a simple game that usually is based on a 3X3 grid (but not always, see below). Although simple, Tic-Tac-Toe is known as a "zero sum game" since its impossible for two informed players to win a game; the ideal strategy always results in a tie.
That said, with two elementary school children who play this game pretty regularly on kids menus, one can win more often that you'd think against a non-informed (or non-patient) player. The goal of this lab is to implement both an interactive and automatic Tic-Tac-Toe program to see for yourself.
Note, this problem is very loosely based on the Checkboard Lab 1 140/202 from Dr. Plank here, although the syntax and overall goals are pretty different. By starting with an intuitive game, hopefully it will help with the more automated version that will be required for Part 2 of the lab. It is also is intended to be an assignment that reinforces what you learned previously while adding a new C/C++ wrinkle: 2D arrays.
You will ultimately be given an integer and a series of characters from standard input in the follow format:
N X X O ...
For example, here is a 3X3 grid where X wins:
3 X X X O X O O O -
Your program should output the following:
X wins
For another example, here is a 4X4 grid where no one wins:
4 X X X O O X O X O O X O X O X O
Your program should output the following:
Tie
Develop a simple C++ program called "toe.cpp" that asks a user for the grid size, and then allows two players to interactively play Tic-Tac-Toe. This program must be able to:
Develop a simple C++ program called "toecheck.cpp" that will read in a sample input file as described above from standard in and report either "X wins," "O wins", or "Tie."
The idea behind toecheck is we want to "freeze" 8 specific boards that could have been populated manually in the interactive mode (with a lot of typing). This will mean all 140+ students will need to make sure their code works for at least these 8 test cases.
Since we are "freezing" the interactive output, we will also assume that the provided input boards are correct/valid input. No need to worry about tricky input... that will come later in 202/302.
I realize its a little awkward and ideally you'd just have to write toecheck but I wanted you to get more practice coding on simple inputs loosely consistent with the basic C++ (if/then, for loops, arrays/vectors) assessed in prior 102 labs, namely Speeding Ticket, MPG calculator, bowling, selection sort.
Creating a second "toecheck.cpp" also makes grading transparent and consistent across all submissions, which is an approach we'll use throughout 202/302. In software engineering these are often called "unit tests." This is similar to how most of you needed to match the output on the selection sort lab exactly.
Please talk to us or use Piazza if you still have questions.
We will grade your submission relative to the rubric below.
+2 Code is well formatted, commented (inc. name, assignment, and overview), with reasonable variable names +3 Uses formatting (printf/cout) to provide an intitutive and well formatted board each turn +3 Prevents a player from entering an invalid cell +3 Prevents a player from changing a previously chosen cell +3 Works as intended on a 4X4 board (4 in a row wins) +3 Works as intended on a 5X5 board (5 in a row wins) +5 Correctly determines if a player has won or not after each choice +8 Test cases successfully solved (1 point each)
We realize that this is quite a step up from the simple prelab if your coding skills are a bit rusty, so please start early. We also realize that some edge conditions are harder than others, e.g., detecting a verticle win. Our test cases will be somewhat evenly split between horizontal, vertical, diagonal wins as well as ties. So if you are not able to get certain tests to work you still should receive most of the points if other cases work in your submission.
As potential hints, this is what my program does on a high level:
To faciliate testing, you were previously asked to clone the course Github repository as follows:
git clone https://github.com/semrich/CS202-22.git cs202
For this assignment, update this clone by using the following:
git pull
To test your solution against ours, type:
make test
To submit your solution, you must submit a tar file on Canvas prior to the deadline using this command:
tar -cvf lab1.tar toe.cpp toecheck.cpp
Note: Although submission will be faciliated by Canvas, we will compile and test on EECS lab machines!
If you develop your solution elsewhere please make sure it works on the lab computers prior to the deadline