mirror of
https://github.com/lov3b/Schack.git
synced 2025-01-18 12:50:10 +01:00
Ändringar nicklas snyggt
This commit is contained in:
parent
18dcc24a12
commit
afb9dba8d5
@ -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);
|
||||
|
@ -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 gå
|
||||
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];
|
||||
|
Loading…
x
Reference in New Issue
Block a user