Ändringar nicklas snyggt

This commit is contained in:
loveb 2022-05-05 08:56:19 +02:00
parent 18dcc24a12
commit afb9dba8d5
2 changed files with 7 additions and 6 deletions

View File

@ -78,7 +78,7 @@ public class Pawn extends PieceKnownIfMoved {
if (piece == null) {
return;
} else if (piece.isWhite() != this.isWhite()) {
tryToMoveAndCheckIfCheck(pieces, movable, pos);
movable.addAll(tryToMoveAndCheckIfCheck(pieces, pos));
}
}
@ -107,7 +107,7 @@ public class Pawn extends PieceKnownIfMoved {
}
} catch (NullPointerException npe) {
// This is an empty spot
tryToMoveAndCheckIfCheck(pieces, movable, pos);
movable.addAll(tryToMoveAndCheckIfCheck(pieces, pos));
} catch (IndexOutOfBoundsException ioobe) {
// This means that the player is at the edge
System.out.println(pos);

View File

@ -123,7 +123,7 @@ public abstract class Piece {
if (!isSelected) {
movable.add(pos);
} else {
tryToMoveAndCheckIfCheck(pieces, movable, pos);
movable.addAll(tryToMoveAndCheckIfCheck(pieces, pos));
}
// Fortsätt att
return false;
@ -142,14 +142,15 @@ public abstract class Piece {
if (!isSelected) {
movable.add(pos);
} else {
tryToMoveAndCheckIfCheck(pieces, movable, pos);
movable.addAll(tryToMoveAndCheckIfCheck(pieces, pos));
}
}
return true;
}
void tryToMoveAndCheckIfCheck(Piece[][] pieces, ArrayList movable, Point pos) {
ArrayList<Point> tryToMoveAndCheckIfCheck(Piece[][] pieces, Point pos) {
ArrayList<Point> movable = new ArrayList<>();
// Kom ihåg vart vi var
Point previousPosition = new Point(this.position);
@ -171,6 +172,7 @@ public abstract class Piece {
if (!inSchack) {
movable.add(pos);
}
return movable;
}
boolean checkIfSchack(Point pos, Piece[][] pieces) {
@ -198,7 +200,6 @@ public abstract class Piece {
attacks.addAll(piece.validAttacks(pieces));
}
}*/
// Kollar ifall kungen står i schack just nu
for (Point attack : attacks) {
Piece attacked = pieces[attack.x][attack.y];