Compare commits

...

3 commits

Author SHA1 Message Date
df2268cd55 Minor cleanup 2023-02-17 22:38:57 -08:00
YujieAki
9cf0136b06
Merge pull request #1 from ElnuDev/Yujie-AI
Add files via upload
2023-02-17 18:47:29 -08:00
YujieAki
c2903f1712
Add files via upload 2023-02-17 18:47:09 -08:00
8 changed files with 103 additions and 3 deletions

11
Yujie AI/Yujie AI.iml Normal file
View file

@ -0,0 +1,11 @@
<?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>

18
Yujie AI/src/Board.java Normal file
View file

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

67
Yujie AI/src/ChessAI.java Normal file
View file

@ -0,0 +1,67 @@
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;
}
}

2
Yujie AI/src/Color.java Normal file
View file

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

2
Yujie AI/src/Move.java Normal file
View file

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

2
Yujie AI/src/Piece.java Normal file
View file

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

View file

@ -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 + 6, new Piece(false)); set(x, y + BOARD_SIZE - 2, new Piece(false));
} }
} }

View file

@ -1,8 +1,6 @@
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();