Compare commits
No commits in common. "df2268cd55cd7396e2e48dd1f542436fe91db45a" and "1aad4a61532a4fc9eb5cb3775fe540c73e7d87b2" have entirely different histories.
df2268cd55
...
1aad4a6153
8 changed files with 3 additions and 103 deletions
|
@ -1,11 +0,0 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<module type="JAVA_MODULE" version="4">
|
|
||||||
<component name="NewModuleRootManager" inherit-compiler-output="true">
|
|
||||||
<exclude-output />
|
|
||||||
<content url="file://$MODULE_DIR$">
|
|
||||||
<sourceFolder url="file://$MODULE_DIR$/src" isTestSource="false" />
|
|
||||||
</content>
|
|
||||||
<orderEntry type="inheritedJdk" />
|
|
||||||
<orderEntry type="sourceFolder" forTests="false" />
|
|
||||||
</component>
|
|
||||||
</module>
|
|
|
@ -1,18 +0,0 @@
|
||||||
public class Board {
|
|
||||||
public getAllLegalMoves(){
|
|
||||||
|
|
||||||
}
|
|
||||||
public makeMove(){
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
public undoMove(){
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
public isGameover(){
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
public
|
|
||||||
}
|
|
|
@ -1,67 +0,0 @@
|
||||||
public class ChessAI {
|
|
||||||
private final int MAX_DEPTH = 4;
|
|
||||||
|
|
||||||
public Move findBestMove(Board board) {
|
|
||||||
int bestScore = Integer.MIN_VALUE;
|
|
||||||
Move bestMove = null;
|
|
||||||
|
|
||||||
for (Move move : board.getAllLegalMoves()) {
|
|
||||||
board.makeMove(move);
|
|
||||||
int score = minimax(board, MAX_DEPTH, Integer.MIN_VALUE, Integer.MAX_VALUE, false);
|
|
||||||
board.undoMove();
|
|
||||||
|
|
||||||
if (score > bestScore) {
|
|
||||||
bestScore = score;
|
|
||||||
bestMove = move;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return bestMove;
|
|
||||||
}
|
|
||||||
|
|
||||||
private int minimax(Board board, int depth, int alpha, int beta, boolean maximizingPlayer) {
|
|
||||||
if (depth == 0 || board.isGameOver()) {
|
|
||||||
return evaluateBoard(board);
|
|
||||||
}
|
|
||||||
|
|
||||||
int score;
|
|
||||||
if (maximizingPlayer) {
|
|
||||||
score = Integer.MIN_VALUE;
|
|
||||||
for (Move move : board.getAllLegalMoves()) {
|
|
||||||
board.makeMove(move);
|
|
||||||
score = Math.max(score, minimax(board, depth - 1, alpha, beta, false));
|
|
||||||
board.undoMove();
|
|
||||||
alpha = Math.max(alpha, score);
|
|
||||||
if (beta <= alpha) {
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
score = Integer.MAX_VALUE;
|
|
||||||
for (Move move : board.getAllLegalMoves()) {
|
|
||||||
board.makeMove(move);
|
|
||||||
score = Math.min(score, minimax(board, depth - 1, alpha, beta, true));
|
|
||||||
board.undoMove();
|
|
||||||
beta = Math.min(beta, score);
|
|
||||||
if (beta <= alpha) {
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return score;
|
|
||||||
}
|
|
||||||
|
|
||||||
private int evaluateBoard(Board board) {
|
|
||||||
int score = 0;
|
|
||||||
for (Piece piece : board.getPieces()) {
|
|
||||||
if (piece.getColor() == Color.WHITE) {
|
|
||||||
score += piece.getValue();
|
|
||||||
} else {
|
|
||||||
score -= piece.getValue();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return score;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
|
@ -1,2 +0,0 @@
|
||||||
public class Color {
|
|
||||||
}
|
|
|
@ -1,2 +0,0 @@
|
||||||
public class Move {
|
|
||||||
}
|
|
|
@ -1,2 +0,0 @@
|
||||||
public class Piece {
|
|
||||||
}
|
|
|
@ -42,7 +42,7 @@ public class Board {
|
||||||
for (int y = 0; y < 2; y++)
|
for (int y = 0; y < 2; y++)
|
||||||
for (int x = 0; x < BOARD_SIZE; x++) {
|
for (int x = 0; x < BOARD_SIZE; x++) {
|
||||||
set(x, y, new Piece(true));
|
set(x, y, new Piece(true));
|
||||||
set(x, y + BOARD_SIZE - 2, new Piece(false));
|
set(x, y + 6, new Piece(false));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,8 @@
|
||||||
import java.awt.*;
|
import java.awt.*;
|
||||||
|
|
||||||
public class Main {
|
public class Main {
|
||||||
|
static int TILE_SIZE = 64;
|
||||||
|
|
||||||
public static void main(String[] args) {
|
public static void main(String[] args) {
|
||||||
Board board = new Board();
|
Board board = new Board();
|
||||||
board.draw();
|
board.draw();
|
||||||
|
|
Reference in a new issue