Compare commits
2 commits
419d33bc88
...
0c40eba66f
Author | SHA1 | Date | |
---|---|---|---|
0c40eba66f | |||
|
9063667ca5 |
3 changed files with 35 additions and 6 deletions
|
@ -131,9 +131,11 @@ public class Board {
|
||||||
// White pieces disappear if new move isn't created, don't know why
|
// White pieces disappear if new move isn't created, don't know why
|
||||||
Move copiedMove = new Move(new BoardCoordinate(move.from.x, move.from.y), new BoardCoordinate(move.to.x, move.to.y), get(move.to.x, move.to.y));
|
Move copiedMove = new Move(new BoardCoordinate(move.from.x, move.from.y), new BoardCoordinate(move.to.x, move.to.y), get(move.to.x, move.to.y));
|
||||||
copiedMove.submove = move.submove;
|
copiedMove.submove = move.submove;
|
||||||
|
copiedMove.isPromotion = move.isPromotion;
|
||||||
moveHistory.add(copiedMove);
|
moveHistory.add(copiedMove);
|
||||||
// moveHistory.add(move);
|
// moveHistory.add(move);
|
||||||
set(move.to, get(move.from));
|
Piece movedPiece = get(move.from);
|
||||||
|
set(move.to, move.isPromotion ? new Queen(movedPiece.black, panel) : movedPiece);
|
||||||
set(move.from, null);
|
set(move.from, null);
|
||||||
move(move.submove);
|
move(move.submove);
|
||||||
if (move.submove != null) moveHistory.pop();
|
if (move.submove != null) moveHistory.pop();
|
||||||
|
@ -148,7 +150,8 @@ public class Board {
|
||||||
|
|
||||||
void undoMove(Move move) {
|
void undoMove(Move move) {
|
||||||
if (move == null) return;
|
if (move == null) return;
|
||||||
set(move.from, get(move.to));
|
Piece movedPiece = get(move.to);
|
||||||
|
set(move.from, move.isPromotion ? new Pawn(movedPiece.black, panel) : movedPiece);
|
||||||
set(move.to, move.captured);
|
set(move.to, move.captured);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -6,6 +6,7 @@ public class Move {
|
||||||
public Piece captured;
|
public Piece captured;
|
||||||
// e.g. castling, castle move. Done after.
|
// e.g. castling, castle move. Done after.
|
||||||
public Move submove;
|
public Move submove;
|
||||||
|
public boolean isPromotion;
|
||||||
|
|
||||||
public Move(BoardCoordinate from, BoardCoordinate to) {
|
public Move(BoardCoordinate from, BoardCoordinate to) {
|
||||||
this.from = from;
|
this.from = from;
|
||||||
|
|
|
@ -12,11 +12,36 @@ public class Pawn extends Piece {
|
||||||
public ArrayList<Move> getPossibleMoves(BoardCoordinate position, Board board) {
|
public ArrayList<Move> getPossibleMoves(BoardCoordinate position, Board board) {
|
||||||
ArrayList<Move> possibleMoves = new ArrayList<>();
|
ArrayList<Move> possibleMoves = new ArrayList<>();
|
||||||
if (this.black) {
|
if (this.black) {
|
||||||
possibleMoves.add(new Move(position, new BoardCoordinate(position.x, position.y + 1)));
|
if (board.get(position.x, position.y + 1) == null) {
|
||||||
if (!moved && board.get(position.x, position.y + 1) == null) possibleMoves.add(new Move(position, new BoardCoordinate(position.x, position.y + 2)));
|
Move oneForward = new Move(position, new BoardCoordinate(position.x, position.y + 1));
|
||||||
|
oneForward.isPromotion = position.y + 1 == Board.BOARD_SIZE - 1;
|
||||||
|
possibleMoves.add(oneForward);
|
||||||
|
if (!moved && board.get(position.x, position.y + 2) == null) {
|
||||||
|
possibleMoves.add(new Move(position, new BoardCoordinate(position.x, position.y + 2)));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (board.get(position.x - 1, position.y + 1) != null) {
|
||||||
|
possibleMoves.add(new Move(position, new BoardCoordinate(position.x - 1,position.y + 1)));
|
||||||
|
}
|
||||||
|
if (board.get(position.x + 1, position.y + 1) != null) {
|
||||||
|
possibleMoves.add(new Move(position, new BoardCoordinate(position.x + 1,position.y + 1)));
|
||||||
|
}
|
||||||
|
|
||||||
} else {
|
} else {
|
||||||
possibleMoves.add(new Move(position, new BoardCoordinate(position.x, position.y - 1)));
|
if (board.get(position.x, position.y - 1) == null) {
|
||||||
if (!moved && board.get(position.x, position.y - 1) == null) possibleMoves.add(new Move(position, new BoardCoordinate(position.x, position.y - 2)));
|
Move oneForward = new Move(position, new BoardCoordinate(position.x, position.y - 1));
|
||||||
|
oneForward.isPromotion = position.y - 1 == 0;
|
||||||
|
possibleMoves.add(oneForward);
|
||||||
|
if (!moved && board.get(position.x, position.y - 2) == null) {
|
||||||
|
possibleMoves.add(new Move(position, new BoardCoordinate(position.x, position.y - 2)));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (board.get(position.x - 1, position.y - 1) != null) {
|
||||||
|
possibleMoves.add(new Move(position, new BoardCoordinate(position.x - 1,position.y - 1)));
|
||||||
|
}
|
||||||
|
if (board.get(position.x + 1, position.y - 1) != null) {
|
||||||
|
possibleMoves.add(new Move(position, new BoardCoordinate(position.x + 1,position.y - 1)));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
return possibleMoves;
|
return possibleMoves;
|
||||||
}
|
}
|
||||||
|
|
Reference in a new issue