Struct pleco::board::Board [] [src]

pub struct Board {
    pub magic_helper: &'static MAGIC_HELPER,
    // some fields omitted
}

Represents a ChessBoard through a Board.

Board contains everything that needs to be known about the current state of the Game. It is used by both Engines and Players / Bots alike.

Ideally, the Engine contains the original Representation of a board (owns the board), and utilizes [Board::shallow_clone()] to share this representaion with Players.

Examples

use pleco::Board;

fn main() {
    let mut chessboard = Board::default();

    let moves = chessboard.generate_moves();
    chessboard.apply_move(moves[0]);

    let b2 = chessboard.shallow_clone(); // boards allow for easy cloning
    assert_eq!(chessboard.moves_played(), b2.moves_played());
}

BitBoard Representation

For the majority of the struct, the board utilizes [BitBoard]s, which is a u64 where each bit represents an occupied location, and each bit index represents a certain square (as in bit 0 is Square A1, bit 1 is B1, etc.). Indexes increase first horizontally by File, and then by Rank. See BitBoards article ChessWiki for more information.

The exact mapping from each square to bits is below,

8 | 56 57 58 59 60 61 62 63
7 | 48 49 50 51 52 53 54 55
6 | 40 41 42 43 44 45 46 47
5 | 32 33 34 35 36 37 38 39
4 | 24 25 26 27 28 29 30 31
3 | 16 17 18 19 20 21 22 23
2 | 8  9  10 11 12 13 14 15
1 | 0  1  2  3  4  5  6  7
  -------------------------
     a  b  c  d  e  f  g  h

Fields

Reference to the pre-computed lookup tables.

Methods

impl Board
[src]

[src]

Constructs a board from the starting position

Examples

use pleco::{Board,Player};

let chessboard = Board::default();
assert_eq!(chessboard.count_pieces_player(Player::White),16);

[src]

Constructs a shallow clone of the Board.

Contains only the information necessary to apply future moves, more specifically does not clone the moves list, and sets depth to zero. Intended for an Engine or main thread to share the board to users wanting to search.

Safety

After this method has called, [Board::undo_move()] cannot be called immediately after. Undoing moves can only be done once a move has been played, and cannot be called more times than moves have been played since calling [Board::shallow_clone()].

Examples

use pleco::Board;

let mut chessboard = Board::default();
let moves = chessboard.generate_moves(); // generate all possible legal moves
chessboard.apply_move(moves[0]); // apply first move

assert_eq!(chessboard.moves_played(), 1);

let board_clone = chessboard.shallow_clone();
assert_eq!(chessboard.moves_played(), board_clone.moves_played());

assert_ne!(chessboard.depth(),board_clone.depth()); // different depths

[src]

Constructs a parallel clone of the Board.

Similar to [Board::shallow_clone()], but keeps the current search depth the same. Should be used when implementing a searcher, and want to search a list of moves in parallel with different threads.

Safety

After this method has called, [Board::undo_move()] cannot be called immediately after. Undoing moves can only be done once a move has been played, and cannot be called more times than moves have been played since calling [Board::parallel_clone()].

Examples

use pleco::Board;

let mut chessboard = Board::default();
let moves = chessboard.generate_moves(); // generate all possible legal moves
chessboard.apply_move(moves[0]);
assert_eq!(chessboard.moves_played(), 1);

let board_clone = chessboard.parallel_clone();
assert_eq!(chessboard.moves_played(), board_clone.moves_played());

assert_eq!(chessboard.depth(),board_clone.depth()); // different depths

[src]

Returns an exact clone of the current board.

Safety

This method is unsafe as it can give the impression of owning and operating a board structure, rather than just being provided shallow clones.

[src]

Constructs a board from a FEN String.

FEN stands for Forsyth-Edwards Notation, and is a way of representing a board through a string of characters. More information can be found on the ChessWiki.

Examples

use pleco::Board;

let board = Board::new_from_fen("rnbqkbnr/pppppppp/8/8/8/8/PPPPPPPP/RNBQKBNR w KQkq - 0 1");
assert_eq!(board.count_all_pieces(),32);

Panics

The FEN string must be valid, or else the method will panic.

There is a possibility of the FEN string representing an unvalid position, with no panics resulting. The Constructed Board may have some Undefined Behavior as a result. It is up to the user to give a valid FEN string.

[src]

Creates a FEN String of the Given Board.

FEN stands for Forsyth-Edwards Notation, and is a way of representing a board through a string of characters. More information can be found on the ChessWiki.

Examples

use pleco::Board;

let board = Board::default();
assert_eq!(board.get_fen(),"rnbqkbnr/pppppppp/8/8/8/8/PPPPPPPP/RNBQKBNR w KQkq - 0 1");

impl Board
[src]

[src]

Applies a move to the Board.

Safety

The passed in [BitMove] must be

Panics

