25
May

Game Interface

public interface Game<GAME extends Game<GAME>>
{
    GAME copy();
    int getCurrentPlayer(); // The players start from 0, 1, 2... and so on
    boolean isGameOver();
    int getMovesSize();
    List<String> getMoves();
    Outcome[] getOutcomes();
    void makeMove(int move);
    void reset();
    String boardString();
}
10
May

CEC 2011 Ms Pac-Man vs Ghost Team Competition

Ms Pac-Man is a highly enjoyable yet challenging game that is usually viewed form the perspective of the Ms Pac-Man agent, and this has already been the subject of an on-going series of competitions. However, the game also provides an excellent environment for testing multi-agent strategies, by controlling the team of ghosts. This website contains all the information required to get you started with your controller:

http://www.pacman-vs-ghosts.net/