- I created a ComboPlayer.java agent. It sucks and doesn't really work, but I created it. Now I'm putting it down to work on other things.

This commit is contained in:
Marshall
2012-04-29 20:54:34 -04:00
parent e012f17b33
commit 8de42a3562
13 changed files with 239 additions and 83 deletions

View File

@@ -4,6 +4,7 @@ import model.Board;
import model.Move;
import model.comPlayer.generator.MinimaxMoveGenerator;
import model.comPlayer.generator.MoveGenerator;
import model.playerModel.GameGoal;
import model.playerModel.PlayerModel;
public class MinimaxComPlayer implements Player {
@@ -28,6 +29,12 @@ public class MinimaxComPlayer implements Player {
return true; // always ready to play a random valid move
}
@Override
public void setGameGoal(GameGoal target) {
// TODO Auto-generated method stub
}
@Override
public String toString() {
return "Minimax ComPlayer";