xiangqi_tui 0.1.0

Chinese chess (Xiangqi) TUI client with UCI/UCCI engine and opening book support
1
2
3
4
5
6
7
8
9
10
11
12
13
14
mod board;
mod play;
mod position;
mod rules;
mod side;
pub mod uci;

pub use board::{Board90, STARTPOS_FEN};
pub use play::try_apply_fully_legal_uci;
pub use position::game_over_message;
pub use side::Side;
pub use uci::{
    cursor_delta_internal, parse_uci_coords, screen_to_internal, uci_cell_label, uci_from_coords,
};