Popularity
7.9
Growing
Activity
1.6
-
31
7
6

Monthly Downloads: 64
Programming language: Haskell
License: BSD 3-clause "New" or "Revised" License
Tags: Game    
Latest version: v0.3.1.1

chessIO alternatives and similar packages

Based on the "Game" category.
Alternatively, view chessIO alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of chessIO or a related project?

Add another 'Game' Package

README

A Haskell chess library and console UCI frontend program

Build status

chessIO is a Haskell library for working with chess positions and moves, and a console frontend program (cboard) to work with UCI compatible chess engines.

The Library

The main module provided by the library is Game.Chess, which defines data types and functions for working with chess positions and moves. It offers a fully compliant move generator and parsing for and printing positions in Forsyth-Edwards Notation and moves in Algebraic Notation.

Module Game.Chess.UCI provides functionality to run an external process which understands the Universal Chess Interface protocol from within Haskell.

Console frontend for the Universal Chess Interface protocl

cboard is a simple console (text-mode) frontend for interacting with chess engines (like stockfish or glaurung) which make use of the UCI protocol.

To launch a chess engine, simply pass its executable name and arguments to cboard. For instance, cboard stockfish.

Opening book explorer

cbookview is a terminal application to explore commonly played openings. Passing a polyglot opening book file (with extension .bin) on the command line will allow you to explore the plies contained in that book file interactively. You can also open a PGN file (extension .pgn) which will be presented like it was an opening book. In other words, all the moves played in that PGN file will be merged into a single forest of plies. When exporing PGN files, no particular order of plies is imposed. When exploring a polyglot file the most popular moves will always come first.

For example, lets assume you want to examine blacks replies to the Ruy lopez. Use the cursor keys to navigate to the move after bishop b5. Here is what the interface will show:

a6         โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”
Nf6       1โ”‚ R +   K Q B N R โ”‚        1.e4 e5 2.Nf3 Nc6 3.Bb5 a6
g6        2โ”‚ P P P   P P P P โ”‚
f5        3โ”‚   + N +   +   + โ”‚
Nge7      4โ”‚ +   + P +   +   โ”‚
Bc5       5โ”‚   +   p   + B + โ”‚
d6        6โ”‚ +   +   + n + p โ”‚
Nd4       7โ”‚ p p p + p p p + โ”‚
Bb4       8โ”‚ r n b k q b + r โ”‚
Bd6        โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜
Qf6          h g f e d c b a
f6



Up/Down (kj) = change ply, Left/Right (hl) = back/forward                 ESC = Quit

Moving the cursor down the list of book moves will also update the position and game history. As already mentioned, the moves in polyglot book files are ordered according to popularity. So pawn to a6 is actually the most popular line of the Ruy Lopez.

The easteregg: Poor mans chessboard

If you press a (for "All moves") cbookview will switch to the tree of all possible moves. This is a poor mans way for following games and abusing cbookview as a two-player board.