chodges7 / TicTacToeBoard

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Getting Started Build Status Coverage Status

Build the Unit Testing CPP ("gtest") container if you have not already:

docker build -t gtest .

Then run the container, with bound access to your repository:

docker run --mount type=bind,source="$(pwd)",target=/usr/src -it gtest

This should automatically re-build the project and run the tests

TicTacToeBoard

Associated Enumerated Types

Piece has four possible values: X,O,Invalid, and Blank

Member Variables

Piece board[BOARDSIZE][BOARDSIZE]

board represents the 2D playing board, where BOARDSIZE is 3,


Piece turn

turn represents whose turn it is to place a piece (defaults to X)

Public Functions

TicTacToeBoard()

Constructor sets an empty board and specifies it is X's turn first


Piece toggleTurn()

Switches turn member variable to represent whether it's X's or O's turn and returns whose turn it is


Piece placePiece(int row, int column)

Places the piece of the current turn on the board, returns what piece is placed, and toggles which Piece's turn it is. placePiece does NOT allow to place a piece in a location where there is already a piece. In that case, placePiece just returns what is already at that location. Out of bounds coordinates return the Piece Invalid value. When the game is over, no more pieces can be placed so attempting to place a piece should neither change the board nor change whose turn it is.


Piece getPiece(int row, int column)

Returns what piece is at the provided coordinates, or Blank if there are no pieces there, or Invalid if the coordinates are out of bounds


Piece getWinner()

Returns which Piece has won, if there is a winner, Invalid if the game is not over, or Blank if the board is filled and no one has won.

About

License:MIT License


Languages

Language:C++ 81.4%Language:Makefile 12.5%Language:Dockerfile 5.8%Language:Shell 0.4%