Tic-Tac-Toe 2.0
Public Member Functions

TicTacToe Class Reference

This class can managed a Tic-Tac-Toe game. The class allows basic operations like initializing the game, placing marks according to the rules, checking if the game is over, undo a move etc ... More...

#include <tictactoe.h>

List of all members.

Public Member Functions

 TicTacToe (void)
 Constructor of the class TicTacToe. Call the Reset method. It creates and initializes the game.
void DrawGame (void)
 Draw the game in text mode (console mode). This method uses cout to draw the game, it assumes that cout can be used.
void Reset (void)
 Set the game in its initial configuration. Each cell is filled with the empty symbol.
char CurrentPlayer (void)
 Return the mark of the current player (CROSS or CIRCLE). Note that the methods returns a mark even if the game is over. To check if the game is over, uses the GameOver method.
char Play (int NumCell)
 Place the mark of the current player on the grid in the cell NumCell if it is possible.
int Undo (void)
 Undo the last move.
char GameOver (void)
 Analyse the current state of the game.

Detailed Description

This class can managed a Tic-Tac-Toe game. The class allows basic operations like initializing the game, placing marks according to the rules, checking if the game is over, undo a move etc ...

Examples:

TicTacToe_Example.cpp.

Definition at line 39 of file tictactoe.h.


Constructor & Destructor Documentation

TicTacToe::TicTacToe ( void  )

Constructor of the class TicTacToe. Call the Reset method. It creates and initializes the game.

Definition at line 19 of file tictactoe.cpp.


Member Function Documentation

char TicTacToe::CurrentPlayer ( void  )

Return the mark of the current player (CROSS or CIRCLE). Note that the methods returns a mark even if the game is over. To check if the game is over, uses the GameOver method.

Returns:
Returns the mark of the current player (CROSS or CIRCLE)
Examples:
TicTacToe_Example.cpp.

Definition at line 66 of file tictactoe.cpp.

void TicTacToe::DrawGame ( void  )

Draw the game in text mode (console mode). This method uses cout to draw the game, it assumes that cout can be used.

Todo:
It would be better to return a string
Examples:
TicTacToe_Example.cpp.

Definition at line 42 of file tictactoe.cpp.

char TicTacToe::GameOver ( void  )

Analyse the current state of the game.

Returns:
0 if the game is not over.
CROSS if the game is over and the winner is the first player.
CIRCLE If the game is over and the winner is the second player.
DRAW if the game is over and draw.
Examples:
TicTacToe_Example.cpp.

Definition at line 114 of file tictactoe.cpp.

char TicTacToe::Play ( int  NumCell)

Place the mark of the current player on the grid in the cell NumCell if it is possible.

Parameters:
NumCell: ID of the cell where the current player will place its mark
Returns:
1 if the move is possible.
0 if the move is impossible (NumCell do not bellong to [1;9] or the cell is not empty)
Examples:
TicTacToe_Example.cpp.

Definition at line 79 of file tictactoe.cpp.

void TicTacToe::Reset ( void  )

Set the game in its initial configuration. Each cell is filled with the empty symbol.

Definition at line 28 of file tictactoe.cpp.

int TicTacToe::Undo ( void  )

Undo the last move.

Returns:
Returns the number of moves since the beginning of the game

Definition at line 96 of file tictactoe.cpp.


The documentation for this class was generated from the following files:
 All Classes Files Functions Defines