Uses of Class
com.chess.backend.gamemodel.Square
Packages that use Square
Package
Description
-
Uses of Square in com.chess.backend.domain.models
Methods in com.chess.backend.domain.models that return types with arguments of type SquareMethod parameters in com.chess.backend.domain.models with type arguments of type Square -
Uses of Square in com.chess.backend.gamemodel
Methods in com.chess.backend.gamemodel that return types with arguments of type SquareModifier and TypeMethodDescriptionPiece.getAllowedMoves
(Chessboard chessboard) Converts AllowedFullMoves to an array of Squares representing only the destination of the move.Constructors in com.chess.backend.gamemodel with parameters of type Square -
Uses of Square in com.chess.backend.services
Methods in com.chess.backend.services that return SquareModifier and TypeMethodDescriptionstatic Square
ChessboardService.getSquare
(Chessboard chessboard, Position position) gets Position object and Chessboard and returns the matched Square object to this position.Methods in com.chess.backend.services that return types with arguments of type SquareModifier and TypeMethodDescriptionChessGameService.getAllSquaresFromChessboard
(ChessGame game) Returns the ChessBoard of a game objectChessGameService.getBoard
(int gameID) Returns the ChessBoard by gameIDChessboardService.getOccupiedSquares
(ArrayList<ArrayList<Square>> squares) return list of Squares with pieces on itChessboardService.getValidMovesForPiece
(Chessboard chessboard, Piece piece, Player player) Gets all valid moves for a piece.ChessboardService.searchSquaresByPiece
(ArrayList<ArrayList<Square>> squares, PieceType pieceType, Color color, Player player) filter squares according to piece type, color or playerMethod parameters in com.chess.backend.services with type arguments of type SquareModifier and TypeMethodDescriptionstatic int
static int
static int
ChessboardService.getOccupiedSquares
(ArrayList<ArrayList<Square>> squares) return list of Squares with pieces on itstatic int
Replaces Chessboard.top fieldstatic void
static void
ChessboardService.removePiece
(int posX, int posY, ArrayList<ArrayList<Square>> squares) private function that takes two positions, ie x,y and set piece in Square[x][y]ChessboardService.searchSquaresByPiece
(ArrayList<ArrayList<Square>> squares, PieceType pieceType, Color color, Player player) filter squares according to piece type, color or playerstatic void
private function that takes two positions, ie x,y and set piece in Square[x][y]