Uses of Class
com.chess.backend.gamemodel.Player
Packages that use Player
Package
Description
-
Uses of Player in com.chess.backend.domain.models
Methods in com.chess.backend.domain.models that return PlayerMethods in com.chess.backend.domain.models that return types with arguments of type PlayerMethods in com.chess.backend.domain.models with parameters of type PlayerMethod parameters in com.chess.backend.domain.models with type arguments of type Player -
Uses of Player in com.chess.backend.gamemodel
Constructors in com.chess.backend.gamemodel with parameters of type Player -
Uses of Player in com.chess.backend.gamemodel.abstractmoves
Methods in com.chess.backend.gamemodel.abstractmoves with parameters of type PlayerModifier and TypeMethodDescriptionShoot.getNeighborPos
(Chessboard chessboard, Position fromPos, Player activePlayer) -
Uses of Player in com.chess.backend.services
Methods in com.chess.backend.services that return types with arguments of type PlayerModifier and TypeMethodDescriptionChessboardService.getCaptureKingPlayers
(Chessboard chessboard, Player player) Get all players whose kings can be captured by a given player.PlayerService.initPlayers
(String[] playerNames) initialize Players objects using their namesMethods in com.chess.backend.services with parameters of type PlayerModifier and TypeMethodDescriptionstatic int
get first position of a Player in the BoardChessboardService.getCaptureKingPlayers
(Chessboard chessboard, Player player) Get all players whose kings can be captured by a given player.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 boolean
ChessboardService.isCheck
(Chessboard chessboard, Player player) Checks if a king of a given player can be captured be an enemy piece.ChessboardService.searchSquaresByPiece
(ArrayList<ArrayList<Square>> squares, PieceType pieceType, Color color, Player player) filter squares according to piece type, color or playerstatic void
ChessGameService.setActivePlayer
(ChessGame chessGame, Player activePlayer) Helper method to set the active player and update all cannon pieces.static void
ChessboardService.setCommonPiecePlayer
(Chessboard chessboard, PieceType pieceType, Player player) Sets one common player for all pieces of a given pieceType (e.g.Method parameters in com.chess.backend.services with type arguments of type PlayerModifier and TypeMethodDescriptionstatic Chessboard
ChessboardService.initNewGameBoard
(List<Player> players) create new Chessboard from Players object