An Othello game with AI using C language and OpenGL GLUT. There are 2 game modes: playing with a human and playing with artificial intelligence.
To learn how to play Othello, click on the following image:
-
Install Make with the command:
sudo apt-get install make
-
And install GLUT:
sudo apt-get install freeglut3 freeglut3-dev
or
sudo apt-get install libglut3-dev
-
Clone the project from my GitHub to your computer:
git clone https://github.com/Viet281101/OthelloAI.git
- Go to the project directory "AI_Player" or "Human_Player"
or
cd Human_Player/
cd AI_Player/
- Compile with the Makefile:
make
- Run the othello file
./othello
- Clean the files with make:
make clean