Uses of Interface
squidpony.squidgrid.mapping.WorldMapGenerator.BiomeMapper
Package | Description |
---|---|
squidpony.squidgrid.mapping |
Tools specifically for generating maps and placing content in them, usually working with 2D char arrays.
|
-
Uses of WorldMapGenerator.BiomeMapper in squidpony.squidgrid.mapping
Classes in squidpony.squidgrid.mapping that implement WorldMapGenerator.BiomeMapper Modifier and Type Class Description static class
WorldMapGenerator.DetailedBiomeMapper
A way to get biome information for the cells on a map when you want an area's biome to be a combination of two main biome types, such as "Grassland" or "TropicalRainforest", with the biomes varying in weight between areas.static class
WorldMapGenerator.SimpleBiomeMapper
A way to get biome information for the cells on a map when you only need a single value to describe a biome, such as "Grassland" or "TropicalRainforest".Fields in squidpony.squidgrid.mapping declared as WorldMapGenerator.BiomeMapper Modifier and Type Field Description WorldMapGenerator.BiomeMapper
FantasyPoliticalMapper. biomeMapper
Methods in squidpony.squidgrid.mapping with parameters of type WorldMapGenerator.BiomeMapper Modifier and Type Method Description char[][]
FantasyPoliticalMapper. generate(long seed, WorldMapGenerator wmg, WorldMapGenerator.BiomeMapper biomeMapper, int factionCount)
Generates a 2D char array that represents the claims to the land described by the WorldMapGeneratorwmg
and the BiomeMapperbiomeMapper
by various Factions, whereFantasyPoliticalMapper.Faction
is an inner class.char[][]
FantasyPoliticalMapper. generate(long seed, WorldMapGenerator wmg, WorldMapGenerator.BiomeMapper biomeMapper, int factionCount, double controlledFraction)
Generates a 2D char array that represents the claims to the land described by the WorldMapGeneratorwmg
and the BiomeMapperbiomeMapper
by various Factions, whereFantasyPoliticalMapper.Faction
is an inner class.char[][]
FantasyPoliticalMapper. generate(long seed, WorldMapGenerator wmg, WorldMapGenerator.BiomeMapper biomeMapper, Collection<FantasyPoliticalMapper.Faction> factions, int factionCount, double controlledFraction)
Generates a 2D char array that represents the claims to the land described by the WorldMapGeneratorwmg
and the BiomeMapperbiomeMapper
by various Factions, whereFantasyPoliticalMapper.Faction
is an inner class.