Find a file
2021-10-15 22:18:59 -04:00
spec Update tests 2021-10-02 19:12:06 -04:00
src Add more logging 2021-10-15 22:18:59 -04:00
.editorconfig Initial commit 2021-09-02 23:20:21 -04:00
.gitignore Add depth to move calculations 2021-10-03 22:26:09 -04:00
.travis.yml Initial commit 2021-09-02 23:20:21 -04:00
LICENSE Initial commit 2021-09-02 23:20:21 -04:00
README.md Refactor placement to own method 2021-09-04 19:48:12 -04:00
shard.yml Add disambiguation to SAN generation 2021-09-27 23:34:47 -04:00

lx_chess

A chess program written in crystal

Installation

shards build --release --no-debug

Usage

run lx_chess --help for usage information

Usage example:

╰─$ ./bin/lx_chess --fen "rnbqkbnr/pppppppp/8/8/8/8/PPPPPPPP/RNBQKBNR w KQkq - 0 1"
8: ♜ ♞ ♝ ♛ ♚ ♝ ♞ ♜
7: ♟ ♟ ♟ ♟ ♟ ♟ ♟ ♟
6:
5:
4:
3:
2: ♟ ♟ ♟ ♟ ♟ ♟ ♟ ♟
1: ♜ ♞ ♝ ♛ ♚ ♝ ♞ ♜
   a b c d e f g h

Contributing

  1. Fork it (https://github.com/your-github-user/cr_lx_chess/fork)
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create a new Pull Request

Contributors