Uses of Class
com.chess.backend.gamemodel.Chessboard
Packages that use Chessboard
Package
Description
-
Uses of Chessboard in com.chess.backend.domain.models
Methods in com.chess.backend.domain.models that return ChessboardMethods in com.chess.backend.domain.models with parameters of type Chessboard -
Uses of Chessboard in com.chess.backend.gamemodel
Methods in com.chess.backend.gamemodel with parameters of type ChessboardModifier and TypeMethodDescriptionPiece.getAllowedFullMoves
(Chessboard chessboard) Returns all allowed moves of the piece.Piece.getAllowedMoves
(Chessboard chessboard) Converts AllowedFullMoves to an array of Squares representing only the destination of the move. -
Uses of Chessboard in com.chess.backend.gamemodel.abstractmoves
Methods in com.chess.backend.gamemodel.abstractmoves with parameters of type ChessboardModifier and TypeMethodDescriptionMoveBackward.backward
(Chessboard chessboard, Piece piece, boolean attack, boolean jump, boolean peaceful, int limit) Generate concrete possible moves from a given piece and game context.MoveBackward.concretise
(Chessboard chessboard, Piece piece, boolean attack, boolean jump, boolean peaceful) Generate concrete possible moves from a given piece and game context.MoveDiagonal.concretise
(Chessboard chessboard, Piece piece, boolean attack, boolean jump, boolean peaceful) Generate concrete possible moves from a given piece and game context.MoveForward.concretise
(Chessboard chessboard, Piece piece, boolean attack, boolean jump, boolean peaceful) Generate concrete possible moves from a given piece and game context.MoveKnight.concretise
(Chessboard chessboard, Piece piece, boolean attack, boolean jump, boolean peaceful) Generate concrete possible moves from a given piece and game context.MoveLeft.concretise
(Chessboard chessboard, Piece piece, boolean attack, boolean jump, boolean peaceful) Generate concrete possible moves from a given piece and game context.MoveOneBackward.concretise
(Chessboard chessboard, Piece piece, boolean attack, boolean jump, boolean peaceful) Generate concrete possible moves from a given piece and game context.MoveOneDiagonal.concretise
(Chessboard chessboard, Piece piece, boolean attack, boolean jump, boolean peaceful) Generate concrete possible moves from a given piece and game context.MoveOneForward.concretise
(Chessboard chessboard, Piece piece, boolean attack, boolean jump, boolean peaceful) Generate concrete possible moves from a given piece and game context.MoveOneLeft.concretise
(Chessboard chessboard, Piece piece, boolean attack, boolean jump, boolean peaceful) Generate concrete possible moves from a given piece and game context.MoveOneRight.concretise
(Chessboard chessboard, Piece piece, boolean attack, boolean jump, boolean peaceful) Generate concrete possible moves from a given piece and game context.MovePawnCaptureBackward.concretise
(Chessboard chessboard, Piece piece, boolean attack, boolean jump, boolean peaceful) Generate concrete possible moves from a given piece and game context.MovePawnCaptureForward.concretise
(Chessboard chessboard, Piece piece, boolean attack, boolean jump, boolean peaceful) Generate concrete possible moves from a given piece and game context.MoveRight.concretise
(Chessboard chessboard, Piece piece, boolean attack, boolean jump, boolean peaceful) Generate concrete possible moves from a given piece and game context.MoveTwoBackward.concretise
(Chessboard chessboard, Piece piece, boolean attack, boolean jump, boolean peaceful) Generate concrete possible moves from a given piece and game context.MoveTwoForward.concretise
(Chessboard chessboard, Piece piece, boolean attack, boolean jump, boolean peaceful) Generate concrete possible moves from a given piece and game context.Shoot.concretise
(Chessboard chessboard, Piece piece, boolean attack, boolean jump, boolean peaceful) Generate concrete possible shoots from a given piece and game context.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.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.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.Shoot.getNeighborPos
(Chessboard chessboard, Position fromPos, Player activePlayer) 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.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.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.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. -
Uses of Chessboard in com.chess.backend.services
Methods in com.chess.backend.services that return ChessboardModifier and TypeMethodDescriptionstatic Chessboard
ChessboardService.initNewGameBoard
(List<Player> players) create new Chessboard from Players objectMethods in com.chess.backend.services with parameters of type ChessboardModifier and TypeMethodDescriptionChessboardService.getCaptureKingPlayers
(Chessboard chessboard, Player player) Get all players whose kings can be captured by a given player.static Piece
ChessboardService.getPieceByPosition
(Chessboard chessboard, int x, int y) static Piece
ChessboardService.getPieceByPosition
(Chessboard chessboard, Position position) static Square
ChessboardService.getSquare
(Chessboard chessboard, Position position) gets Position object and Chessboard and returns the matched Square object to this position.ChessboardService.getValidMovesForPiece
(Chessboard chessboard, Piece piece, Player player) Gets all valid moves for a piece.static boolean
ChessboardService.hasPlayerValidMoves
(Chessboard chessboard, Player player) Check if a player can perform minimum one valid move.static void
ChessboardService.initClean
(Chessboard chessboard) static boolean
ChessboardService.isCheck
(Chessboard chessboard, Player player) Checks if a king of a given player can be captured be an enemy piece.static ArrayList<EventObject>
ChessboardService.move
(Chessboard chessboard, int fromX, int fromY, int toX, int toY) Apply move to chessboard.static void
ChessboardService.removeOtherPieceTypes
(Chessboard chessboard, PieceType pieceType) static void
ChessboardService.setCommonPiecePlayer
(Chessboard chessboard, PieceType pieceType, Player player) Sets one common player for all pieces of a given pieceType (e.g.