Ejemplo n.º 1
0
 public override void StartGame(GameMap gameState)
 {
     WriteRoundFiles(gameState);
     _botRunner.CalibrateBot();
     RemoveMoveFile();//Remove the move file created by calibration bots
     NewRoundStarted(gameState);
 }
Ejemplo n.º 2
0
 public override void StartGame(GameMap gameState)
 {
     CurrentWorkingDirectory = Path.Combine(Path.Combine(WorkDir, RoundPath(gameState, _currentRound)),
                                            BattleshipPlayer.Key.ToString(CultureInfo.InvariantCulture));
     WriteRoundFiles(gameState);
     _botRunner.CalibrateBot(); //
     RemoveCommandFile();       //Remove the move file created by calibration bots
     NewRoundStarted(gameState);
 }