Package civquest.visibility.blackWhite

Examples of civquest.visibility.blackWhite.TerrainVisibleFieldInfo


      }
    }
  }

  private void constructRemoveCity() {
    TerrainVisibleFieldInfo fieldInfo = manager.getTVFInfo(coord);
    if (fieldInfo != null) {
      // we have a (frozen) field-info (and therefore, the city is (was)
      // not ours!)

      if (fieldInfo.getCityID() != null
        && Game.getMapData().getCityID(coord) == null) {
        // and there is a city in the field-info, but no longer on
        // the real map

        removeCity = new RemoveCity(manager.getResToNation(),
                      fieldInfo.getCityID());
      }
      // CAUTION: Case city still there, but with different id not yet
      // implemented!
    }
  }
View Full Code Here

TOP

Related Classes of civquest.visibility.blackWhite.TerrainVisibleFieldInfo

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.