예제 #1
0
 public void loadDwarfMaps()
 {
     currentDwarfMap = new DwarfWorldMap();
     currentDwarfMap.loadElevationMap(Settings.Default.elevationMapPath);
     currentDwarfMap.loadWaterMap(Settings.Default.elevationWaterMapPath);
     currentDwarfMap.loadBiomeMap(Settings.Default.biomeMapPath);
     currentCaveMap = new CaveThing(currentDwarfMap);
 }
예제 #2
0
 public void loadDwarfMaps()
 {
     currentDwarfMap = new DwarfWorldMap();
     currentDwarfMap.loadElevationMap(Settings.Default.elevationMapPath);
     currentDwarfMap.loadWaterMap(Settings.Default.elevationWaterMapPath);
     currentDwarfMap.loadBiomeMap(Settings.Default.biomeMapPath);
     currentDwarfMap.loadStructureMap(Settings.Default.structureMapPath);
     currentCaveMap = new CaveThing(currentDwarfMap);
    /* internalMap = new mapData(((Settings.Default.borderEast - Settings.Default.borderWest + 2) * Settings.Default.blocksPerEmbarkTile) * 16,
         ((Settings.Default.borderSouth - Settings.Default.borderNorth + 2) * Settings.Default.blocksPerEmbarkTile) * 16, Settings.Default.mapCenterX * 16, Settings.Default.mapCenterY * 16);
         */
 }
예제 #3
0
 public void loadDwarfMaps()
 {
     currentDwarfMap = new DwarfWorldMap();
     currentDwarfMap.loadElevationMap(Settings.Default.elevationMapPath);
     currentDwarfMap.loadWaterMap(Settings.Default.elevationWaterMapPath);
     currentDwarfMap.loadBiomeMap(Settings.Default.biomeMapPath);
     currentCaveMap = new CaveThing(currentDwarfMap);
 }