Othello/src/othello/State.java

148 lines
3.8 KiB
Java
Raw Normal View History

2021-01-27 11:49:49 +01:00
package othello;
2021-02-16 13:41:20 +01:00
import othello.players.Player;
import java.util.LinkedList;
import java.util.List;
2021-01-27 11:49:49 +01:00
public class State {
public static List<State> previousSituations = new LinkedList<>();
2021-02-23 14:28:01 +01:00
private final Player[][] board;
private final Player player1;
private final Player player2;
private Player currentPlayer;
private int n1;
private int n2;
2021-01-27 12:24:17 +01:00
public State(Player[][] board, Player p1, Player p2) {
2021-01-27 12:24:17 +01:00
this.board = board;
this.player1 = p1;
this.player2 = p2;
currentPlayer = p1;
this.n1 = 2;
this.n2 = 2;
2021-01-27 12:24:17 +01:00
}
2021-01-27 11:49:49 +01:00
public boolean isOver() {
return n1 == 0 || n2 == 0 || (getMove(player1).isEmpty() && getMove(player2).isEmpty());
}
public LinkedList<Pair<Point, Point>> getMove(Player player) {
// Pair<Depart, Arrivee>
LinkedList<Pair<Point, Point>> moves = new LinkedList<>();
// Parcours du plateau de jeu
for (int y = 0; y < this.board.length; y++) {
for (int x = 0; x < this.board[y].length; x++) {
if (this.board[y][x] == player) {
// Recherche autour du pion du joueur courant
2021-02-10 12:26:47 +01:00
for (int deltaY = -1; deltaY < 2; deltaY++) {
for (int deltaX = -1; deltaX < 2; deltaX++) {
2021-02-12 09:57:05 +01:00
// La position du pion trouvée est exclue
// Si une place libre est trouvée elle est ajoutée à la liste des coups
try {
Point current = new Point(y, x);
if (this.board[y+deltaY][x+deltaX] == null) {
moves.add(new Pair<>(current, new Point(y + deltaY, x + deltaX)));
2021-02-10 12:26:47 +01:00
}
Point other = new Point(y + 2 * deltaY, x + 2 * deltaX);
2021-02-23 14:57:31 +01:00
if(this.board[other.getY()][other.getX()] == null && current.isJump(other,this.board))
moves.add(new Pair<>(current, other));
} catch(ArrayIndexOutOfBoundsException ignored) {}
}
}
}
}
}
return moves;
2021-01-27 11:49:49 +01:00
}
2021-02-16 13:41:20 +01:00
public int getScore(Player player) {
return player == player1 ? n1 : n2;
2021-01-27 11:49:49 +01:00
}
2021-02-16 13:41:20 +01:00
public Player getWinner() {
int scoreP1 = getScore(player1), scoreP2 = getScore(player2);
if(scoreP1 > scoreP2)
return player1;
else if(scoreP2 > scoreP1)
return player2;
return null;
}
public State play(Pair<Point,Point> move) {
State copy = this.copy();
copy.board[move.getRight().getY()][move.getRight().getX()] = copy.getCurrentPlayer();
2021-02-23 14:57:31 +01:00
if(move.getLeft().isJump(move.getRight(),copy.board)){
copy.board[move.getLeft().getY()][move.getLeft().getX()] = null;
}
2021-02-12 09:57:05 +01:00
for(int i = -1; i < 2; i++){
for(int z = -1; z < 2; z++){
2021-02-02 09:14:10 +01:00
try {
2021-02-23 14:57:31 +01:00
copy.board[move.getRight().getY() + i][move.getRight().getX() + z] = copy.getCurrentPlayer();
}catch (IndexOutOfBoundsException ignored) {}
2021-02-02 09:14:10 +01:00
}
}
int ni = 0, nj = 0;
2021-02-23 14:57:31 +01:00
for (Player[] players : copy.board) {
2021-02-22 21:17:10 +01:00
for (Player player : players) {
2021-02-23 14:57:31 +01:00
if (player == copy.player1) {
ni++;
}
2021-02-23 14:57:31 +01:00
else if (player == copy.player2) {
nj++;
}
}
}
copy.n1 = ni;
copy.n2 = nj;
copy.switchPlayer();
return copy;
2021-01-27 11:49:49 +01:00
}
2021-02-16 13:41:20 +01:00
public Player getCurrentPlayer() {
2021-01-27 12:24:17 +01:00
return currentPlayer;
}
2021-02-22 21:17:10 +01:00
2021-02-16 13:41:20 +01:00
public void setCurrentPlayer(Player currentPlayer) {
2021-01-27 13:00:52 +01:00
this.currentPlayer = currentPlayer;
}
public State copy () {
State copy = new State(this.board, this.player1, this.player2);
2021-02-12 09:57:05 +01:00
for (int i = 0; i < this.board.length; i++) {
System.arraycopy(this.board[i], 0, copy.board[i], 0, this.board.length);
2021-01-27 13:00:52 +01:00
}
2021-02-12 09:57:05 +01:00
copy.setCurrentPlayer(this.currentPlayer);
copy.n1 = n1;
copy.n2 = n2;
return copy;
2021-01-27 13:00:52 +01:00
}
public void switchPlayer() {
setCurrentPlayer(getCurrentPlayer() == this.player1 ? player2 : player1);
2021-01-27 13:00:52 +01:00
}
/**
* TODO: display the current state of the board
*/
@Override
public String toString() {
StringBuilder str = new StringBuilder();
for (Player[] players : board) {
for (int x = 0; x < board.length; x++) {
if (players[x] == player1)
str.append("O");
else if (players[x] == player2)
str.append("X");
else
str.append(".");
str.append(" ");
}
str.append("\r\n");
}
return str.toString();
}
2021-01-27 11:49:49 +01:00
}