Files
BUT3ProjetJeuGroupe/fr/iut_fbleau/Bot/DivineBot.java

185 lines
5.6 KiB
Java
Raw Normal View History

package fr.iut_fbleau.Bot;
2026-01-30 14:11:13 +01:00
import fr.iut_fbleau.Avalam.*;
import fr.iut_fbleau.GameAPI.*;
import java.util.*;
/**
2026-01-30 14:11:13 +01:00
* Bot "Divin" (alpha-beta + évaluateur pondéré).
* * Idée :
* - Utilise l'algorithme Alpha-Beta pour anticiper les coups.
* - Évalue les plateaux non terminaux en accordant plus d'importance aux tours hautes.
*/
public class DivineBot extends AbstractGamePlayer {
// Attributs
/** Joueur contrôlé par ce bot (PLAYER1 ou PLAYER2). */
2026-01-30 13:40:04 +01:00
private final Player me;
2026-01-30 14:11:13 +01:00
/** Profondeur maximale de recherche avant évaluation. */
2026-01-30 13:40:04 +01:00
private final int maxDepth;
2026-01-30 14:11:13 +01:00
/** Générateur aléatoire pour choisir parmi les meilleurs coups équivalents. */
2026-01-30 13:40:04 +01:00
private final Random rng = new Random();
2026-01-30 14:11:13 +01:00
// Constructeur
/**
* Construit le bot Divine.
*
* @param p joueur contrôlé par ce bot
* @param maxDepth profondeur de l'arbre de recherche
*/
2026-01-30 13:40:04 +01:00
public DivineBot(Player p, int maxDepth) {
super(p);
this.me = p;
this.maxDepth = Math.max(1, maxDepth);
}
2026-01-30 14:11:13 +01:00
// Méthodes
2026-01-30 13:40:04 +01:00
2026-01-30 14:11:13 +01:00
/**
* Méthode principale de décision du bot.
* Explore le premier niveau de l'arbre et lance les appels Alpha-Beta.
* * @param board état actuel du jeu
* @return le meilleur coup calculé (AbstractPly)
*/
2026-01-30 13:40:04 +01:00
@Override
public AbstractPly giveYourMove(IBoard board) {
if (board == null || board.isGameOver()) return null;
List<AbstractPly> moves = listMoves(board);
if (moves.isEmpty()) return null;
boolean isMax = board.getCurrentPlayer() == me;
int bestValue = isMax ? Integer.MIN_VALUE : Integer.MAX_VALUE;
List<AbstractPly> bestMoves = new ArrayList<>();
int alpha = Integer.MIN_VALUE;
int beta = Integer.MAX_VALUE;
for (AbstractPly m : moves) {
IBoard next = board.safeCopy();
next.doPly(m);
2026-01-30 14:11:13 +01:00
// Appel récursif pour évaluer la suite du coup
2026-01-30 13:40:04 +01:00
int value = alphaBeta(next, maxDepth - 1, alpha, beta);
if (isMax) {
if (value > bestValue) {
bestValue = value;
bestMoves.clear();
bestMoves.add(m);
} else if (value == bestValue) {
bestMoves.add(m);
}
alpha = Math.max(alpha, bestValue);
} else {
if (value < bestValue) {
bestValue = value;
bestMoves.clear();
bestMoves.add(m);
} else if (value == bestValue) {
bestMoves.add(m);
}
beta = Math.min(beta, bestValue);
}
}
2026-01-30 14:11:13 +01:00
// Retourne un coup au hasard parmi les meilleurs ex-aequo
2026-01-30 13:40:04 +01:00
return bestMoves.get(rng.nextInt(bestMoves.size()));
}
2026-01-30 14:11:13 +01:00
/**
* Algorithme récursif de recherche avec élagage Alpha-Beta.
*/
2026-01-30 13:40:04 +01:00
private int alphaBeta(IBoard board, int depth, int alpha, int beta) {
2026-01-30 14:11:13 +01:00
// Cas de base : fin de partie ou limite de profondeur atteinte
if (board.isGameOver()) return terminalValue(board);
if (depth == 0) return evaluate(board);
2026-01-30 13:40:04 +01:00
boolean isMax = board.getCurrentPlayer() == me;
2026-01-30 14:11:13 +01:00
for (AbstractPly m : listMoves(board)) {
IBoard next = board.safeCopy();
next.doPly(m);
2026-01-30 13:40:04 +01:00
2026-01-30 14:11:13 +01:00
int val = alphaBeta(next, depth - 1, alpha, beta);
2026-01-30 13:40:04 +01:00
2026-01-30 14:11:13 +01:00
if (isMax) {
alpha = Math.max(alpha, val);
if (alpha >= beta) break; // Coupure Beta
} else {
beta = Math.min(beta, val);
if (alpha >= beta) break; // Coupure Alpha
2026-01-30 13:40:04 +01:00
}
}
2026-01-30 14:11:13 +01:00
return isMax ? alpha : beta;
}
2026-01-30 13:40:04 +01:00
2026-01-30 14:11:13 +01:00
/**
* Calcule la valeur de l'état final (Victoire / Défaite).
*/
2026-01-30 13:40:04 +01:00
private int terminalValue(IBoard board) {
Result r = board.getResult();
if (r == null) return 0;
if (r == Result.DRAW) return 0;
2026-01-30 14:11:13 +01:00
boolean botIsP1 = (me == Player.PLAYER1);
// Si le bot gagne, valeur positive élevée, sinon valeur négative
return ((r == Result.WIN) == botIsP1) ? 100000 : -100000;
2026-01-30 13:40:04 +01:00
}
/**
2026-01-30 14:11:13 +01:00
* Heuristique évoluée pour Avalam :
* Calcule un score basé sur le contrôle des tours et leur hauteur.
* Les tours de hauteur 5 sont prioritaires car elles sont bloquées.
2026-01-30 13:40:04 +01:00
*/
private int evaluate(IBoard board) {
if (!(board instanceof AvalamBoard)) return 0;
AvalamBoard b = (AvalamBoard) board;
Color myColor = (me == Player.PLAYER1) ? Color.YELLOW : Color.RED;
2026-01-30 14:11:13 +01:00
Color oppColor = (myColor == Color.YELLOW) ? Color.RED : Color.YELLOW;
2026-01-30 13:40:04 +01:00
int score = 0;
for (int r = 0; r < AvalamBoard.SIZE; r++) {
for (int c = 0; c < AvalamBoard.SIZE; c++) {
Tower t = b.getTowerAt(r, c);
if (t == null) continue;
int h = t.getHeight();
2026-01-30 14:11:13 +01:00
// Pondération selon la hauteur (heuristique "Divine")
int value =
(h == 5) ? 1000 :
(h == 4) ? 300 :
(h == 3) ? 120 :
(h == 2) ? 40 : 10;
2026-01-30 13:40:04 +01:00
if (t.getColor() == myColor) score += value;
2026-01-30 14:11:13 +01:00
else score -= value;
2026-01-30 13:40:04 +01:00
}
}
return score;
}
2026-01-30 14:11:13 +01:00
/**
* Génère la liste de tous les coups possibles sur le plateau donné.
*/
2026-01-30 13:40:04 +01:00
private List<AbstractPly> listMoves(IBoard board) {
List<AbstractPly> moves = new ArrayList<>();
2026-01-30 14:11:13 +01:00
board.iterator().forEachRemaining(moves::add);
2026-01-30 13:40:04 +01:00
return moves;
}
2026-01-30 14:11:13 +01:00
}