Make piece move restrictions, minor bugfixes
This commit is contained in:
parent
df2268cd55
commit
1f578b0770
2 changed files with 52 additions and 6 deletions
|
@ -1,5 +1,6 @@
|
|||
import java.awt.Color;
|
||||
import java.awt.Graphics;
|
||||
import java.util.ArrayList;
|
||||
|
||||
public class Board {
|
||||
// Width and height of each board tile
|
||||
|
@ -46,11 +47,21 @@ public class Board {
|
|||
}
|
||||
}
|
||||
|
||||
public boolean outOfBounds(int x, int y) {
|
||||
return x < 0 || y < 0 || x >= BOARD_SIZE || y >= BOARD_SIZE;
|
||||
}
|
||||
|
||||
public boolean outOfBounds(BoardCoordinate coordinate) {
|
||||
return outOfBounds(coordinate.x, coordinate.y);
|
||||
}
|
||||
|
||||
public Piece get(int x, int y) {
|
||||
if (outOfBounds(x, y)) return null;
|
||||
return board[y][x];
|
||||
}
|
||||
|
||||
public Piece get(BoardCoordinate coordinate) {
|
||||
if (coordinate == null) return null;
|
||||
return get(coordinate.x, coordinate.y);
|
||||
}
|
||||
|
||||
|
@ -88,12 +99,15 @@ public class Board {
|
|||
// Get board coordinate of mouse release
|
||||
BoardCoordinate newCoordinate = new ScreenCoordinate(x, y).toBoard();
|
||||
// Only do something if new coordinate is different from the originating coordinate
|
||||
if (!dragging.equals(newCoordinate)) {
|
||||
// Get piece on target coordinate
|
||||
Piece capturedPiece = get(newCoordinate);
|
||||
// Only move piece to square if there's nothing there, or they are of differing colors
|
||||
if (capturedPiece == null || capturedPiece.black != get(dragging).black) {
|
||||
move(dragging, newCoordinate);
|
||||
if (dragging != null && !newCoordinate.equals(dragging)) {
|
||||
// dragging is BoardCoordinate of piece being dragged
|
||||
Piece piece = get(dragging);
|
||||
ArrayList<BoardCoordinate> legalMoves = piece.getLegalMoves(dragging, this);
|
||||
for (BoardCoordinate legalMove : legalMoves) {
|
||||
if (newCoordinate.equals(legalMove)) {
|
||||
move(dragging, newCoordinate);
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
// Clear dragging
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
import java.awt.*;
|
||||
import java.util.ArrayList;
|
||||
|
||||
public class Piece {
|
||||
// Width and height of placeholder rectangle graphic
|
||||
|
@ -12,6 +13,37 @@ public class Piece {
|
|||
this.black = black;
|
||||
}
|
||||
|
||||
public ArrayList<BoardCoordinate> getPossibleMoves(BoardCoordinate position) {
|
||||
ArrayList<BoardCoordinate> possibleMoves = new ArrayList<>();
|
||||
possibleMoves.add(new BoardCoordinate(position.x - 1, position.y)); // to left
|
||||
possibleMoves.add(new BoardCoordinate(position.x + 1, position.y)); // to right
|
||||
possibleMoves.add(new BoardCoordinate(position.x, position.y - 1)); // to up
|
||||
possibleMoves.add(new BoardCoordinate(position.x, position.y + 1)); // to down
|
||||
return possibleMoves;
|
||||
}
|
||||
|
||||
public ArrayList<BoardCoordinate> getLegalMoves(BoardCoordinate position, Board board) {
|
||||
ArrayList<BoardCoordinate> legalMoves = getPossibleMoves(position);
|
||||
for (int i = 0; i < legalMoves.size(); i++) {
|
||||
BoardCoordinate possibleMove = legalMoves.get(i);
|
||||
Piece targetPiece = board.get(possibleMove);
|
||||
if (
|
||||
// other piece of same color
|
||||
(targetPiece != null && targetPiece.black == black) ||
|
||||
|
||||
// outside of bounds of board
|
||||
possibleMove.x < 0 ||
|
||||
possibleMove.y < 0 ||
|
||||
possibleMove.x >= Board.BOARD_SIZE ||
|
||||
possibleMove.y >= Board.BOARD_SIZE) {
|
||||
legalMoves.remove(i);
|
||||
i--;
|
||||
}
|
||||
// TODO: puts us into check
|
||||
}
|
||||
return legalMoves;
|
||||
}
|
||||
|
||||
// The Piece class doesn't store position,
|
||||
// so when drawing we need to be provided this along with a graphics context when drawing
|
||||
public void draw(Graphics graphics, int x, int y) {
|
||||
|
|
Reference in a new issue