Ejemplo n.º 1
0
 /**
  * @param map
  * @return : the string representation of given map's regions
  */
 private static String getRegionsString(Map map) {
   String regionsString = "setup_map regions";
   for (Region region : map.regions) {
     int id = region.getId();
     int superRegionId = region.getSuperRegion().getId();
     regionsString = regionsString.concat(" " + id + " " + superRegionId);
   }
   return regionsString;
 }
Ejemplo n.º 2
0
 /**
  * @param map
  * @return : the string representation of given map's wastelands
  */
 private static String getWastelandsString(Map map) {
   String wastelandsString = "setup_map wastelands";
   for (Region region : map.getRegions()) {
     if (region.getArmies() > 2) {
       int id = region.getId();
       wastelandsString = wastelandsString.concat(" " + id);
     }
   }
   return wastelandsString;
 }
Ejemplo n.º 3
0
 /**
  * Checks if superRegion has at least two neutral non-wasteland regions
  *
  * @param superRegion
  * @return : true if another wasteland could be added to this superRegion
  */
 private static boolean roomForWasteland(SuperRegion superRegion) {
   int count = 0;
   for (Region region : superRegion.getSubRegions()) {
     if (region.getArmies() == 2) {
       count++;
       if (count >= 2) return true;
     }
   }
   return false;
 }
Ejemplo n.º 4
0
  /**
   * Sets up the map. Make every region neutral with 2 armies to start with. Adds wastelands (> 2
   * armies on a neutral) if wastelandSize > 0.
   *
   * @param initMap : the map object that hasn't been set up yet, i.e. no armies yet
   * @param wastelandSize : the amount of armies that a wasteland contains
   * @return : the fully initialized and setup Map object
   */
  public static Map setupMap(Map initMap, int wastelandSize) {
    Map map = initMap;
    for (Region region : map.regions) {
      region.setPlayerName("neutral");
      region.setArmies(2);
    }
    if (wastelandSize > 0) {
      int nrOfWastelands =
          (int)
              (map.getSuperRegions().size()
                  / 2); // amount of wastelands is half of the amount of superRegions

      for (int i = 0; i < nrOfWastelands; i++) {
        double rand = Math.random();
        int index = (int) (rand * map.getRegions().size());
        Region wasteland = map.getRegions().get(index);

        if (wasteland.getArmies() > 2 && !roomForWasteland(wasteland.getSuperRegion())) {
          i--;
          continue;
        }

        wasteland.setArmies(wastelandSize);
      }
    }
    return map;
  }
Ejemplo n.º 5
0
  /**
   * @param mapString : string that represents the map to be created
   * @return : a Map object to use in the game
   */
  public static Map createMap(String mapString) {
    Map map = new Map();

    // parse the map string
    try {
      JSONObject jsonMap = new JSONObject(mapString);

      // create SuperRegion objects
      JSONArray superRegions = jsonMap.getJSONArray("SuperRegions");
      for (int i = 0; i < superRegions.length(); i++) {
        JSONObject jsonSuperRegion = superRegions.getJSONObject(i);
        map.add(new SuperRegion(jsonSuperRegion.getInt("id"), jsonSuperRegion.getInt("bonus")));
      }

      // create Region object
      JSONArray regions = jsonMap.getJSONArray("Regions");
      for (int i = 0; i < regions.length(); i++) {
        JSONObject jsonRegion = regions.getJSONObject(i);
        SuperRegion superRegion = map.getSuperRegion(jsonRegion.getInt("superRegion"));
        map.add(new Region(jsonRegion.getInt("id"), superRegion));
      }

      // add the Regions' neighbors
      for (int i = 0; i < regions.length(); i++) {
        JSONObject jsonRegion = regions.getJSONObject(i);
        Region region = map.getRegion(jsonRegion.getInt("id"));
        JSONArray neighbors = jsonRegion.getJSONArray("neighbors");
        for (int j = 0; j < neighbors.length(); j++) {
          Region neighbor = map.getRegion(neighbors.getInt(j));
          region.addNeighbor(neighbor);
        }
      }
    } catch (JSONException e) {
      System.err.println("JSON: Can't parse map string: " + e);
    }

    map.sort();

    return map;
  }
Ejemplo n.º 6
0
 /**
  * @param map
  * @return : the string representation of how given map's regions are connected
  */
 private static String getNeighborsString(Map map) {
   String neighborsString = "setup_map neighbors";
   ArrayList<Point> doneList = new ArrayList<Point>();
   for (Region region : map.regions) {
     int id = region.getId();
     String neighbors = "";
     for (Region neighbor : region.getNeighbors()) {
       if (checkDoneList(doneList, id, neighbor.getId())) {
         neighbors = neighbors.concat("," + neighbor.getId());
         doneList.add(new Point(id, neighbor.getId()));
       }
     }
     if (neighbors.length() != 0) {
       neighbors = neighbors.replaceFirst(",", " ");
       neighborsString = neighborsString.concat(" " + id + neighbors);
     }
   }
   return neighborsString;
 }
Ejemplo n.º 7
0
 /**
  * Adds a double connection between given neighbor and this region
  *
  * @param neighbor
  */
 public void addNeighbor(Region neighbor) {
   if (!neighbors.contains(neighbor)) {
     neighbors.add(neighbor);
     neighbor.addNeighbor(this);
   }
 }