https://github.com/niclasvaneyk/chers
A rusty chess implementation for the terminal and web.
https://github.com/niclasvaneyk/chers
chess rust tui wasm
Last synced: about 2 months ago
JSON representation
A rusty chess implementation for the terminal and web.
- Host: GitHub
- URL: https://github.com/niclasvaneyk/chers
- Owner: NiclasvanEyk
- Created: 2023-09-20T18:58:34.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-07-15T16:40:25.000Z (11 months ago)
- Last Synced: 2024-07-15T20:26:19.570Z (11 months ago)
- Topics: chess, rust, tui, wasm
- Language: Rust
- Homepage: https://chers.niclasve.me
- Size: 649 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Chers
Chess implemented in Rust.
Contains:- A core [engine](./chers/) that validates and suggests moves
- A [command line interface](./chers_cli/) that enables you to play chess inside your terminal
- A [web interface](./chers_web/) that re-uses the core engine compiled to Webassembly to run chess in your browser## Try it out
Run
```shell
cd /tmp
git clone https://github.com/NiclasvanEyk/chers
cd chers
cargo run --bin chers_cli
```to get up and running in the terminal (requires Rust to be installed locally) or visit https://chers.niclasve.me and try out the web version.
## Engine TODOs
- [x] En passant
- [x] Pawn promotion
- [ ] Castling
- [ ] Halfmove clock
- [ ] Fullmove number
- [ ] Checkmate
- [ ] Mate
- [ ] Remove this list once all items are finished