Skip to content

swingbit/duchess

Repository files navigation

Duchess

A simple chess engine. Because it's fun and because I needed an excuse to get accustomed to Rust.

The wasm branch is playable online at https://swingbit.github.io/duchess/

Status

  • Move generation:
    • (done) all standard moves, castling, promotion, check, checkmate, draw
    • (missing) en passant
  • Check validity of human moves:
    • (done) all standard moves, castling, promotion, check, checkmate, draw
    • (missing) en passant
  • UI:
  • Evaluations and heuristics:
  • Search algorithm:
    • (done) Minimax
    • (done) Negamax
    • (done) Negascout
  • Optional optimizations:
    • (missing) transposition table
    • (partial) move ordering
    • (missing) more efficient board representations

How to run Duchess on a browser

Releases

No releases published