Example #1
0
  private void doFirstTurn() throws GameActionException {
    MessageBoard.setDefaultChannelValues();
    spawnSoldier();

    computePastrScores();
    computeBestPastrLocation();
    MessageBoard.BEST_PASTR_LOC.writeMapLocation(computedBestPastrLocation);

    Strategy.active = pickStrategyByAnalyzingMap();
    MessageBoard.STRATEGY.writeStrategy(Strategy.active);

    //		Debug.indicate("map", 2, "going with " + Strategy.active.toString());
  }