module Qi
Overview
The Qi abstraction.
@example Apply a move to a classic Shogi problem Qi.call( [43, 13, "+B"], in_hand: %w[S r r b g g g g s n n n n p p p p p p p p p p p p p p p p p], square: { 3 => "s", 4 => "k", 5 => "s", 22 => "+P", 43 => "+B" } )
=> {:in_hand=>["S", "r", "r", "b", "g", "g", "g", "g", "s", "n", "n", "n", "n", "p", "p", "p", "p", "p", "p", "p", "p", "p", "p", "p", "p", "p", "p", "p", "p", "p"], :square=>{3=>"s", 4=>"k", 5=>"s", 22=>"+P", 13=>"+B"}}
Defined in:
qi.crqi/action.cr
qi/move.cr
Constant Summary
-
VERSION =
"0.3.0"
Class Method Summary
-
.call(move : Array(Int32 | String | Nil), *, in_hand : Array(String), square : Hash(Int32, String))
Apply a move to the position.
Class Method Detail
Apply a move to the position.
@param move [Array] The move to play. @param in_hand [Array] The list of pieces in hand. @param square [Hash] The index of each piece on the board.
@see https://developer.sashite.com/specs/portable-chess-notation @see https://developer.sashite.com/specs/portable-move-notation
@example Apply a move to a classic Shogi problem call( [43, 13, "+B"], in_hand: %w(S r r b g g g g s n n n n p p p p p p p p p p p p p p p p p), square: { 3 => "s", 4 => "k", 5 => "s", 22 => "+P", 43 => "+B" } )
=> {in_hand: ["S", "r", "r", "b", "g", "g", "g", "g", "s", "n", "n", "n", "n", "p", "p", "p", "p", "p", "p", "p", "p", "p", "p", "p", "p", "p", "p", "p", "p", "p"], square: {3=>"s", 4=>"k", 5=>"s", 22=>"+P", 13=>"+B"}}
@return [Hash] The piece set of the next position.