Uses of Class
com.chess.backend.gamemodel.Move

Packages that use Move
  • Uses of Move in com.chess.backend.gamemodel

    Methods in com.chess.backend.gamemodel that return types with arguments of type Move
    Modifier and Type
    Method
    Description
    Piece.getAllowedFullMoves(Chessboard chessboard)
    Returns all allowed moves of the piece.
  • Uses of Move in com.chess.backend.gamemodel.abstractmoves

    Methods in com.chess.backend.gamemodel.abstractmoves that return types with arguments of type Move
    Modifier and Type
    Method
    Description
    static Set<Move>
    MoveBackward.backward(Chessboard chessboard, Piece piece, boolean attack, boolean jump, boolean peaceful, int limit)
    Generate concrete possible moves from a given piece and game context.
    static Set<Move>
    MoveBackward.concretise(Chessboard chessboard, Piece piece, boolean attack, boolean jump, boolean peaceful)
    Generate concrete possible moves from a given piece and game context.
    static Set<Move>
    MoveDiagonal.concretise(Chessboard chessboard, Piece piece, boolean attack, boolean jump, boolean peaceful)
    Generate concrete possible moves from a given piece and game context.
    static Set<Move>
    MoveForward.concretise(Chessboard chessboard, Piece piece, boolean attack, boolean jump, boolean peaceful)
    Generate concrete possible moves from a given piece and game context.
    static Set<Move>
    MoveKnight.concretise(Chessboard chessboard, Piece piece, boolean attack, boolean jump, boolean peaceful)
    Generate concrete possible moves from a given piece and game context.
    static Set<Move>
    MoveLeft.concretise(Chessboard chessboard, Piece piece, boolean attack, boolean jump, boolean peaceful)
    Generate concrete possible moves from a given piece and game context.
    static Set<Move>
    MoveOneBackward.concretise(Chessboard chessboard, Piece piece, boolean attack, boolean jump, boolean peaceful)
    Generate concrete possible moves from a given piece and game context.
    static Set<Move>
    MoveOneDiagonal.concretise(Chessboard chessboard, Piece piece, boolean attack, boolean jump, boolean peaceful)
    Generate concrete possible moves from a given piece and game context.
    static Set<Move>
    MoveOneForward.concretise(Chessboard chessboard, Piece piece, boolean attack, boolean jump, boolean peaceful)
    Generate concrete possible moves from a given piece and game context.
    static Set<Move>
    MoveOneLeft.concretise(Chessboard chessboard, Piece piece, boolean attack, boolean jump, boolean peaceful)
    Generate concrete possible moves from a given piece and game context.
    static Set<Move>
    MoveOneRight.concretise(Chessboard chessboard, Piece piece, boolean attack, boolean jump, boolean peaceful)
    Generate concrete possible moves from a given piece and game context.
    static Set<Move>
    MovePawnCaptureBackward.concretise(Chessboard chessboard, Piece piece, boolean attack, boolean jump, boolean peaceful)
    Generate concrete possible moves from a given piece and game context.
    static Set<Move>
    MovePawnCaptureForward.concretise(Chessboard chessboard, Piece piece, boolean attack, boolean jump, boolean peaceful)
    Generate concrete possible moves from a given piece and game context.
    static Set<Move>
    MoveRight.concretise(Chessboard chessboard, Piece piece, boolean attack, boolean jump, boolean peaceful)
    Generate concrete possible moves from a given piece and game context.
    static Set<Move>
    MoveTwoBackward.concretise(Chessboard chessboard, Piece piece, boolean attack, boolean jump, boolean peaceful)
    Generate concrete possible moves from a given piece and game context.
    static Set<Move>
    MoveTwoForward.concretise(Chessboard chessboard, Piece piece, boolean attack, boolean jump, boolean peaceful)
    Generate concrete possible moves from a given piece and game context.
    static Set<Move>
    Shoot.concretise(Chessboard chessboard, Piece piece, boolean attack, boolean jump, boolean peaceful)
    Generate concrete possible shoots from a given piece and game context.
    static Set<Move>
    MoveDiagonal.diagonal(Chessboard chessboard, Piece piece, boolean attack, boolean jump, boolean peaceful, int limit)
    Generate concrete possible moves from a given piece and game context.
    static Set<Move>
    MoveDiagonal.diagonal(Chessboard chessboard, Piece piece, boolean attack, boolean jump, boolean peaceful, int limit, Position.Direction direction)
    Generate concrete possible moves from a given piece and game context.
    static Set<Move>
    MoveForward.forward(Chessboard chessboard, Piece piece, boolean attack, boolean jump, boolean peaceful, int limit)
    Generate concrete possible moves from a given piece and game context.
    static Set<Move>
    MoveKnight.knight(Chessboard chessboard, Piece piece, boolean attack, boolean jump, boolean peaceful, int limit, Position.Direction direction1, Position.Direction direction2)
    Generate concrete possible moves from a given piece and game context.
    static Set<Move>
    MoveLeft.left(Chessboard chessboard, Piece piece, boolean attack, boolean jump, boolean peaceful, int limit)
    Generate concrete possible moves from a given piece and game context.
    static Set<Move>
    MoveRight.right(Chessboard chessboard, Piece piece, boolean attack, boolean jump, boolean peaceful, int limit)
    Generate concrete possible moves from a given piece and game context.
    static Set<Move>
    Shoot.shoot(Chessboard chessboard, Piece piece, boolean attack, boolean jump, boolean peaceful, int limit)
    Generate concrete possible moves from a given piece and game context.