cleanup
This commit is contained in:
parent
e66758cd73
commit
0b2ad9f92d
4 changed files with 4 additions and 64 deletions
|
@ -1,4 +1,4 @@
|
||||||
package common.world;
|
package common.dimension;
|
||||||
|
|
||||||
import java.util.Map;
|
import java.util.Map;
|
||||||
|
|
|
@ -16,8 +16,6 @@ import common.nbt.NBTTagList;
|
||||||
import common.nbt.NBTTagString;
|
import common.nbt.NBTTagString;
|
||||||
import common.util.ExtMath;
|
import common.util.ExtMath;
|
||||||
import common.util.Vec3;
|
import common.util.Vec3;
|
||||||
import common.world.CloudType;
|
|
||||||
import common.world.SkyboxType;
|
|
||||||
import common.world.State;
|
import common.world.State;
|
||||||
import common.world.Weather;
|
import common.world.Weather;
|
||||||
|
|
||||||
|
@ -41,59 +39,6 @@ public abstract class Dimension extends Nameable implements Comparable<Dimension
|
||||||
public float biomeScaleOffset = 0.0F;
|
public float biomeScaleOffset = 0.0F;
|
||||||
}
|
}
|
||||||
|
|
||||||
// public static class FlatSettings {
|
|
||||||
// public IBlockState state;
|
|
||||||
// public int height;
|
|
||||||
//
|
|
||||||
// public FlatSettings(IBlockState block) {
|
|
||||||
// this.state = block;
|
|
||||||
// }
|
|
||||||
// }
|
|
||||||
|
|
||||||
// public static class OreSettings {
|
|
||||||
// public IBlockState state;
|
|
||||||
// public boolean distrib;
|
|
||||||
// public int size;
|
|
||||||
// public int count;
|
|
||||||
// public int addCount;
|
|
||||||
// public int minHeight;
|
|
||||||
// public int maxHeight;
|
|
||||||
//
|
|
||||||
// public OreSettings(IBlockState block, boolean distrib, int size, int count, int addCount, int minCenter, int maxSpread) {
|
|
||||||
// this.state = block;
|
|
||||||
// this.distrib = distrib;
|
|
||||||
// this.size = size;
|
|
||||||
// this.count = count;
|
|
||||||
// this.addCount = addCount;
|
|
||||||
// this.minHeight = minCenter;
|
|
||||||
// this.maxHeight = maxSpread;
|
|
||||||
// }
|
|
||||||
//
|
|
||||||
// public OreSettings(IBlockState block, boolean distrib, int size, int count, int minCenter, int maxSpread) {
|
|
||||||
// this(block, distrib, size, count, 0, minCenter, maxSpread);
|
|
||||||
// }
|
|
||||||
//
|
|
||||||
// public OreSettings(IBlockState block, int size, int count, int divAdd, int min, int max) {
|
|
||||||
// this(block, false, size, count, divAdd, min, max);
|
|
||||||
// }
|
|
||||||
//
|
|
||||||
// public OreSettings(IBlockState block, int size, int count, int min, int max) {
|
|
||||||
// this(block, false, size, count, min, max);
|
|
||||||
// }
|
|
||||||
//
|
|
||||||
//// public OreSettings(IBlockState block) {
|
|
||||||
//// this(block, 9, 20, 0, 64);
|
|
||||||
//// }
|
|
||||||
//
|
|
||||||
// public FeatureOres createGenerator() {
|
|
||||||
// return new FeatureOres(this.state, this.count, this.addCount, this.size, this.minHeight, this.maxHeight, this.distrib);
|
|
||||||
// }
|
|
||||||
//
|
|
||||||
//// public OreSettings clone() {
|
|
||||||
//// return new OreSettings(this.state, this.distrib, this.size, this.count, this.addCount, this.minHeight, this.maxHeight);
|
|
||||||
//// }
|
|
||||||
// }
|
|
||||||
|
|
||||||
public static enum GeneratorType {
|
public static enum GeneratorType {
|
||||||
FLAT("flat"), PERLIN("perlin"), SIMPLE("simple"), ISLAND("island"), CAVERN("cavern"), DESTROYED("destroyed");
|
FLAT("flat"), PERLIN("perlin"), SIMPLE("simple"), ISLAND("island"), CAVERN("cavern"), DESTROYED("destroyed");
|
||||||
|
|
||||||
|
@ -225,7 +170,6 @@ public abstract class Dimension extends Nameable implements Comparable<Dimension
|
||||||
private long rotationPeriod = 1L;
|
private long rotationPeriod = 1L;
|
||||||
private int timeQualifier = 9;
|
private int timeQualifier = 9;
|
||||||
private int brightness = 0;
|
private int brightness = 0;
|
||||||
// private String customName = null;
|
|
||||||
|
|
||||||
// server / gen
|
// server / gen
|
||||||
private Weather defaultWeather = Weather.CLEAR;
|
private Weather defaultWeather = Weather.CLEAR;
|
||||||
|
@ -291,10 +235,6 @@ public abstract class Dimension extends Nameable implements Comparable<Dimension
|
||||||
this.fullName = name;
|
this.fullName = name;
|
||||||
}
|
}
|
||||||
|
|
||||||
// public final void setCustomName(String name) {
|
|
||||||
// this.customName = name;
|
|
||||||
// }
|
|
||||||
|
|
||||||
public final void setSeed(long seed) {
|
public final void setSeed(long seed) {
|
||||||
this.seed = seed;
|
this.seed = seed;
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
package common.world;
|
package common.dimension;
|
||||||
|
|
||||||
import java.util.Map;
|
import java.util.Map;
|
||||||
|
|
|
@ -13,6 +13,7 @@ import common.collect.Maps;
|
||||||
import common.collect.Sets;
|
import common.collect.Sets;
|
||||||
import common.color.DyeColor;
|
import common.color.DyeColor;
|
||||||
import common.dimension.Area;
|
import common.dimension.Area;
|
||||||
|
import common.dimension.CloudType;
|
||||||
import common.dimension.DimType;
|
import common.dimension.DimType;
|
||||||
import common.dimension.Dimension;
|
import common.dimension.Dimension;
|
||||||
import common.dimension.Domain;
|
import common.dimension.Domain;
|
||||||
|
@ -32,7 +33,6 @@ import common.nbt.NBTTagCompound;
|
||||||
import common.nbt.NBTTagList;
|
import common.nbt.NBTTagList;
|
||||||
import common.rng.Random;
|
import common.rng.Random;
|
||||||
import common.util.PortalType;
|
import common.util.PortalType;
|
||||||
import common.world.CloudType;
|
|
||||||
import common.world.State;
|
import common.world.State;
|
||||||
import common.world.Weather;
|
import common.world.Weather;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue