Tic Tac Toe
This was an attempt to build a simple game using Angular. The basic game play is in place where two players can choose who goes first, X or O, and then scores are recorded as rematches are played.
Try the game: Tic Tac Toe
Tech Stack
Angular
Feature: Game Board
Player Setup
When the game loads, this screen is presented where the two players decide who will go first, "Player X" or "Player O".
Game Play
Once the starting player is selected, the traditional tic tac toe game board is presented and players take turns clicking squares.
The Winner
If a player achieves a winning sequence, then that match is over and the "Player X (or O) wins!" message is displayed and the winning player's points counter is incremented. At this point the players can choose to continue playing by either playing a rematch where the scores continue to increment or they can completely start over. The game can also account for a stalemate where neither player's points are incremented and they can choose to play again or start over.
Future Enhancements
I'd like to give each player the ability to enter their names. I'm currently using generic labels such as "Player X" and "Player O".
When a player has won a round, I'd like to display a cross-through line that highlights the winning X or O pattern.
I'd like to use this project as an example for highlighting writing unit tests in Angular. I've only spent a short time building out this project and didn't include any tests but there are several test scenarios that could be written for this small game.
There are some areas in the main game board component that could use refactoring now that the basic game play is working.
There is no database incorporated at this time, but a database could be used to track player names, games, and scores in the future.
Currently, two players play on one device. I'd like to investigate providing support to allow each player to play from their own device.