Commit ab11fe24 authored by Timothy LAIRD's avatar Timothy LAIRD

Pre-Merge commit

parent b12b3e5f
......@@ -5,7 +5,7 @@
<url>src/tictactoecodingame/AlgoRechercheMCTS.java</url>
<bookmark id="1">
<name/>
<line>97</line>
<line>96</line>
<key/>
</bookmark>
</file>
......
......@@ -15,34 +15,35 @@ import java.util.Random;
*/
public class AlgoRechercheMCTS extends AlgoRecherche {
ArbreMCTS search;
int maxIterations;
public AlgoRechercheMCTS(Joueur player, Joueur opponent){
public AlgoRechercheMCTS(Joueur player, Joueur opponent, int m){
search = new ArbreMCTS(player, opponent);
maxIterations = m;
}
@Override
public Coup meilleurCoup(Plateau _plateau, Joueur _joueur, boolean _ponder) {
search = new ArbreMCTS(search.root().player(), search.root().opponent());
Node root = search.root();
root.board(_plateau);
_plateau.sauvegardePosition(0);
int iterations = 0;
Random seed = new Random();
while(iterations < 1){
while(iterations < maxIterations){
iterations++;
Node nextNode = selection(root);
if(!nextNode.board().partieTerminee()){
expansion(nextNode);
if(!_plateau.partieTerminee()){
expansion(nextNode, _plateau);
}
if(!nextNode.children().isEmpty()){
nextNode = nextNode.children().get(seed.nextInt(nextNode.children().size()));
}
Joueur winner = simulate(nextNode);
Joueur winner = simulate(nextNode, _plateau);
update(winner, nextNode);
_plateau.restaurePosition(0);
}
Node nextPlay = root.nextPlay();
search.root(nextPlay);
return nextPlay.board().getDernierCoup();
return nextPlay.coup();
}
private Node selection(Node root){
......@@ -53,28 +54,26 @@ public class AlgoRechercheMCTS extends AlgoRecherche {
return currentNode;
}
private void expansion(Node leaf){
ArrayList<Coup> coups = leaf.getCoups();
private void expansion(Node leaf, Plateau leafPlateau){
ArrayList<Coup> coups = leafPlateau.getListeCoups(leaf.player());
Iterator<Coup> coup = coups.iterator();
Plateau leafPlateau = leaf.board();
Coup currentCoup;
while(coup.hasNext()){
currentCoup = coup.next();
leafPlateau.joueCoup(currentCoup);
Node newLeaf = new Node(leafPlateau, leaf.opponent(), leaf.player(), leaf);
leafPlateau.annuleDernierCoup();
Node newLeaf = new Node(currentCoup, leaf.opponent(), leaf.player());
leaf.children().add(newLeaf);
}
}
private Joueur simulate(Node node){
Plateau board = node.board();
private Joueur simulate(Node node, Plateau board){
Joueur p1 = node.player();Joueur p2 = node.opponent();
Joueur currentPlayer = node.player();
Random seed = new Random();
Coup coup;
ArrayList<Coup> coups;
while(!board.partieTerminee()){
ArrayList<Coup> coups = board.getListeCoups(currentPlayer);
Coup coup = coups.get(seed.nextInt(coups.size()));
coups = board.getListeCoups(currentPlayer);
coup = coups.get(seed.nextInt(coups.size()));
board.joueCoup(coup);
if(currentPlayer.equals(p1)){
currentPlayer = p2;
......
......@@ -46,6 +46,10 @@ public class Node {
return children;
}
public Coup coup(){
return coup;
}
public void addVisit(){
visits++;
}
......
......@@ -18,7 +18,7 @@ public class Player {
// Remplacer ici l'algorithme aléatoire par votre algorithme.
// Créer une nouvelle classe qui hérite de la class AlgoRecherche
AlgoRechercheMCTS alea = new AlgoRechercheMCTS(joueurOrdi, humain); // L'ordinateur joue au hasard
AlgoRechercheMCTS alea = new AlgoRechercheMCTS(joueurOrdi, humain, 100); // L'ordinateur joue au hasard
joueurOrdi.setAlgoRecherche(alea);
GrilleTicTacToe3x3 grille = new GrilleTicTacToe3x3();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment