Skip to content
This repository has been archived by the owner on Apr 1, 2023. It is now read-only.

georgehuan1994/Unity-Tic-Tac-Toe

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

26 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Unity TicTacToe

A TicTacToe game made in Unity.

Unity Version: 2021.3.14f1

tictactoe_screenshot_1 tictactoe_screenshot_3

How to play

Tap the screen to start game, player pick O, AI pick X as pawn.

There are three types: easy, mid, and hard of difficulty, increases when player win.

Refresh: tap the O in the upper left corner of the screen.

Quit: tap the X in the upper right corner of the screen or press Esc.

Script Content

There are 4 folder in scripts content.

2023-03-27_114320

Definition

Some definitions of enum and constant.

GameMain

TicTacToe: game procedure controller.

TicTacToeMiniMax: a partial class of TicTacToe, include minimax search algorithm.

TicTacToeWinnerChecker: a partial class of TicTacToe, include the functionality of board state check up.

Grid

Object Grid and its data.

UI

The view script for each user interface.

TODO

  • Implement minimax parallel for more efficient computing on N x N board
  • Find a better ways to weaken search algorithms.
  • Search in the coroutine.
  • Lock/Hide the grid on a larger board to create more interesting game.