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

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

Represents a ChessBoard.

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

Methods

impl Board
[src]

[src]

Constructs a board from the starting position

Examples

use pleco::board::*;
use pleco::templates::Player;

let mut 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()].

[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()].

[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.

Example

use pleco::board::*;

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

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

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]

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. ```rust,should_panic use pleco::board::*;

let mut chessboard = Board::default();

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

let 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.

[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.

[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.

[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

impl Board
[src]

[src]

Get the Player whose turn it is to move.

[src]

Return the Zobrist Hash.

[src]

Get the total number of moves played.

[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.

[src]

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

[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.

[src]

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

[src]

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

[src]

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

[src]

Returns the combined BitBoard of both players for two pieces.

[src]

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

[src]

Get the total number of piees a given player has.

[src]

Get the total number of pieces on the board.

[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