Commit ab11fe24 authored by Timothy LAIRD's avatar Timothy LAIRD

Pre-Merge commit

parent b12b3e5f
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
<url>src/tictactoecodingame/AlgoRechercheMCTS.java</url> <url>src/tictactoecodingame/AlgoRechercheMCTS.java</url>
<bookmark id="1"> <bookmark id="1">
<name/> <name/>
<line>97</line> <line>96</line>
<key/> <key/>
</bookmark> </bookmark>
</file> </file>
......
...@@ -15,34 +15,35 @@ import java.util.Random; ...@@ -15,34 +15,35 @@ import java.util.Random;
*/ */
public class AlgoRechercheMCTS extends AlgoRecherche { public class AlgoRechercheMCTS extends AlgoRecherche {
ArbreMCTS search; ArbreMCTS search;
int maxIterations;
public AlgoRechercheMCTS(Joueur player, Joueur opponent){ public AlgoRechercheMCTS(Joueur player, Joueur opponent, int m){
search = new ArbreMCTS(player, opponent); search = new ArbreMCTS(player, opponent);
maxIterations = m;
} }
@Override @Override
public Coup meilleurCoup(Plateau _plateau, Joueur _joueur, boolean _ponder) { public Coup meilleurCoup(Plateau _plateau, Joueur _joueur, boolean _ponder) {
search = new ArbreMCTS(search.root().player(), search.root().opponent());
Node root = search.root(); Node root = search.root();
root.board(_plateau); _plateau.sauvegardePosition(0);
int iterations = 0; int iterations = 0;
Random seed = new Random(); Random seed = new Random();
while(iterations < 1){ while(iterations < maxIterations){
iterations++; iterations++;
Node nextNode = selection(root); Node nextNode = selection(root);
if(!nextNode.board().partieTerminee()){ if(!_plateau.partieTerminee()){
expansion(nextNode); expansion(nextNode, _plateau);
} }
if(!nextNode.children().isEmpty()){ if(!nextNode.children().isEmpty()){
nextNode = nextNode.children().get(seed.nextInt(nextNode.children().size())); nextNode = nextNode.children().get(seed.nextInt(nextNode.children().size()));
} }
Joueur winner = simulate(nextNode); Joueur winner = simulate(nextNode, _plateau);
update(winner, nextNode); update(winner, nextNode);
_plateau.restaurePosition(0);
} }
Node nextPlay = root.nextPlay(); Node nextPlay = root.nextPlay();
search.root(nextPlay); search.root(nextPlay);
return nextPlay.board().getDernierCoup(); return nextPlay.coup();
} }
private Node selection(Node root){ private Node selection(Node root){
...@@ -53,28 +54,26 @@ public class AlgoRechercheMCTS extends AlgoRecherche { ...@@ -53,28 +54,26 @@ public class AlgoRechercheMCTS extends AlgoRecherche {
return currentNode; return currentNode;
} }
private void expansion(Node leaf){ private void expansion(Node leaf, Plateau leafPlateau){
ArrayList<Coup> coups = leaf.getCoups(); ArrayList<Coup> coups = leafPlateau.getListeCoups(leaf.player());
Iterator<Coup> coup = coups.iterator(); Iterator<Coup> coup = coups.iterator();
Plateau leafPlateau = leaf.board();
Coup currentCoup; Coup currentCoup;
while(coup.hasNext()){ while(coup.hasNext()){
currentCoup = coup.next(); currentCoup = coup.next();
leafPlateau.joueCoup(currentCoup); Node newLeaf = new Node(currentCoup, leaf.opponent(), leaf.player());
Node newLeaf = new Node(leafPlateau, leaf.opponent(), leaf.player(), leaf);
leafPlateau.annuleDernierCoup();
leaf.children().add(newLeaf); leaf.children().add(newLeaf);
} }
} }
private Joueur simulate(Node node){ private Joueur simulate(Node node, Plateau board){
Plateau board = node.board();
Joueur p1 = node.player();Joueur p2 = node.opponent(); Joueur p1 = node.player();Joueur p2 = node.opponent();
Joueur currentPlayer = node.player(); Joueur currentPlayer = node.player();
Random seed = new Random(); Random seed = new Random();
Coup coup;
ArrayList<Coup> coups;
while(!board.partieTerminee()){ while(!board.partieTerminee()){
ArrayList<Coup> coups = board.getListeCoups(currentPlayer); coups = board.getListeCoups(currentPlayer);
Coup coup = coups.get(seed.nextInt(coups.size())); coup = coups.get(seed.nextInt(coups.size()));
board.joueCoup(coup); board.joueCoup(coup);
if(currentPlayer.equals(p1)){ if(currentPlayer.equals(p1)){
currentPlayer = p2; currentPlayer = p2;
......
...@@ -45,7 +45,11 @@ public class Node { ...@@ -45,7 +45,11 @@ public class Node {
public ArrayList<Node> children(){ public ArrayList<Node> children(){
return children; return children;
} }
public Coup coup(){
return coup;
}
public void addVisit(){ public void addVisit(){
visits++; visits++;
} }
...@@ -53,7 +57,7 @@ public class Node { ...@@ -53,7 +57,7 @@ public class Node {
public void addWin(){ public void addWin(){
wins++; wins++;
} }
public Node nextPlay(){ public Node nextPlay(){
Node bestNode = null; Node bestNode = null;
double winrate = 0; double winrate = 0;
......
...@@ -18,7 +18,7 @@ public class Player { ...@@ -18,7 +18,7 @@ public class Player {
// Remplacer ici l'algorithme aléatoire par votre algorithme. // Remplacer ici l'algorithme aléatoire par votre algorithme.
// Créer une nouvelle classe qui hérite de la class AlgoRecherche // 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); joueurOrdi.setAlgoRecherche(alea);
GrilleTicTacToe3x3 grille = new GrilleTicTacToe3x3(); 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