|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES All Classes | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectrle.util.Rng
public class Rng
Some useful Random number functions.
Field Summary | |
---|---|
static java.util.Random |
random
The random number generator |
Constructor Summary | |
---|---|
Rng()
|
Method Summary | |
---|---|
static boolean |
nIn(int n,
int x)
Perform a check with the probability of n / x, with n <= x. |
static int |
normal(int mean,
int dev)
Normal dist. |
static boolean |
oneIn(int x)
Convenience -- 1 in X chance |
static int |
percent()
Convenience -- 0-99 inclusive |
static int |
randInt(int n)
Generates a random long integer X where O<=X |
static int |
randInt(int n,
java.util.Random rng)
Generates a random long integer X where O<=X |
static int |
randRange(int min,
int max)
|
static int |
randSpread(int ctr,
int range)
|
static int |
roll(int dice,
int sides)
Convenience -- simulated die roll. |
static int |
roll(int dice,
int sides,
int bonus)
Convenience -- simulated die roll. |
static int |
rollStat()
Roll a stat. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
---|
public static java.util.Random random
Constructor Detail |
---|
public Rng()
Method Detail |
---|
public static int randInt(int n)
public static int randInt(int n, java.util.Random rng)
public static int randRange(int min, int max)
public static int randSpread(int ctr, int range)
public static int percent()
public static int roll(int dice, int sides, int bonus)
public static int roll(int dice, int sides)
public static boolean oneIn(int x)
public static boolean nIn(int n, int x)
public static int rollStat()
public static int normal(int mean, int dev)
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES All Classes | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |