Othello/src/othello/Main.java

37 lines
965 B
Java
Raw Normal View History

2021-01-27 12:24:17 +01:00
package othello;
2021-01-27 18:27:28 +01:00
import java.util.ArrayList;
import othello.players.AbstractPlayer;
import othello.players.RandomPlayer;
2021-01-27 12:24:17 +01:00
public class Main {
public static void main(String[] args) {
AbstractPlayer p1 = new RandomPlayer();
AbstractPlayer p2 = new RandomPlayer();
AbstractPlayer[][] board = initialize(p1, p2);
State game = new State(board, p1, p2);
// board[1][5]=game.getCurrentPlayer();
while(!game.isOver()) {
AbstractPlayer player = game.getCurrentPlayer();
ArrayList<Pair<Point, Point>> moves = game.getMove(player);
game.toString();
player.play(moves);
}
// ArrayList<Pair<Point, Point>> moves = game.getMove(game.getCurrentPlayer());
// System.out.println(moves.toString());
2021-01-27 12:24:17 +01:00
}
public static AbstractPlayer[][] initialize(AbstractPlayer p1, AbstractPlayer p2){
AbstractPlayer[][] board = new AbstractPlayer[7][7];
2021-01-27 12:24:17 +01:00
board[0][0] = p2;
board[0][6] = p1;
board[6][0] = p1;
board[6][6] = p2;
return board;
}
}