Package | Description |
---|---|
squidpony.squidgrid.mapping |
Tools specifically for generating maps and placing content in them, usually working with 2D char arrays.
|
squidpony.squidgrid.mapping.styled |
Support code for working with tiled dungeon generation; normally only TilesetType is used outside SquidLib.
|
Modifier and Type | Method and Description |
---|---|
char[][] |
SectionDungeonGenerator.generate(TilesetType kind)
Generate a char[][] dungeon given a TilesetType; the comments in that class provide some opinions on what
each TilesetType value could be used for in a game.
|
char[][] |
LegacyDungeonGenerator.generate(TilesetType kind)
Deprecated.
Generate a char[][] dungeon given a TilesetType; the comments in that class provide some opinions on what
each TilesetType value could be used for in a game.
|
char[][] |
DungeonGenerator.generate(TilesetType kind)
Generate a char[][] dungeon given a TilesetType; the comments in that class provide some opinions on what
each TilesetType value could be used for in a game.
|
Modifier and Type | Method and Description |
---|---|
static TilesetType |
TilesetType.valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TilesetType[] |
TilesetType.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Modifier and Type | Method and Description |
---|---|
char[][] |
DungeonBoneGen.generate(TilesetType tt,
int w,
int h)
Generate a dungeon given a TilesetType enum.
|
String[][] |
DungeonBoneGen.getTiles(TilesetType tt)
Gets an array of all herringbone tiles associated with a TilesetType enum.
|
Copyright © 2012–2016. All rights reserved.