public abstract class AbstractMinecraft1_1BiomeScheme extends AbstractBiomeScheme
BiomeScheme
s which provide the biomes as
used in Minecraft 1.1.Modifier and Type | Field and Description |
---|---|
static int |
BIOME_BEACH |
static int |
BIOME_DESERT |
static int |
BIOME_DESERT_HILLS |
static int |
BIOME_EXTREME_HILLS |
static int |
BIOME_EXTREME_HILLS_EDGE |
static int |
BIOME_FOREST |
static int |
BIOME_FOREST_HILLS |
static int |
BIOME_FROZEN_OCEAN |
static int |
BIOME_FROZEN_RIVER |
static int |
BIOME_HELL |
static int |
BIOME_ICE_MOUNTAINS |
static int |
BIOME_ICE_PLAINS |
static int |
BIOME_MUSHROOM_ISLAND |
static int |
BIOME_MUSHROOM_ISLAND_SHORE |
static java.lang.String[] |
BIOME_NAMES |
static int |
BIOME_OCEAN |
static int |
BIOME_PLAINS |
static int |
BIOME_RIVER |
static int |
BIOME_SKY |
static int |
BIOME_SWAMPLAND |
static int |
BIOME_TAIGA |
static int |
BIOME_TAIGA_HILLS |
Constructor and Description |
---|
AbstractMinecraft1_1BiomeScheme() |
Modifier and Type | Method and Description |
---|---|
int |
getBiomeCount()
Get the number of biomes.
|
java.lang.String |
getBiomeName(int biome)
Get the name of the specified biome in this biome scheme.
|
int |
getColour(int biome,
ColourScheme colourScheme)
Get the colour of the specified biome.
|
boolean[][] |
getPattern(int biome)
The two dimensional pattern to use for painting the specified biome, if
any.
|
boolean |
isBiomePresent(int biome)
Indicates whether the specified biome ID is present in this biome scheme.
|
getBiomes
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
getBiomes, getStringId, setSeed
public static final int BIOME_OCEAN
public static final int BIOME_PLAINS
public static final int BIOME_DESERT
public static final int BIOME_EXTREME_HILLS
public static final int BIOME_FOREST
public static final int BIOME_TAIGA
public static final int BIOME_SWAMPLAND
public static final int BIOME_RIVER
public static final int BIOME_HELL
public static final int BIOME_SKY
public static final int BIOME_FROZEN_OCEAN
public static final int BIOME_FROZEN_RIVER
public static final int BIOME_ICE_PLAINS
public static final int BIOME_ICE_MOUNTAINS
public static final int BIOME_MUSHROOM_ISLAND
public static final int BIOME_MUSHROOM_ISLAND_SHORE
public static final int BIOME_BEACH
public static final int BIOME_DESERT_HILLS
public static final int BIOME_FOREST_HILLS
public static final int BIOME_TAIGA_HILLS
public static final int BIOME_EXTREME_HILLS_EDGE
public static final java.lang.String[] BIOME_NAMES
public final int getBiomeCount()
BiomeScheme
public final int getColour(int biome, ColourScheme colourScheme)
BiomeScheme
biome
- The biome for which to determine the colour.colourScheme
- A colour scheme which the biome scheme may use, at
its option, for determining the colour.public final boolean[][] getPattern(int biome)
BiomeScheme
true
indicates a foreground pixel.biome
- The biome for which to return the pattern.null
if no pattern should be used.public boolean isBiomePresent(int biome)
BiomeScheme
biome
- The biome ID to check.true
if this biome scheme contains the specified
biome.public java.lang.String getBiomeName(int biome)
BiomeScheme
biome
- The biome for which to retrieve the name.