Package | Description |
---|---|
com.BombingGames.WurfelEngine.Core.Map | |
com.BombingGames.WurfelEngine.Core.Map.Generators |
Modifier and Type | Method and Description |
---|---|
static Generator |
AbstractMap.getDefaultGenerator()
Get the default set generator.
|
Generator |
AbstractMap.getGenerator() |
Modifier and Type | Method and Description |
---|---|
static void |
AbstractMap.setDefaultGenerator(Generator generator) |
void |
AbstractMap.setGenerator(Generator generator)
Set the generator used for generating maps
|
Constructor and Description |
---|
AbstractMap(java.io.File directory,
Generator generator,
int saveSlot) |
Chunk(ChunkMap map,
java.io.File path,
int coordX,
int coordY,
Generator generator)
Creates a chunk by trying to load and if this fails it generates a new one.
|
Chunk(ChunkMap map,
int coordX,
int coordY,
Generator generator)
Creates a chunk by generating a new one.
|
ChunkMap(java.io.File name,
Generator generator,
int saveslot)
Loads a map.
|
CompleteMap(java.io.File name,
Generator generator,
int saveSlot) |
Modifier and Type | Class and Description |
---|---|
class |
AirGenerator
A simple generator who returns only air.
|
class |
BlockTestGenerator
A generator which uses every block.
|
class |
FullMapGenerator
Fills the complete map with a block of a specific id.
|
class |
IslandGenerator
Fenerates islands
|