About ChessInsights

ChessInsights is a Python-powered chess engine that utilizes bitboards to efficiently calculate valid moves. Currently, when playing against it, it selects a random move from a list of all valid moves in the position. However, I'm working towards building a more powerful evaluation system for better move selection.

Current Features

  • Python-powered chess rule engine
  • Random move selection from legal moves
  • Playable game interface
  • Play from a custom position using FEN
  • PGN move notation and tracking

Future Plans

  • Implementing basic evaluation for better move selection
  • Adding Minimax algorithm with Alpha-Beta pruning
  • Importing & analyzing user games
  • Game Database for storing games played against engine

How It Works: A High-Level Technical Overview

This chess engine is designed around efficient bitboard representations and immutable board states to support fast move generation, rule enforcement, and game state evaluation. The following sections break down the key components:

Core Data Structures

Board Representation: The engine uses a 64‐bit integer (bitboard) to represent the chess board, where each bit corresponds to a square. The overall game state is encapsulated in an immutable BoardState object which includes:

  • piece_locations: A mapping from each piece type to its corresponding bitboard.
  • is_whites_turn: A flag indicating the current player.
  • en_passant_square: A bitboard indicating en passant targets.
  • fifty_move_rule: A counter for the 50-move draw rule.
  • move_number: A counter of the moves played.
  • castling_rights: Encoded rights for castling for both sides.

Move Generation

The engine employs bitboard operations to generate moves for each piece type:

  • Pawns: Generate single and double moves, capture moves (including en passant) and handle promotions.
  • Sliding Pieces (Rook, Bishop, Queen): Utilizes magic bitboards to efficiently generate all moves for sliding pieces in any position.
  • Knights: Utilize jump masks for their unique L-shaped movement.
  • Kings: Generate moves while ensuring that moves do not leave the king in check. Special castling moves are handled separately.

Move Execution and Rule Enforcement

ChessBoard is responsible for move validation and updating the BoardState. The move_piece() method is responsible for executing moves. It:

  • Validates the move against the current board state.
  • Updates the bitboards to reflect piece movement and captures.
  • Handles special moves such as castling, en passant, and pawn promotion.
  • Simulates moves to ensure that the king does not remain in check.
  • Updates BoardState variables to ensure game state is updated.

Game State Evaluation

The server continuously evaluates the game state to detect conditions like checkmate, stalemate, and draw by the 50-move rule (as well as other draw conditions). This ensures that the game terminates correctly when one of these conditions is met.

Engine and Move Generation

An integrated engine component leverages the move generation logic from ChessBoard to select random legal moves from the list of valid moves, providing a simple AI opponent.

PGN and FEN Handling

  • FEN: The engine parses FEN strings to initialize board states and serializes board states back into FEN format. This allows for efficient passing of information between the server and client.
  • PGN: Moves are converted into standard algebraic notation for human readability and game recording. PGN is also utilized to create buttons that allow players to view previous board states in the game.

Web API Integration

The engine is wrapped in a Flask-based web API, allowing users to interact with the game via HTTP requests. Endpoints are available for moving pieces, generating engine moves, undoing moves, and setting up new games.