1 stable release

Uses old Rust 2015

1.0.0 Nov 27, 2022

#1640 in Game dev

MIT license

645KB
14K SLoC

Tanton Engine

Tanton Engine is a Rust re-write of the Stockfish chess engine.

It is a fork of a now unmaintained project Pleco.

Tanton crate

This project is split into two crates, tanton_engine (the current folder), which contains the UCI (Universal Chess Interface) compatible Engine & AI, and tanton, which contains the library functionality.

The overall goal of tanton is to recreate the Stockfish engine in rust, for comparison and educational purposes. As such, the majority of the algorithms used here are a direct port of stockfish's, and the credit for all of the advanced algorithms used for searching, evaluation, and many others, go directly to the maintainers and authors of Stockfish.

Standalone Installation and Use

Currently, Tanton's use as a standalone program is limited in functionality. A UCI client is needed to properly interact with the program. As a recommendation, check out Arena.

The easiest way to use the engine would be to check out the "releases" tab, here.

If you would rather build it yourself (for a specific architecture, or otherwise), clone the repo and navigate into the created folder with the following commands:

$ git clone https://github.com/chase-manning/tanton
$ cd tanton/

Once inside the tanton directory, build the binaries using cargo:

$ cargo build --release

The compiled program will appear in ./target/release/.

Tanton can now be run with a ./Tanton on Linux or a ./Tanton.exe on Windows.

Dependencies

~3MB
~53K SLoC