public void setup() throws Exception
{
String mp = "web/maps/palmerstonNorth.xml";
gameId=(gameId==null||"optional".equals(gameId)?System.currentTimeMillis()+"":gameId);
Game game = new Game(gameId,mp);
Engine myEngine = Engine.instance();
myEngine.games.put(game.getId(),game);
game.setMapPath("/maps/palmerstonNorth.xml");
myEngine.icons.put("x1.gif",false);
myEngine.icons.put("d1.gif",false);
IUser mrx = myEngine.login(mrxEmail,mrxName,"0");
IUser detective = myEngine.login(detectiveEmail,detectiveName,"1");
game.addPlayer(mrx,true);
game.addPlayer(detective,false);
IPlayer player = game.getPlayer(mrxHash);