Creates the engine to manage chess game

includes movement, ai moves, castling, en passant, and game finished

Hierarchy

  • ChessEngine

Constructors

Properties

chess: Chess

Accessors

Methods

  • Returns true if a move is a promotion, and false otherwise. Assumes that chess hasn't been updated yet

    Parameters

    • from: Square
    • to: Square

    Returns boolean

  • Returns the robot id of the moving piece in a Move. Assumes that chess hasn't been updated yet

    Returns

    The current piece on the square as a it's robot id as a string

    Parameters

    Returns undefined | string

  • gets ALL legal moves from the provided square

    Returns

    • possible to squares

    Parameters

    • Optional square: Square

      from square

    Returns Move[]

  • returns a square's legal moves as a map

    Returns

    • possible to squares

    Parameters

    • Optional square: Square

      from square

    Returns Square[]

  • Returns the side of the piece on a square or undefined

    Returns

    The current side of the piece on the square or undefined if there is no piece on the square

    Parameters

    • square: Square

      The Square to check.

    Returns undefined | Side

  • Returns the piece on a square or undefined

    Returns

    The current piece on the square as a PieceType enum or undefined if there is no piece

    Parameters

    • square: Square

      The Square to check.

    Returns undefined | PieceType

  • Returns if a square has a piece on it.

    Returns

    true if the square has a piece on it.

    Parameters

    • square: Square

      The Square to check.

    Returns boolean

  • Determines if a move is an En Passant Capture. Assumes that chess hasn't been updated yet

    Returns

    true if the move is an En Passant Capture

    Parameters

    • move: Move

      The Move to analyze.

    Returns boolean

  • Determines if a move is a King Side Castle. Assumes that chess hasn't been updated yet

    Returns

    true if the move is a King Side Castle

    Parameters

    • move: Move

      The Move to analyze.

    Returns boolean

  • Determines if a move is a Queen Side Castle. Assumes that chess hasn't been updated yet

    Returns

    true if the move is a Queen Side Castle

    Parameters

    • move: Move

      The Move to analyze.

    Returns boolean

  • Determines if a move results in a capture with no special shenanigans. Assumes that chess hasn't been updated yet

    Returns

    true if the move is a Capture

    Parameters

    • move: Move

      The Move to analyze.

    Returns boolean

Generated using TypeDoc