Compare commits

..

No commits in common. "df2268cd55cd7396e2e48dd1f542436fe91db45a" and "1aad4a61532a4fc9eb5cb3775fe540c73e7d87b2" have entirely different histories.

8 changed files with 3 additions and 103 deletions

View file

@ -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>

View file

@ -1,18 +0,0 @@
public class Board {
public getAllLegalMoves(){
}
public makeMove(){
}
public undoMove(){
}
public isGameover(){
}
public
}

View file

@ -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;
}
}

View file

@ -1,2 +0,0 @@
public class Color {
}

View file

@ -1,2 +0,0 @@
public class Move {
}

View file

@ -1,2 +0,0 @@
public class Piece {
}

View file

@ -42,7 +42,7 @@ public class Board {
for (int y = 0; y < 2; y++)
for (int x = 0; x < BOARD_SIZE; x++) {
set(x, y, new Piece(true));
set(x, y + BOARD_SIZE - 2, new Piece(false));
set(x, y + 6, new Piece(false));
}
}

View file

@ -1,6 +1,8 @@
import java.awt.*;
public class Main {
static int TILE_SIZE = 64;
public static void main(String[] args) {
Board board = new Board();
board.draw();