The supplied BitMove must be both a valid move for that position, as well as a valid [BitMove], Otherwise, a panic will occur. Valid BitMoves can be generated with [Board::generate_moves()], which guarantees that only Legal moves will be created.

[src]

Applies a UCI move to the board. If the move is a valid string representing a UCI move, then true will be returned & the move will be applied. Otherwise, false is returned and the board isn't changed.

Examples

use pleco::Board;

let mut board = Board::default();
let success = board.apply_uci_move("e2e4");

assert!(success);

[src]

Un-does the previously applied move, allowing the Board to return to it's most recently held state.

Panics

Cannot be done if after a [Board::shallow_clone()] or [Board::parallel_clone()] has been done and no subsequent moves have been played.

Examples

use pleco::Board;

let mut chessboard = Board::default();

let moves = chessboard.generate_moves();
chessboard.apply_move(moves[0]);

let mut board_clone = chessboard.shallow_clone();

chessboard.undo_move(); // works, chessboard existed before the move was played
board_clone.undo_move(); // error: board_clone was created after the move was applied

[src]

Apply a "Null Move" to the board, essentially swapping the current turn of the board without moving any pieces.

Safety

This method should only be used for special evaluation purposes, as it does not give an accurate or legal state of the chess board.

Unsafe as it allows for Null Moves to be applied in states of check, which is never a valid state of a chess game.

Panics

Panics if the Board is currently in check.

Examples

use pleco::board::*;

let mut chessboard = Board::default();
let board_clone = chessboard.shallow_clone();

unsafe { chessboard.apply_null_move(); }

assert_ne!(chessboard.depth(), board_clone.depth());

[src]

Undo a "Null Move" to the Board, returning to the previous state.

Safety

This method should only be used if it can be guaranteed that the last played move from the current state is a Null-Move. Otherwise, a panic will occur.

Examples

use pleco::board::*;

let mut chessboard = Board::default();
let board_clone = chessboard.shallow_clone();

unsafe { chessboard.apply_null_move(); }

assert_ne!(chessboard.ply(), board_clone.ply());

unsafe { chessboard.undo_null_move(); }

assert_eq!(chessboard.moves_played(), board_clone.moves_played());
assert_eq!(chessboard.get_fen(), board_clone.get_fen());

[src]

Get a List of legal [BitMove]s for the player whose turn it is to move.

This method already takes into account if the Board is currently in check, and will return legal moves only.

# Examples

use pleco::board::*;

let chessboard = Board::default();
let moves = chessboard.generate_moves();

println!("There are {} possible legal moves.", moves.len());

[src]

Get a List of all PseudoLegal [BitMove]s for the player whose turn it is to move. Works exactly the same as [Board::generate_moves()], but doesn't guarantee that all the moves are legal for the current position. Moves need to be checked with a [Board::legal_move(move)] in order to be certain of a legal move.

[src]

Get a List of legal [BitMove]s for the player whose turn it is to move or a certain type.

This method already takes into account if the Board is currently in check, and will return legal moves only. If a non-ALL GenType is supplied, only a subset of the total moves will be given.

Panics

Panics if given [GenTypes::QuietChecks] while the current board is in check

Examples

use pleco::board::*;
use pleco::templates::GenTypes;

let chessboard = Board::default();
let capturing_moves = chessboard.generate_moves_of_type(GenTypes::Captures);

assert_eq!(capturing_moves.len(), 0); // no possible captures for the starting position

[src]

Get a List of all PseudoLegal [BitMove]s for the player whose turn it is to move. Works exactly the same as [Board::generate_moves()], but doesn't guarantee that all the moves are legal for the current position. Moves need to be checked with a [Board::legal_move(move)] in order to be certain of a legal move.

This method already takes into account if the Board is currently in check. If a non-ALL GenType is supplied, only a subset of the total moves will be given.

Panics

Panics if given [GenTypes::QuietChecks] while the current board is in check

impl Board
[src]

[src]

Get the Player whose turn it is to move.

Examples

use pleco::{Board,Player};

let chessboard = Board::default();
assert_eq!(chessboard.turn(), Player::White);

[src]

Return the Zobrist Hash.

[src]

Get the total number of moves played.

Examples

use pleco::Board;

let mut chessboard = Board::default();
assert_eq!(chessboard.moves_played(), 0);

let moves = chessboard.generate_moves();
chessboard.apply_move(moves[0]);
assert_eq!(chessboard.moves_played(), 1);

[src]

