This repository has been archived on 2021-02-18. You can view files and clone it, but cannot push or open issues or pull requests.
chess/src/main/java/dev/kske/chess/board/Rook.java

93 lines
2.2 KiB
Java

package dev.kske.chess.board;
import java.util.ArrayList;
import java.util.List;
/**
* Project: <strong>Chess</strong><br>
* File: <strong>Rook.java</strong><br>
* Created: <strong>01.07.2019</strong><br>
*
* @since Chess v0.1-alpha
* @author Kai S. K. Engelbart
*/
public class Rook extends Piece {
/**
* Creates rook {@link Piece}.
*
* @param color the color of this rook
* @param board the board on which this rook will be placed
*/
public Rook(Color color, Board board) {
super(color, board);
}
@Override
public boolean isValidMove(Move move) {
return (move.isHorizontal() || move.isVertical()) && isFreePath(move);
}
@Override
protected List<Move> getPseudolegalMoves(Position pos) {
List<Move> moves = new ArrayList<>();
// Horizontal moves to the right
for (int i = pos.x + 1; i < 8; i++) {
Move move = new Move(pos, new Position(i, pos.y));
if (
board.getDest(move) == null
|| board.getDest(move).getColor() != getColor()
) {
moves.add(move);
if (board.getDest(move) != null)
break;
} else
break;
}
// Horizontal moves to the left
for (int i = pos.x - 1; i >= 0; i--) {
Move move = new Move(pos, new Position(i, pos.y));
if (
board.getDest(move) == null
|| board.getDest(move).getColor() != getColor()
) {
moves.add(move);
if (board.getDest(move) != null)
break;
} else
break;
}
// Vertical moves to the top
for (int i = pos.y - 1; i >= 0; i--) {
Move move = new Move(pos, new Position(pos.x, i));
if (
board.getDest(move) == null
|| board.getDest(move).getColor() != getColor()
) {
moves.add(move);
if (board.getDest(move) != null)
break;
} else
break;
}
// Vertical moves to the bottom
for (int i = pos.y + 1; i < 8; i++) {
Move move = new Move(pos, new Position(pos.x, i));
if (
board.getDest(move) == null
|| board.getDest(move).getColor() != getColor()
) {
moves.add(move);
if (board.getDest(move) != null)
break;
} else
break;
}
return moves;
}
@Override
public int getValue() { return 50; }
}