Compare commits
5 Commits
dd6e033528
...
1022be4ecd
| Author | SHA1 | Date | |
|---|---|---|---|
| 1022be4ecd | |||
| 52d043b888 | |||
| c289546914 | |||
| 13b61ad71c | |||
| 031d3d94ec |
@@ -1,8 +1,7 @@
|
|||||||
package chess;
|
package chess;
|
||||||
|
|
||||||
import chess.ai.AlphaBetaAI;
|
import chess.ai.AI;
|
||||||
import chess.ai.DumbAI;
|
import chess.ai.minimax.AlphaBetaAI;
|
||||||
import chess.ai.HungryAI;
|
|
||||||
import chess.controller.CommandExecutor;
|
import chess.controller.CommandExecutor;
|
||||||
import chess.controller.commands.NewGameCommand;
|
import chess.controller.commands.NewGameCommand;
|
||||||
import chess.controller.event.GameAdaptator;
|
import chess.controller.event.GameAdaptator;
|
||||||
@@ -19,10 +18,10 @@ public class SwingMain {
|
|||||||
Window window = new Window(commandExecutor, false);
|
Window window = new Window(commandExecutor, false);
|
||||||
commandExecutor.addListener(window);
|
commandExecutor.addListener(window);
|
||||||
|
|
||||||
DumbAI ai = new DumbAI(commandExecutor, Color.White);
|
AI ai = new AlphaBetaAI(commandExecutor, Color.White, 3);
|
||||||
commandExecutor.addListener(ai);
|
commandExecutor.addListener(ai);
|
||||||
|
|
||||||
AlphaBetaAI ai2 = new AlphaBetaAI(commandExecutor, Color.Black, 3);
|
AI ai2 = new AlphaBetaAI(commandExecutor, Color.Black, 3);
|
||||||
commandExecutor.addListener(ai2);
|
commandExecutor.addListener(ai2);
|
||||||
|
|
||||||
// Window window2 = new Window(ai2.getSimulation(), false);
|
// Window window2 = new Window(ai2.getSimulation(), false);
|
||||||
|
|||||||
@@ -1,162 +0,0 @@
|
|||||||
package chess.ai;
|
|
||||||
|
|
||||||
import java.util.ArrayList;
|
|
||||||
import java.util.List;
|
|
||||||
import java.util.Random;
|
|
||||||
|
|
||||||
import chess.controller.CommandExecutor;
|
|
||||||
import chess.controller.commands.CastlingCommand;
|
|
||||||
import chess.controller.commands.MoveCommand;
|
|
||||||
import chess.controller.commands.NewGameCommand;
|
|
||||||
import chess.controller.commands.PromoteCommand;
|
|
||||||
import chess.controller.commands.PromoteCommand.PromoteType;
|
|
||||||
import chess.controller.event.EmptyGameDispatcher;
|
|
||||||
import chess.controller.commands.UndoCommand;
|
|
||||||
import chess.model.ChessBoard;
|
|
||||||
import chess.model.Color;
|
|
||||||
import chess.model.Coordinate;
|
|
||||||
import chess.model.Game;
|
|
||||||
import chess.model.Move;
|
|
||||||
|
|
||||||
public class AlphaBetaAI extends AI {
|
|
||||||
|
|
||||||
private final int searchDepth;
|
|
||||||
private final PieceCost pieceCost;
|
|
||||||
private final CommandExecutor simulation;
|
|
||||||
private final Game gameSimulation;
|
|
||||||
|
|
||||||
private final int GREAT_MOVE = -9999;
|
|
||||||
private final int HORRIBLE_MOVE = -GREAT_MOVE;
|
|
||||||
|
|
||||||
public AlphaBetaAI(CommandExecutor commandExecutor, Color color, int searchDepth) {
|
|
||||||
super(commandExecutor, color);
|
|
||||||
this.searchDepth = searchDepth;
|
|
||||||
this.pieceCost = new PieceCost(color);
|
|
||||||
this.gameSimulation = new Game();
|
|
||||||
this.simulation = new CommandExecutor(this.gameSimulation, new EmptyGameDispatcher());
|
|
||||||
}
|
|
||||||
|
|
||||||
public CommandExecutor getSimulation() {
|
|
||||||
return simulation;
|
|
||||||
}
|
|
||||||
|
|
||||||
private int getBoardEvaluation() {
|
|
||||||
final ChessBoard board = this.gameSimulation.getBoard();
|
|
||||||
int result = 0;
|
|
||||||
for (int i = 0; i < Coordinate.VALUE_MAX; i++) {
|
|
||||||
for (int j = 0; j < Coordinate.VALUE_MAX; j++) {
|
|
||||||
result += pieceCost.getCost(board.pieceAt(new Coordinate(i, j)));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if (this.gameSimulation.getPlayerTurn() != color)
|
|
||||||
return -result;
|
|
||||||
return result;
|
|
||||||
}
|
|
||||||
|
|
||||||
private int getEndGameEvaluation() {
|
|
||||||
Color currentTurn = this.gameSimulation.getPlayerTurn();
|
|
||||||
if (currentTurn == this.color) {
|
|
||||||
return HORRIBLE_MOVE;
|
|
||||||
} else {
|
|
||||||
if (this.gameSimulation.getBoard().isKingInCheck(currentTurn))
|
|
||||||
return GREAT_MOVE;
|
|
||||||
return getBoardEvaluation() - PieceCost.PAWN;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private void simulateMove(Move move) {
|
|
||||||
sendCommand(new MoveCommand(move), this.simulation);
|
|
||||||
if (this.gameSimulation.getBoard().pawnShouldBePromoted())
|
|
||||||
sendCommand(new PromoteCommand(PromoteType.Queen), this.simulation);
|
|
||||||
}
|
|
||||||
|
|
||||||
private void simulateUndo() {
|
|
||||||
sendCommand(new UndoCommand(), this.simulation);
|
|
||||||
}
|
|
||||||
|
|
||||||
private int negaMax(int depth, int alpha, int beta) {
|
|
||||||
if (depth == 0)
|
|
||||||
return getBoardEvaluation();
|
|
||||||
|
|
||||||
int value = Integer.MIN_VALUE;
|
|
||||||
|
|
||||||
List<Move> moves = getAllowedMoves(this.simulation);
|
|
||||||
|
|
||||||
if (moves.isEmpty())
|
|
||||||
return getEndGameEvaluation();
|
|
||||||
|
|
||||||
for (Move move : moves) {
|
|
||||||
simulateMove(move);
|
|
||||||
value = Integer.max(value, -negaMax(depth - 1, -beta, -alpha));
|
|
||||||
simulateUndo();
|
|
||||||
alpha = Integer.max(alpha, value);
|
|
||||||
if (alpha >= beta)
|
|
||||||
return value;
|
|
||||||
}
|
|
||||||
|
|
||||||
return value;
|
|
||||||
}
|
|
||||||
|
|
||||||
private Move getBestMove() {
|
|
||||||
List<Move> moves = getAllowedMoves(this.simulation);
|
|
||||||
int bestMove = Integer.MIN_VALUE;
|
|
||||||
List<Move> bestMoves = new ArrayList<>(20);
|
|
||||||
|
|
||||||
for (Move move : moves) {
|
|
||||||
simulateMove(move);
|
|
||||||
int value = -negaMax(this.searchDepth - 1, Integer.MIN_VALUE, Integer.MAX_VALUE);
|
|
||||||
simulateUndo();
|
|
||||||
if (value > bestMove) {
|
|
||||||
bestMove = value;
|
|
||||||
bestMoves.clear();
|
|
||||||
bestMoves.add(move);
|
|
||||||
} else if (value == bestMove) {
|
|
||||||
bestMoves.add(move);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
System.out.println("Best move : " + bestMove + " count : " + bestMoves.size());
|
|
||||||
|
|
||||||
return bestMoves.get(new Random().nextInt(bestMoves.size()));
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public void onGameStart() {
|
|
||||||
sendCommand(new NewGameCommand(), this.simulation);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public void onGameEnd() {
|
|
||||||
this.simulation.close();
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public void onPawnPromoted(PromoteType promotion) {
|
|
||||||
sendCommand(new PromoteCommand(promotion), this.simulation);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public void onCastling(boolean bigCastling) {
|
|
||||||
sendCommand(new CastlingCommand(bigCastling), this.simulation);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public void onMove(Move move) {
|
|
||||||
sendCommand(new MoveCommand(move), this.simulation);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
protected void play() {
|
|
||||||
long current = System.currentTimeMillis();
|
|
||||||
Move move = getBestMove();
|
|
||||||
long elapsed = System.currentTimeMillis() - current;
|
|
||||||
System.out.println("Took " + elapsed + "ms");
|
|
||||||
sendCommand(new MoveCommand(move));
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
protected void promote(Coordinate pawnCoords) {
|
|
||||||
sendCommand(new PromoteCommand(PromoteType.Queen));
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
@@ -26,7 +26,7 @@ public class HungryAI extends AI {
|
|||||||
|
|
||||||
private int getMoveCost(Move move) {
|
private int getMoveCost(Move move) {
|
||||||
Piece piece = pieceAt(move.getDeadPieceCoords());
|
Piece piece = pieceAt(move.getDeadPieceCoords());
|
||||||
return pieceCost.getCost(piece);
|
return - (int) pieceCost.getCost(piece);
|
||||||
}
|
}
|
||||||
|
|
||||||
private List<Move> getBestMoves() {
|
private List<Move> getBestMoves() {
|
||||||
|
|||||||
@@ -10,57 +10,57 @@ import chess.model.pieces.Pawn;
|
|||||||
import chess.model.pieces.Queen;
|
import chess.model.pieces.Queen;
|
||||||
import chess.model.pieces.Rook;
|
import chess.model.pieces.Rook;
|
||||||
|
|
||||||
public class PieceCost implements PieceVisitor<Integer> {
|
public class PieceCost implements PieceVisitor<Float> {
|
||||||
|
|
||||||
private final Color player;
|
private final Color player;
|
||||||
|
|
||||||
public static final int BISHOP = 3;
|
public static final float BISHOP = 30;
|
||||||
public static final int KING = 90;
|
public static final float KING = 900;
|
||||||
public static final int KNIGHT = 3;
|
public static final float KNIGHT = 30;
|
||||||
public static final int PAWN = 1;
|
public static final float PAWN = 10;
|
||||||
public static final int QUEEN = 9;
|
public static final float QUEEN = 90;
|
||||||
public static final int ROOK = 5;
|
public static final float ROOK = 50;
|
||||||
|
|
||||||
public PieceCost(Color color) {
|
public PieceCost(Color color) {
|
||||||
this.player = color;
|
this.player = color;
|
||||||
}
|
}
|
||||||
|
|
||||||
public int getCost(Piece piece) {
|
public float getCost(Piece piece) {
|
||||||
if (piece == null)
|
if (piece == null)
|
||||||
return 0;
|
return 0;
|
||||||
int cost = visit(piece);
|
float cost = visit(piece);
|
||||||
if (piece.getColor() != player)
|
if (piece.getColor() != player)
|
||||||
cost = -cost;
|
cost = -cost;
|
||||||
return cost;
|
return cost;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public Integer visitPiece(Bishop bishop) {
|
public Float visitPiece(Bishop bishop) {
|
||||||
return BISHOP;
|
return BISHOP;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public Integer visitPiece(King king) {
|
public Float visitPiece(King king) {
|
||||||
return KING;
|
return KING;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public Integer visitPiece(Knight knight) {
|
public Float visitPiece(Knight knight) {
|
||||||
return KNIGHT;
|
return KNIGHT;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public Integer visitPiece(Pawn pawn) {
|
public Float visitPiece(Pawn pawn) {
|
||||||
return PAWN;
|
return PAWN;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public Integer visitPiece(Queen queen) {
|
public Float visitPiece(Queen queen) {
|
||||||
return QUEEN;
|
return QUEEN;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public Integer visitPiece(Rook rook) {
|
public Float visitPiece(Rook rook) {
|
||||||
return ROOK;
|
return ROOK;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
129
app/src/main/java/chess/ai/PiecePosCost.java
Normal file
129
app/src/main/java/chess/ai/PiecePosCost.java
Normal file
@@ -0,0 +1,129 @@
|
|||||||
|
package chess.ai;
|
||||||
|
|
||||||
|
import java.util.Arrays;
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
import chess.model.Color;
|
||||||
|
import chess.model.Coordinate;
|
||||||
|
import chess.model.Piece;
|
||||||
|
import chess.model.PieceVisitor;
|
||||||
|
import chess.model.pieces.Bishop;
|
||||||
|
import chess.model.pieces.King;
|
||||||
|
import chess.model.pieces.Knight;
|
||||||
|
import chess.model.pieces.Pawn;
|
||||||
|
import chess.model.pieces.Queen;
|
||||||
|
import chess.model.pieces.Rook;
|
||||||
|
|
||||||
|
public class PiecePosCost implements PieceVisitor<List<Float>> {
|
||||||
|
|
||||||
|
private final Color color;
|
||||||
|
|
||||||
|
private static final List<Float> BISHOP = Arrays.asList(
|
||||||
|
-2.0f, -1.0f, -1.0f, -1.0f, -1.0f, -1.0f, -1.0f, -2.0f,
|
||||||
|
-1.0f, 0.0f, 0.0f, 0.0f, 0.0f, 0.0f, 0.0f, -1.0f,
|
||||||
|
-1.0f, 0.0f, 0.5f, 1.0f, 1.0f, 0.5f, 0.0f, -1.0f,
|
||||||
|
-1.0f, 0.5f, 0.5f, 1.0f, 1.0f, 0.5f, 0.5f, -1.0f,
|
||||||
|
-1.0f, 0.0f, 1.0f, 1.0f, 1.0f, 1.0f, 0.0f, -1.0f,
|
||||||
|
-1.0f, 1.0f, 1.0f, 1.0f, 1.0f, 1.0f, 1.0f, -1.0f,
|
||||||
|
-1.0f, 0.5f, 0.0f, 0.0f, 0.0f, 0.0f, 0.5f, -1.0f,
|
||||||
|
-2.0f, -1.0f, -1.0f, -1.0f, -1.0f, -1.0f, -1.0f, -2.0f);
|
||||||
|
|
||||||
|
private static final List<Float> KING = Arrays.asList(
|
||||||
|
-3.0f, -4.0f, -4.0f, -5.0f, -5.0f, -4.0f, -4.0f, -3.0f,
|
||||||
|
-3.0f, -4.0f, -4.0f, -5.0f, -5.0f, -4.0f, -4.0f, -3.0f,
|
||||||
|
-3.0f, -4.0f, -4.0f, -5.0f, -5.0f, -4.0f, -4.0f, -3.0f,
|
||||||
|
-3.0f, -4.0f, -4.0f, -5.0f, -5.0f, -4.0f, -4.0f, -3.0f,
|
||||||
|
-2.0f, -3.0f, -3.0f, -4.0f, -4.0f, -3.0f, -3.0f, -2.0f,
|
||||||
|
-1.0f, -2.0f, -2.0f, -2.0f, -2.0f, -2.0f, -2.0f, -1.0f,
|
||||||
|
2.0f, 2.0f, 0.0f, 0.0f, 0.0f, 0.0f, 2.0f, 2.0f,
|
||||||
|
2.0f, 3.0f, 1.0f, 0.0f, 0.0f, 1.0f, 3.0f, 2.0f);
|
||||||
|
|
||||||
|
private static final List<Float> KNIGHT = Arrays.asList(
|
||||||
|
-5.0f, -4.0f, -3.0f, -3.0f, -3.0f, -3.0f, -4.0f, -5.0f,
|
||||||
|
-4.0f, -2.0f, 0.0f, 0.0f, 0.0f, 0.0f, -2.0f, -4.0f,
|
||||||
|
-3.0f, 0.0f, 1.0f, 1.5f, 1.5f, 1.0f, 0.0f, -3.0f,
|
||||||
|
-3.0f, 0.5f, 1.5f, 2.0f, 2.0f, 1.5f, 0.5f, -3.0f,
|
||||||
|
-3.0f, 0.0f, 1.5f, 2.0f, 2.0f, 1.5f, 0.0f, -3.0f,
|
||||||
|
-3.0f, 0.5f, 1.0f, 1.5f, 1.5f, 1.0f, 0.5f, -3.0f,
|
||||||
|
-4.0f, -2.0f, 0.0f, 0.5f, 0.5f, 0.0f, -2.0f, -4.0f,
|
||||||
|
-5.0f, -4.0f, -3.0f, -3.0f, -3.0f, -3.0f, -4.0f, -5.0f);
|
||||||
|
|
||||||
|
private static final List<Float> PAWN = Arrays.asList(
|
||||||
|
0.0f, 0.0f, 0.0f, 0.0f, 0.0f, 0.0f, 0.0f, 0.0f,
|
||||||
|
5.0f, 5.0f, 5.0f, 5.0f, 5.0f, 5.0f, 5.0f, 5.0f,
|
||||||
|
1.0f, 1.0f, 2.0f, 3.0f, 3.0f, 2.0f, 1.0f, 1.0f,
|
||||||
|
0.5f, 0.5f, 1.0f, 2.5f, 2.5f, 1.0f, 0.5f, 0.5f,
|
||||||
|
0.0f, 0.0f, 1.0f, 2.0f, 2.0f, 1.0f, 0.0f, 0.0f,
|
||||||
|
0.5f, -0.5f, -1.0f, 0.0f, 0.0f, -1.0f, -0.5f, 0.5f,
|
||||||
|
0.5f, 1.0f, 1.0f, -2.0f, -2.0f, 1.0f, 1.0f, 0.5f,
|
||||||
|
0.0f, 0.0f, 0.0f, 0.0f, 0.0f, 0.0f, 0.0f, 0.0f);
|
||||||
|
|
||||||
|
private static final List<Float> QUEEN = Arrays.asList(
|
||||||
|
-2.0f, -1.0f, -1.0f, -0.5f, -0.5f, -1.0f, -1.0f, -2.0f,
|
||||||
|
-1.0f, 0.0f, 0.0f, 0.0f, 0.0f, 0.0f, 0.0f, -1.0f,
|
||||||
|
-1.0f, 0.0f, 0.5f, 0.5f, 0.5f, 0.5f, 0.0f, -1.0f,
|
||||||
|
-0.5f, 0.0f, 0.5f, 0.5f, 0.5f, 0.5f, 0.0f, -0.5f,
|
||||||
|
0.0f, 0.0f, 0.5f, 0.5f, 0.5f, 0.5f, 0.0f, -0.5f,
|
||||||
|
-1.0f, 0.5f, 0.5f, 0.5f, 0.5f, 0.5f, 0.0f, -1.0f,
|
||||||
|
-1.0f, 0.0f, 0.5f, 0.0f, 0.0f, 0.0f, 0.0f, -1.0f,
|
||||||
|
-2.0f, -1.0f, -1.0f, -0.5f, -0.5f, -1.0f, -1.0f, -2.0f);
|
||||||
|
|
||||||
|
private static final List<Float> ROOK = Arrays.asList(
|
||||||
|
0.0f, 0.0f, 0.0f, 0.0f, 0.0f, 0.0f, 0.0f, 0.0f,
|
||||||
|
0.5f, 1.0f, 1.0f, 1.0f, 1.0f, 1.0f, 1.0f, 0.5f,
|
||||||
|
-0.5f, 0.0f, 0.0f, 0.0f, 0.0f, 0.0f, 0.0f, -0.5f,
|
||||||
|
-0.5f, 0.0f, 0.0f, 0.0f, 0.0f, 0.0f, 0.0f, -0.5f,
|
||||||
|
-0.5f, 0.0f, 0.0f, 0.0f, 0.0f, 0.0f, 0.0f, -0.5f,
|
||||||
|
-0.5f, 0.0f, 0.0f, 0.0f, 0.0f, 0.0f, 0.0f, -0.5f,
|
||||||
|
-0.5f, 0.0f, 0.0f, 0.0f, 0.0f, 0.0f, 0.0f, -0.5f,
|
||||||
|
0.0f, 0.0f, 0.0f, 0.5f, 0.5f, 0.0f, 0.0f, 0.0f);
|
||||||
|
|
||||||
|
public PiecePosCost(Color color) {
|
||||||
|
this.color = color;
|
||||||
|
}
|
||||||
|
|
||||||
|
public float getEvaluation(Piece piece, Coordinate coordinate) {
|
||||||
|
if (piece == null)
|
||||||
|
return 0;
|
||||||
|
List<Float> positions = visit(piece);
|
||||||
|
int x = piece.getColor() == Color.Black ? (Coordinate.VALUE_MAX - 1 - coordinate.getX()) : coordinate.getX();
|
||||||
|
int y = piece.getColor() == Color.Black ? (Coordinate.VALUE_MAX - 1 - coordinate.getY()) : coordinate.getY();
|
||||||
|
Coordinate newCoords = new Coordinate(x, y);
|
||||||
|
assert newCoords.isValid();
|
||||||
|
float result = positions.get(newCoords.toIndex());
|
||||||
|
if (piece.getColor() != color)
|
||||||
|
return -result;
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public List<Float> visitPiece(Bishop bishop) {
|
||||||
|
return BISHOP;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public List<Float> visitPiece(King king) {
|
||||||
|
return KING;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public List<Float> visitPiece(Knight knight) {
|
||||||
|
return KNIGHT;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public List<Float> visitPiece(Pawn pawn) {
|
||||||
|
return PAWN;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public List<Float> visitPiece(Queen queen) {
|
||||||
|
return QUEEN;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public List<Float> visitPiece(Rook rook) {
|
||||||
|
return ROOK;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
88
app/src/main/java/chess/ai/minimax/AlphaBetaAI.java
Normal file
88
app/src/main/java/chess/ai/minimax/AlphaBetaAI.java
Normal file
@@ -0,0 +1,88 @@
|
|||||||
|
package chess.ai.minimax;
|
||||||
|
|
||||||
|
import java.util.ArrayList;
|
||||||
|
import java.util.List;
|
||||||
|
import java.util.concurrent.ExecutionException;
|
||||||
|
import java.util.concurrent.ExecutorService;
|
||||||
|
import java.util.concurrent.Executors;
|
||||||
|
import java.util.concurrent.Future;
|
||||||
|
|
||||||
|
import chess.ai.AI;
|
||||||
|
import chess.controller.CommandExecutor;
|
||||||
|
import chess.controller.commands.MoveCommand;
|
||||||
|
import chess.controller.commands.PromoteCommand;
|
||||||
|
import chess.controller.commands.PromoteCommand.PromoteType;
|
||||||
|
import chess.model.Color;
|
||||||
|
import chess.model.Coordinate;
|
||||||
|
import chess.model.Move;
|
||||||
|
|
||||||
|
public class AlphaBetaAI extends AI {
|
||||||
|
|
||||||
|
private final int searchDepth;
|
||||||
|
|
||||||
|
private static final float MAX_FLOAT = Float.MAX_VALUE;
|
||||||
|
private static final float MIN_FLOAT = -MAX_FLOAT;
|
||||||
|
|
||||||
|
private final ExecutorService threadPool;
|
||||||
|
|
||||||
|
public AlphaBetaAI(CommandExecutor commandExecutor, Color color, int searchDepth) {
|
||||||
|
super(commandExecutor, color);
|
||||||
|
this.searchDepth = searchDepth;
|
||||||
|
int threadCount = Runtime.getRuntime().availableProcessors() - 1;
|
||||||
|
this.threadPool = Executors.newFixedThreadPool(threadCount, new AlphaBetaThreadCreator(commandExecutor, color, threadCount));
|
||||||
|
System.out.println();
|
||||||
|
}
|
||||||
|
|
||||||
|
private Move getBestMove() {
|
||||||
|
List<Move> moves = getAllowedMoves();
|
||||||
|
List<Future<Float>> moveEvaluations = new ArrayList<>(50);
|
||||||
|
float bestMoveValue = MIN_FLOAT;
|
||||||
|
Move bestMove = null;
|
||||||
|
|
||||||
|
System.out.println("Evaluating " + moves.size() + " moves ...");
|
||||||
|
|
||||||
|
for (Move move : moves) {
|
||||||
|
moveEvaluations.add(this.threadPool.submit(() -> {
|
||||||
|
return AlphaBetaThreadCreator.getMoveValue(move, this.searchDepth);
|
||||||
|
}));
|
||||||
|
}
|
||||||
|
|
||||||
|
for (int i = 0; i < moves.size(); i++) {
|
||||||
|
Move move = moves.get(i);
|
||||||
|
float value = MIN_FLOAT;
|
||||||
|
try {
|
||||||
|
value = moveEvaluations.get(i).get();
|
||||||
|
} catch (InterruptedException | ExecutionException e) {
|
||||||
|
e.printStackTrace();
|
||||||
|
}
|
||||||
|
if (value > bestMoveValue) {
|
||||||
|
bestMoveValue = value;
|
||||||
|
bestMove = move;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
System.out.println("Best move : " + bestMoveValue);
|
||||||
|
|
||||||
|
return bestMove;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void onGameEnd() {
|
||||||
|
this.threadPool.close();
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected void play() {
|
||||||
|
long current = System.currentTimeMillis();
|
||||||
|
Move move = getBestMove();
|
||||||
|
long elapsed = System.currentTimeMillis() - current;
|
||||||
|
System.out.println("Took " + elapsed + "ms");
|
||||||
|
sendCommand(new MoveCommand(move));
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected void promote(Coordinate pawnCoords) {
|
||||||
|
sendCommand(new PromoteCommand(PromoteType.Queen));
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
94
app/src/main/java/chess/ai/minimax/AlphaBetaThread.java
Normal file
94
app/src/main/java/chess/ai/minimax/AlphaBetaThread.java
Normal file
@@ -0,0 +1,94 @@
|
|||||||
|
package chess.ai.minimax;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
import chess.ai.PieceCost;
|
||||||
|
import chess.ai.PiecePosCost;
|
||||||
|
import chess.model.ChessBoard;
|
||||||
|
import chess.model.Color;
|
||||||
|
import chess.model.Coordinate;
|
||||||
|
import chess.model.Move;
|
||||||
|
import chess.model.Piece;
|
||||||
|
|
||||||
|
public class AlphaBetaThread extends Thread {
|
||||||
|
|
||||||
|
private final GameSimulation simulation;
|
||||||
|
private final PieceCost pieceCost;
|
||||||
|
private final PiecePosCost piecePosCost;
|
||||||
|
|
||||||
|
private final Color color;
|
||||||
|
|
||||||
|
private static final int GREAT_MOVE = -9999;
|
||||||
|
private static final int HORRIBLE_MOVE = -GREAT_MOVE;
|
||||||
|
|
||||||
|
private static final float MAX_FLOAT = Float.MAX_VALUE;
|
||||||
|
private static final float MIN_FLOAT = -MAX_FLOAT;
|
||||||
|
|
||||||
|
public AlphaBetaThread(Runnable task, GameSimulation simulation, Color color) {
|
||||||
|
super(task);
|
||||||
|
this.simulation = simulation;
|
||||||
|
this.pieceCost = new PieceCost(color);
|
||||||
|
this.piecePosCost = new PiecePosCost(color);
|
||||||
|
this.color = color;
|
||||||
|
}
|
||||||
|
|
||||||
|
private float getEndGameEvaluation() {
|
||||||
|
Color currentTurn = this.simulation.getPlayerTurn();
|
||||||
|
if (currentTurn == this.color) {
|
||||||
|
return HORRIBLE_MOVE;
|
||||||
|
} else {
|
||||||
|
if (this.simulation.getBoard().isKingInCheck(currentTurn))
|
||||||
|
return GREAT_MOVE;
|
||||||
|
return getBoardEvaluation() + PieceCost.PAWN;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private float getBoardEvaluation() {
|
||||||
|
final ChessBoard board = this.simulation.getBoard();
|
||||||
|
float result = 0;
|
||||||
|
for (int i = 0; i < Coordinate.VALUE_MAX; i++) {
|
||||||
|
for (int j = 0; j < Coordinate.VALUE_MAX; j++) {
|
||||||
|
Coordinate coordinate = new Coordinate(i, j);
|
||||||
|
Piece piece = board.pieceAt(coordinate);
|
||||||
|
result += pieceCost.getCost(piece) + piecePosCost.getEvaluation(piece, coordinate);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (this.simulation.getPlayerTurn() != color)
|
||||||
|
return -result;
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
|
||||||
|
public float getMoveValue(Move move, int searchDepth) {
|
||||||
|
this.simulation.tryMove(move);
|
||||||
|
float value = -negaMax(searchDepth - 1, MIN_FLOAT, MAX_FLOAT);
|
||||||
|
this.simulation.undoMove();
|
||||||
|
return value;
|
||||||
|
}
|
||||||
|
|
||||||
|
private float negaMax(int depth, float alpha, float beta) {
|
||||||
|
if (depth == 0)
|
||||||
|
return getBoardEvaluation();
|
||||||
|
|
||||||
|
float value = MIN_FLOAT;
|
||||||
|
|
||||||
|
List<Move> moves = this.simulation.getAllowedMoves();
|
||||||
|
|
||||||
|
if (moves.isEmpty())
|
||||||
|
return getEndGameEvaluation();
|
||||||
|
|
||||||
|
for (Move move : moves) {
|
||||||
|
this.simulation.tryMove(move);
|
||||||
|
value = Float.max(value, -negaMax(depth - 1, -beta, -alpha));
|
||||||
|
this.simulation.undoMove();
|
||||||
|
alpha = Float.max(alpha, value);
|
||||||
|
if (alpha >= beta)
|
||||||
|
return value;
|
||||||
|
}
|
||||||
|
|
||||||
|
return value;
|
||||||
|
}
|
||||||
|
|
||||||
|
public GameSimulation getSimulation() {
|
||||||
|
return simulation;
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,36 @@
|
|||||||
|
package chess.ai.minimax;
|
||||||
|
|
||||||
|
import java.util.concurrent.ThreadFactory;
|
||||||
|
|
||||||
|
import chess.controller.CommandExecutor;
|
||||||
|
import chess.model.Color;
|
||||||
|
import chess.model.Move;
|
||||||
|
|
||||||
|
public class AlphaBetaThreadCreator implements ThreadFactory{
|
||||||
|
|
||||||
|
private final Color color;
|
||||||
|
private final GameSimulation simulations[];
|
||||||
|
private int currentThread = 0;
|
||||||
|
|
||||||
|
public AlphaBetaThreadCreator(CommandExecutor commandExecutor, Color color, int threadCount) {
|
||||||
|
this.color = color;
|
||||||
|
simulations = new GameSimulation[threadCount];
|
||||||
|
for (int i = 0; i < threadCount; i++) {
|
||||||
|
simulations[i] = new GameSimulation();
|
||||||
|
commandExecutor.addListener(simulations[i]);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public static float getMoveValue(Move move, int searchDepth) {
|
||||||
|
AlphaBetaThread t = (AlphaBetaThread) Thread.currentThread();
|
||||||
|
return t.getMoveValue(move, searchDepth);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public Thread newThread(Runnable r) {
|
||||||
|
AlphaBetaThread t = new AlphaBetaThread(r, simulations[currentThread], color);
|
||||||
|
currentThread++;
|
||||||
|
return t;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
96
app/src/main/java/chess/ai/minimax/GameSimulation.java
Normal file
96
app/src/main/java/chess/ai/minimax/GameSimulation.java
Normal file
@@ -0,0 +1,96 @@
|
|||||||
|
package chess.ai.minimax;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
import chess.controller.Command;
|
||||||
|
import chess.controller.Command.CommandResult;
|
||||||
|
import chess.controller.CommandExecutor;
|
||||||
|
import chess.controller.commands.CastlingCommand;
|
||||||
|
import chess.controller.commands.GetPlayerMovesCommand;
|
||||||
|
import chess.controller.commands.MoveCommand;
|
||||||
|
import chess.controller.commands.NewGameCommand;
|
||||||
|
import chess.controller.commands.PromoteCommand;
|
||||||
|
import chess.controller.commands.UndoCommand;
|
||||||
|
import chess.controller.commands.PromoteCommand.PromoteType;
|
||||||
|
import chess.controller.event.EmptyGameDispatcher;
|
||||||
|
import chess.controller.event.GameAdaptator;
|
||||||
|
import chess.model.ChessBoard;
|
||||||
|
import chess.model.Color;
|
||||||
|
import chess.model.Game;
|
||||||
|
import chess.model.Move;
|
||||||
|
|
||||||
|
public class GameSimulation extends GameAdaptator {
|
||||||
|
|
||||||
|
private final CommandExecutor simulation;
|
||||||
|
private final Game gameSimulation;
|
||||||
|
|
||||||
|
public GameSimulation() {
|
||||||
|
this.gameSimulation = new Game();
|
||||||
|
this.simulation = new CommandExecutor(gameSimulation, new EmptyGameDispatcher());
|
||||||
|
}
|
||||||
|
|
||||||
|
protected CommandResult sendCommand(Command command) {
|
||||||
|
CommandResult result = this.simulation.executeCommand(command);
|
||||||
|
if (result == CommandResult.NotAllowed) {
|
||||||
|
System.out.println("eeeeee");
|
||||||
|
}
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void tryMove(Move move) {
|
||||||
|
sendCommand(new MoveCommand(move));
|
||||||
|
if (this.gameSimulation.getBoard().pawnShouldBePromoted())
|
||||||
|
sendCommand(new PromoteCommand(PromoteType.Queen));
|
||||||
|
}
|
||||||
|
|
||||||
|
public void undoMove() {
|
||||||
|
sendCommand(new UndoCommand());
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void onPawnPromoted(PromoteType promotion) {
|
||||||
|
sendCommand(new PromoteCommand(promotion));
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void onCastling(boolean bigCastling) {
|
||||||
|
sendCommand(new CastlingCommand(bigCastling));
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void onMove(Move move) {
|
||||||
|
sendCommand(new MoveCommand(move));
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void onGameStart() {
|
||||||
|
sendCommand(new NewGameCommand());
|
||||||
|
}
|
||||||
|
|
||||||
|
public CommandExecutor getCommandExecutor() {
|
||||||
|
return simulation;
|
||||||
|
}
|
||||||
|
|
||||||
|
public Game getGame() {
|
||||||
|
return gameSimulation;
|
||||||
|
}
|
||||||
|
|
||||||
|
public ChessBoard getBoard() {
|
||||||
|
return this.gameSimulation.getBoard();
|
||||||
|
}
|
||||||
|
|
||||||
|
public Color getPlayerTurn() {
|
||||||
|
return this.gameSimulation.getPlayerTurn();
|
||||||
|
}
|
||||||
|
|
||||||
|
public List<Move> getAllowedMoves() {
|
||||||
|
GetPlayerMovesCommand cmd = new GetPlayerMovesCommand();
|
||||||
|
sendCommand(cmd);
|
||||||
|
return cmd.getMoves();
|
||||||
|
}
|
||||||
|
|
||||||
|
public void close() {
|
||||||
|
this.simulation.close();
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -2,6 +2,7 @@ package chess.controller;
|
|||||||
|
|
||||||
import chess.controller.Command.CommandResult;
|
import chess.controller.Command.CommandResult;
|
||||||
import chess.controller.commands.UndoCommand;
|
import chess.controller.commands.UndoCommand;
|
||||||
|
import chess.controller.event.AsyncGameDispatcher;
|
||||||
import chess.controller.event.GameDispatcher;
|
import chess.controller.event.GameDispatcher;
|
||||||
import chess.controller.event.GameListener;
|
import chess.controller.event.GameListener;
|
||||||
import chess.model.Game;
|
import chess.model.Game;
|
||||||
@@ -17,7 +18,7 @@ public class CommandExecutor {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public CommandExecutor(Game game) {
|
public CommandExecutor(Game game) {
|
||||||
this(game, new GameDispatcher());
|
this(game, new AsyncGameDispatcher());
|
||||||
}
|
}
|
||||||
|
|
||||||
public CommandExecutor(Game game, GameDispatcher dispatcher) {
|
public CommandExecutor(Game game, GameDispatcher dispatcher) {
|
||||||
@@ -109,6 +110,6 @@ public class CommandExecutor {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public void close() {
|
public void close() {
|
||||||
this.dispatcher.stopService();
|
this.dispatcher.close();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -0,0 +1,113 @@
|
|||||||
|
package chess.controller.event;
|
||||||
|
|
||||||
|
import java.util.ArrayList;
|
||||||
|
import java.util.List;
|
||||||
|
import java.util.concurrent.ExecutorService;
|
||||||
|
import java.util.concurrent.Executors;
|
||||||
|
import java.util.function.Consumer;
|
||||||
|
|
||||||
|
import chess.controller.commands.PromoteCommand.PromoteType;
|
||||||
|
import chess.model.Color;
|
||||||
|
import chess.model.Coordinate;
|
||||||
|
import chess.model.Move;
|
||||||
|
|
||||||
|
public class AsyncGameDispatcher extends GameDispatcher {
|
||||||
|
|
||||||
|
private final List<GameListener> listeners;
|
||||||
|
private final ExecutorService executor;
|
||||||
|
|
||||||
|
public AsyncGameDispatcher() {
|
||||||
|
this.listeners = new ArrayList<>();
|
||||||
|
this.executor = Executors.newSingleThreadExecutor();
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void addListener(GameListener listener) {
|
||||||
|
this.listeners.add(listener);
|
||||||
|
}
|
||||||
|
|
||||||
|
private void asyncForEachCall(Consumer<GameListener> func) {
|
||||||
|
this.executor.execute(() -> this.listeners.forEach(func));
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void onPlayerTurn(Color color, boolean undone) {
|
||||||
|
asyncForEachCall((l) -> l.onPlayerTurn(color, undone));
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void onWin(Color color) {
|
||||||
|
asyncForEachCall((l) -> l.onWin(color));
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void onKingInCheck() {
|
||||||
|
asyncForEachCall((l) -> l.onKingInCheck());
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void onKingInMat() {
|
||||||
|
asyncForEachCall((l) -> l.onKingInMat());
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void onPatSituation() {
|
||||||
|
asyncForEachCall((l) -> l.onPatSituation());
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void onSurrender(Color color) {
|
||||||
|
asyncForEachCall((l) -> l.onSurrender(color));
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void onGameStart() {
|
||||||
|
asyncForEachCall((l) -> l.onGameStart());
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void onPromotePawn(Coordinate pieceCoords) {
|
||||||
|
asyncForEachCall((l) -> l.onPromotePawn(pieceCoords));
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void onBoardUpdate() {
|
||||||
|
asyncForEachCall((l) -> l.onBoardUpdate());
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void onGameEnd() {
|
||||||
|
asyncForEachCall((l) -> l.onGameEnd());
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void onMove(Move move) {
|
||||||
|
asyncForEachCall((l) -> l.onMove(move));
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void onMoveNotAllowed(Move move) {
|
||||||
|
asyncForEachCall((l) -> l.onMoveNotAllowed(move));
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void onDraw() {
|
||||||
|
asyncForEachCall((l) -> l.onDraw());
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void onCastling(boolean bigCastling) {
|
||||||
|
asyncForEachCall((l) -> l.onCastling(bigCastling));
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void onPawnPromoted(PromoteType promotion) {
|
||||||
|
asyncForEachCall((l) -> l.onPawnPromoted(promotion));
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void close() {
|
||||||
|
this.executor.shutdown();
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
@@ -67,4 +67,12 @@ public class EmptyGameDispatcher extends GameDispatcher {
|
|||||||
public void onPawnPromoted(PromoteType promotion) {
|
public void onPawnPromoted(PromoteType promotion) {
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void addListener(GameListener listener) {
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void close() {
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,111 +1,9 @@
|
|||||||
package chess.controller.event;
|
package chess.controller.event;
|
||||||
|
|
||||||
import java.util.ArrayList;
|
public abstract class GameDispatcher extends GameAdaptator {
|
||||||
import java.util.List;
|
|
||||||
import java.util.concurrent.ExecutorService;
|
|
||||||
import java.util.concurrent.Executors;
|
|
||||||
import java.util.function.Consumer;
|
|
||||||
|
|
||||||
import chess.controller.commands.PromoteCommand.PromoteType;
|
public abstract void addListener(GameListener listener);
|
||||||
import chess.model.Color;
|
|
||||||
import chess.model.Coordinate;
|
|
||||||
import chess.model.Move;
|
|
||||||
|
|
||||||
public class GameDispatcher implements GameListener {
|
public abstract void close();
|
||||||
|
|
||||||
private final List<GameListener> listeners;
|
|
||||||
private final ExecutorService executor;
|
|
||||||
|
|
||||||
public GameDispatcher() {
|
|
||||||
this.listeners = new ArrayList<>();
|
|
||||||
this.executor = Executors.newSingleThreadExecutor();
|
|
||||||
}
|
|
||||||
|
|
||||||
public void addListener(GameListener listener) {
|
|
||||||
this.listeners.add(listener);
|
|
||||||
}
|
|
||||||
|
|
||||||
private void asyncForEachCall(Consumer<GameListener> func) {
|
|
||||||
this.executor.execute(() -> this.listeners.forEach(func));
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public void onPlayerTurn(Color color, boolean undone) {
|
|
||||||
asyncForEachCall((l) -> l.onPlayerTurn(color, undone));
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public void onWin(Color color) {
|
|
||||||
asyncForEachCall((l) -> l.onWin(color));
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public void onKingInCheck() {
|
|
||||||
asyncForEachCall((l) -> l.onKingInCheck());
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public void onKingInMat() {
|
|
||||||
asyncForEachCall((l) -> l.onKingInMat());
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public void onPatSituation() {
|
|
||||||
asyncForEachCall((l) -> l.onPatSituation());
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public void onSurrender(Color color) {
|
|
||||||
asyncForEachCall((l) -> l.onSurrender(color));
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public void onGameStart() {
|
|
||||||
asyncForEachCall((l) -> l.onGameStart());
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public void onPromotePawn(Coordinate pieceCoords) {
|
|
||||||
asyncForEachCall((l) -> l.onPromotePawn(pieceCoords));
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public void onBoardUpdate() {
|
|
||||||
asyncForEachCall((l) -> l.onBoardUpdate());
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public void onGameEnd() {
|
|
||||||
asyncForEachCall((l) -> l.onGameEnd());
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public void onMove(Move move) {
|
|
||||||
asyncForEachCall((l) -> l.onMove(move));
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public void onMoveNotAllowed(Move move) {
|
|
||||||
asyncForEachCall((l) -> l.onMoveNotAllowed(move));
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public void onDraw() {
|
|
||||||
asyncForEachCall((l) -> l.onDraw());
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public void onCastling(boolean bigCastling) {
|
|
||||||
asyncForEachCall((l) -> l.onCastling(bigCastling));
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public void onPawnPromoted(PromoteType promotion) {
|
|
||||||
asyncForEachCall((l) -> l.onPawnPromoted(promotion));
|
|
||||||
}
|
|
||||||
|
|
||||||
public void stopService() {
|
|
||||||
this.executor.shutdown();
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -56,15 +56,15 @@ public class PgnExport {
|
|||||||
}
|
}
|
||||||
|
|
||||||
private static String gameEnd(Game game) {
|
private static String gameEnd(Game game) {
|
||||||
switch (game.checkGameStatus()) {
|
switch (game.checkGameStatus(game.getPlayerTurn())) {
|
||||||
case Draw:
|
case Draw:
|
||||||
case Pat:
|
case Pat:
|
||||||
return "1/2-1/2";
|
return "1/2-1/2";
|
||||||
|
|
||||||
case CheckMate:
|
case CheckMate:
|
||||||
if (game.getPlayerTurn() == Color.White)
|
if (game.getPlayerTurn() == Color.White)
|
||||||
return "1-0";
|
|
||||||
return "0-1";
|
return "0-1";
|
||||||
|
return "1-0";
|
||||||
|
|
||||||
default:
|
default:
|
||||||
return "";
|
return "";
|
||||||
|
|||||||
Reference in New Issue
Block a user