Skip to content
Snippets Groups Projects
Commit ba4b2920 authored by MasterPyo's avatar MasterPyo
Browse files

pawn availableMoves implementation

parent 6be93c05
No related merge requests found
......@@ -41,4 +41,18 @@ public class Board {
public void set(Piece piece) {
pieces[piece.getPosition().getID()] = piece;
}
public boolean isFree(Position p) {
return (pieces[p.getID()] == null);
}
public boolean isBlack(Position p) {
return (pieces[p.getID()].getColor() == Piece.BLACK);
}
public boolean isWhite(Position p) {
return (pieces[p.getID()].getColor() == Piece.WHITE);
}
public boolean isKing(Position p) {
return (pieces[p.getID()].getClass() == Pawn.class); // to change to king later
}
}
package model;
import java.util.ArrayList;
public class Pawn extends Piece {
public Pawn(Position p, int color) {
super(p, color);
}
public Move[] getAvailableMoves(Board b) {
Move[] moves = new Move[5];
public ArrayList<Position> getAvailableMoves(Board b) {
// creates a dynamic list of available moves
ArrayList<Position> moves = new ArrayList<Position>();
Position arrival;
if(color == Piece.WHITE) { // black and white have an opposite direction behavior
// up, free movement
arrival = new Position(p.getX(), p.getY() + 1);
if(Position.isCorrect(arrival) && b.isFree(arrival)) { moves.add(arrival); }
// up right, attack movement
arrival = new Position(p.getX() + 1, p.getY() + 1);
if(Position.isCorrect(arrival) && b.isBlack(arrival)) { moves.add(arrival); }
// up left, attack movement
arrival = new Position(p.getX() - 1, p.getY() + 1);
if(Position.isCorrect(arrival) && b.isBlack(arrival)) { moves.add(arrival); }
}
else {
// down, free movement
arrival = new Position(p.getX(), p.getY() - 1);
if(Position.isCorrect(arrival) && b.isFree(arrival)) { moves.add(arrival); }
// down right, attack movement
arrival = new Position(p.getX() + 1, p.getY() - 1);
if(Position.isCorrect(arrival) && b.isWhite(arrival)) { moves.add(arrival); }
// down left, attack movement
arrival = new Position(p.getX() - 1, p.getY() - 1);
if(Position.isCorrect(arrival) && b.isWhite(arrival)) { moves.add(arrival); }
}
return moves;
}
}
......
package model;
import java.util.ArrayList;
public abstract class Piece {
protected Position p;
protected int color;
......
......@@ -37,4 +37,8 @@ public class Position {
public void setY(int y) {
this.y = y;
}
public static boolean isCorrect(Position arrival) {
return (arrival.getX() >= 1 && arrival.getX() <= 8 && arrival.getY() >= 1 && arrival.getY() <= 8);
}
}
No preview for this file type
File added
No preview for this file type
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment