Strategic board game where you can oppose your opponent, friend or AI, with walls.

DricomDragon fda69c15e8 :memo: Add dependencies for Ubuntu 2 年之前
project a06e23d234 Add multiplayer mode 4 年之前
.gitignore 01f829b489 Initial commit 4 年之前
LICENSE.txt 02cdc79c48 :copyright: Mention license in README 3 年之前
README.md fda69c15e8 :memo: Add dependencies for Ubuntu 2 年之前
logo.png 7baf9ca6df :art: Add logo 3 年之前

README.md

Quoridor

Strategic board game where you can oppose your opponent, friend or AI, with walls.

Wall logo

The orignal game has been designed by Gigamic. You can buy the wood game from a game vendor.

Context

I developed this project with 3 other students during my second year in prepa school in order to take the competitive exam named TIPE. The purpose of this project was designing AI for the strategic game Quoridor.

Our team :

  • Elric
  • Quentin
  • Baptiste
  • Jovian

How to play

Run python

Requirement : you need python version 3 to start games

Every file prependend by Q_ is an executable that you can run with python.

You can invoke python from a terminal :

python3 project/Q_HumainVsRandomIA.py
python3 project/Q_HumainVsMinMax1.py

Or run the files directly from your prefered IDE (like IDLE, the default IDE packed with python).

Single player

You can play single mode by launching any file Q_HumainVs<AI name><tree depth><variant>.py where AI name is the name of the IA you have to combat, tree depth the number of turns the AI will explore, and variant is a marker meaning that the function used to evaluate the strength of a situation has been tweaked.

For instance : Q_HumainVsAlphaBeta3+.py means that you will fight an AI using the Alpha Beta algorithm, exploring the game 3 turns in the future, and using a variant + of the evaluation function.

Multiplayer

You can oppose another human being by launching the Q_HumainVsHumain.py python script.

How to install

Ubuntu

Needed for running too.

sudo apt-get install python3-tk
pip3 install numpy

License

GNU GPLv3, see LICENSE.txt.