Uses of Class
squidpony.squidmath.StatefulRNG
Package | Description |
---|---|
squidpony |
Utilities that don't fit elsewhere in SquidLib; mostly text manipulation, compression, and helper code.
|
squidpony.squidai |
Tools for finding paths, optimizing targets for area-of-effect (AOE) abilities, and evaluating influence on a grid.
|
squidpony.squidgrid.mapping |
Tools specifically for generating maps and placing content in them, usually working with 2D char arrays.
|
squidpony.squidmath |
A very broad package containing random number generators, geometry tools, data structures, and noise functions.
|
-
Uses of StatefulRNG in squidpony
Fields in squidpony declared as StatefulRNG Modifier and Type Field Description static StatefulRNG
MonsterGen. srng
StatefulRNG
ProceduralMessaging.AssociatedName. srng
-
Uses of StatefulRNG in squidpony.squidai
Fields in squidpony.squidai declared as StatefulRNG Modifier and Type Field Description StatefulRNG
WaypointPathfinder. rng
-
Uses of StatefulRNG in squidpony.squidgrid.mapping
Fields in squidpony.squidgrid.mapping declared as StatefulRNG Modifier and Type Field Description StatefulRNG
FantasyPoliticalMapper. rng
StatefulRNG
PoliticalMapper. rng
StatefulRNG
SectionDungeonGenerator. rng
StatefulRNG
SpillWorldMap. rng
Constructors in squidpony.squidgrid.mapping with parameters of type StatefulRNG Constructor Description MetsaMapFactory(int width, int height, StatefulRNG rng)
-
Uses of StatefulRNG in squidpony.squidmath
Subclasses of StatefulRNG in squidpony.squidmath Modifier and Type Class Description class
DeckRNG
An RNG variant that has 16 possible grades of value it can produce and shuffles them like a deck of cards.class
EditRNG
A subclass of StatefulRNG (and thus RNG) that allows customizing many parts of the random number generation.Methods in squidpony.squidmath that return StatefulRNG Modifier and Type Method Description StatefulRNG
StatefulRNG. copy()
Creates a copy of this StatefulRNG; it will generate the same random numbers, given the same calls in order, as this StatefulRNG at the point copy() is called.