Package | Description |
---|---|
squidpony.squidgrid.mapping |
Tools specifically for generating maps and placing content in them, usually working with 2D char arrays.
|
Modifier and Type | Class and Description |
---|---|
class |
LegacyDungeonGenerator
Deprecated.
Prefer DungeonGenerator with its almost-equivalent API
Created by Tommy Ettinger on 3/5/2016.
|
Modifier and Type | Method and Description |
---|---|
DungeonGenerator |
LegacyDungeonGenerator.addBoulders(int percentage)
Deprecated.
Turns the given percentage of floor cells not already adjacent to walls into wall cells, represented by '#'.
|
DungeonGenerator |
DungeonGenerator.addBoulders(int percentage)
Turns the given percentage of floor cells not already adjacent to walls into wall cells, represented by '#'.
|
DungeonGenerator |
LegacyDungeonGenerator.addDoors(int percentage,
boolean doubleDoors)
Deprecated.
Turns the given percentage of viable doorways into doors, represented by '+' for doors that allow travel along
the x-axis and '/' for doors that allow travel along the y-axis.
|
DungeonGenerator |
DungeonGenerator.addDoors(int percentage,
boolean doubleDoors)
Turns the given percentage of viable doorways into doors, represented by '+' for doors that allow travel along
the x-axis and '/' for doors that allow travel along the y-axis.
|
DungeonGenerator |
LegacyDungeonGenerator.addGrass(int percentage)
Deprecated.
Turns the majority of the given percentage of floor cells into grass cells, represented by '"'.
|
DungeonGenerator |
DungeonGenerator.addGrass(int percentage)
Turns the majority of the given percentage of floor cells into grass cells, represented by '"'.
|
DungeonGenerator |
LegacyDungeonGenerator.addTraps(int percentage)
Deprecated.
Turns the given percentage of open area floor cells into trap cells, represented by '^'.
|
DungeonGenerator |
DungeonGenerator.addTraps(int percentage)
Turns the given percentage of open area floor cells into trap cells, represented by '^'.
|
DungeonGenerator |
LegacyDungeonGenerator.addWater(int percentage)
Deprecated.
Turns the majority of the given percentage of floor cells into water cells, represented by '~'.
|
DungeonGenerator |
DungeonGenerator.addWater(int percentage)
Turns the majority of the given percentage of floor cells into water cells, represented by '~'.
|
DungeonGenerator |
LegacyDungeonGenerator.addWater(int percentage,
int islandSpacing)
Deprecated.
Turns the majority of the given percentage of floor cells into water cells, represented by '~'.
|
DungeonGenerator |
DungeonGenerator.addWater(int percentage,
int islandSpacing)
Turns the majority of the given percentage of floor cells into water cells, represented by '~'.
|
DungeonGenerator |
LegacyDungeonGenerator.clearEffects()
Deprecated.
Removes any door, water, or trap insertion effects that this DungeonGenerator would put in future dungeons.
|
DungeonGenerator |
DungeonGenerator.clearEffects()
Removes any door, water, or trap insertion effects that this DungeonGenerator would put in future dungeons.
|
Constructor and Description |
---|
DungeonGenerator(DungeonGenerator copying)
Copies all fields from copying and makes a new DungeonGenerator.
|
LegacyDungeonGenerator(DungeonGenerator copying)
Deprecated.
Copies all fields from copying and makes a new DungeonGenerator.
|
Copyright © 2012–2016. All rights reserved.