Get the current depth (half moves from a [Board::shallow_clone()].

[src]

Get the number of half-moves since a Pawn Push, castle, or capture.

[src]

Return the Piece, if any, that was last captured.

[src]

Get a reference to the MagicHelper pre-computed BitBoards.

[src]

Get the current ply of the board.

[src]

Get the current square of en_passant.

If the current en-passant square is none, it should return 64.

impl Board
[src]

[src]

Gets the BitBoard of all pieces.

Examples

use pleco::Board;

let chessboard = Board::default();
assert_eq!(chessboard.get_occupied(), 0xFFFF00000000FFFF);

[src]

Get the BitBoard of the squares occupied by the given player.

Examples

use pleco::{Board,Player};

let chessboard = Board::default();
assert_eq!(chessboard.get_occupied_player(Player::White), 0x000000000000FFFF);

[src]

Returns a Bitboard consisting of only the squares occupied by the White Player.

[src]

Returns a BitBoard consisting of only the squares occupied by the Black Player.

[src]

Returns BitBoard of a single player and that one type of piece.

Examples

use pleco::Board;
use pleco::{Player,Piece};

let chessboard = Board::default();
assert_eq!(chessboard.piece_bb(Player::White,Piece::P), 0x000000000000FF00);

[src]

Returns the BitBoard of the Queens and Rooks of a given player.

Examples

use pleco::{Board,Player};
use pleco::bit_twiddles::*;

let chessboard = Board::default();
assert_eq!(popcount64(chessboard.sliding_piece_bb(Player::White)), 3);

[src]

Returns the BitBoard of the Queens and Bishops of a given player.

Examples

use pleco::{Board,Player};
use pleco::bit_twiddles::*;

let chessboard = Board::default();
assert_eq!(popcount64(chessboard.diagonal_piece_bb(Player::White)), 3);

[src]

Returns the combined BitBoard of both players for a given piece.

Examples

use pleco::{Board,Piece};

let chessboard = Board::default();
assert_eq!(chessboard.piece_bb_both_players(Piece::P), 0x00FF00000000FF00);

[src]

Returns the combined BitBoard of both players for two pieces.

Examples

use pleco::{Board,Piece};
use pleco::bit_twiddles::*;

let chessboard = Board::default();
assert_eq!(popcount64(chessboard.piece_two_bb_both_players(Piece::Q,Piece::K)), 4);

[src]

[src]

Get the total number of pieces of the given piece and player.

Examples

use pleco::{Board,Player,Piece};

let chessboard = Board::default();
assert_eq!(chessboard.count_piece(Player::White, Piece::P), 8);

[src]

Get the total number of pieces a given player has.

Examples

use pleco::{Board,Player,Piece};
use pleco::bit_twiddles::*;

let chessboard = Board::default();
assert_eq!(chessboard.count_pieces_player(Player::White), 16);

[src]

Get the total number of pieces on the board.

Examples

use pleco::{Board,Player,Piece};
use pleco::bit_twiddles::*;

let chessboard = Board::default();
assert_eq!(chessboard.count_all_pieces(), 32);

[src]

Returns the piece (if any) at the given BitBoard for a given player.

Safety

Number of bits must be equal to 1, or else a panic will occur.

[src]

Returns the piece (if any) at the given BitBoard for either player.

Safety

Number of bits must be equal to 1, or else a panic will occur.

[src]

Returns the Piece, if any, at the square.

[src]

Returns the Player, if any, occupying the square.

[src]

Returns the player, if any, at the square.

[src]

Returns the square of the King for a given player

[src]

Returns the pinned pieces of the given player.

Pinned is defined as pinned to the same players king

[src]

Returns the pinned pieces for a given players king. Can contain piece of from both players, but all are garunteed to be pinned to the given player's king.

[src]

Returns the pinning pieces of a given player. e.g, pieces that are pinning a piece to the opponent's king.

[src]

Return if a player has the possibility of castling for a given CastleType.

[src]

Check if the castle path is impeded for the current player.

[src]

Square of the Rook that is involved with the current player's castle.

[src]

Return the last move played, if any.

[src]

Returns if the current player has castled ever.

[src]

Return if the piece (if any) that was captured last move.

impl Board
[src]

[src]

Return if current side to move is in check

[src]

Return if the current side to move is in check_mate.

This method can be computationally expensive, do not use outside of Engines.

[src]

Return if the current side to move is in stalemate.

This method can be computationally expensive, do not use outside of Engines.

[src]

Return the BitBoard of Checks on the current player's king.

[src]

Returns the BitBoard of pieces the current side can move to discover check.

[src]

Gets the Pinned pieces for the given player.

[src]

Returns a BitBoard of possible attacks / defends to a square with a given occupancy.

impl Board
[src]

[src]

Tests if a given move is legal.

[src]

Returns if a move will give check to the opposing player's King.

[src]

Returns the piece that was moved from a given BitMove.

[src]

Returns the piece that was captured, if any from a given BitMove.

impl Board
[src]

[src]

Returns a prettified String of the current board, for Quick Display.

Capital Letters represent White pieces, while lower case represents Black pieces.

[src]

Return the current ARC count of the board's BoardState

[src]

Get Debug Information.

[src]

Prints a prettified representation of the board.

[src]

Print the board alongside useful information.

Mostly for Debugging useage.

[src]

Trait Implementations

impl Display for Board
[src]

[src]

Formats the value using the given formatter. Read more