https://github.com/raklaptudirm/mess
A Messy Chess Engine
https://github.com/raklaptudirm/mess
chess chess-engine
Last synced: about 1 month ago
JSON representation
A Messy Chess Engine
- Host: GitHub
- URL: https://github.com/raklaptudirm/mess
- Owner: raklaptudirm
- License: apache-2.0
- Created: 2022-06-05T17:00:59.000Z (almost 3 years ago)
- Default Branch: 0.x.x
- Last Pushed: 2024-09-14T13:15:06.000Z (7 months ago)
- Last Synced: 2025-02-28T23:10:35.564Z (about 2 months ago)
- Topics: chess, chess-engine
- Language: Go
- Homepage: https://laptudirm.com/x/mess
- Size: 4.64 MB
- Stars: 21
- Watchers: 3
- Forks: 3
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Codeowners: CODEOWNERS
Awesome Lists containing this project
README
# Overview
Mess is an open source, UCI-compliant chess engine. Mess is not a complete chess program
and requires an UCI-compliant chess graphical user interface(e.g. XBoard with PolyGlot,
Scid, Cute Chess, eboard, Arena, Sigma Chess, Shredder, Chess Partner or Fritz) to be
used comfortably.Mess's code structure is extremely modular and thus it may be used as a library for
developing chess engines in go. The [`./pkg`](./pkg) directory will contain all the
packages that are available for use publicly.# Mess on Lichess
> The MessChessEngine Bot is currently hosted on my laptop, and therefore might not
always be online. The most reliable way to play against mess is to download the engine
and use it with an UCI-compliant graphical user interface.- 🖥️ [Watch Mess Play on Lichess](https://lichess.org/@/MessChessEngine/tv)
- 🎮 [Challange Mess on Lichess](https://lichess.org/@/MessChessEngine)# Installation
### Prebuilt Binaries
Prebuilt binaries for mess can be found in the releases section of this repository.
Binaries are only provided for release versions of Mess. Binaries have been provided for
all the major operating systems, including Windows, Linux, and Darwin.A list of all of Mess's releases can be found [here](https://github.com/raklaptudirm/mess/releases).
### Prerequisites
The following need to be installed before you can install Mess:
- [The Go Programming Language](https://go.dev/dl/)
- [Git](https://git-scm.com/downloads) (for building from source)### Install Globally
```bash
go install laptudirm.com/x/mess@latest
```### Build from source
```bash
# downloard mess (other methods also work)
git clone https://github.com/rakarchive/mess.git
cd mess# building mess binary
make EXE=path # creates binary in path
```# License
Mess is licensed under the [Apache 2.0 License](./LICENSE).