Package megamek.common
Class MMRandom
java.lang.Object
megamek.common.MMRandom
Used by Compute to generate random numbers, usually dice rolls. The base
class is abstract, having a number of concrete subclasses that it will give
using the generate() method.
- Since:
- April 27, 2003, 11:29 PM
-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptiond6()
A single died6
(int nDice) Simulates six-sided die rolls.d6
(int nDice, int keep) abstract float
Returns a randomfloat
in the range of 0 to 1abstract int
randomInt
(int maxValue) Returns a randomint
in the range from 0 to one less than the supplied max value.
-
Field Details
-
R_DEFAULT
public static final int R_DEFAULT- See Also:
-
R_SUN
public static final int R_SUN- See Also:
-
R_CRYPTO
public static final int R_CRYPTO- See Also:
-
R_POOL36
public static final int R_POOL36- See Also:
-
-
Constructor Details
-
MMRandom
public MMRandom()
-
-
Method Details
-
d6
Simulates six-sided die rolls.- Parameters:
nDice
- - theint
number of dice to roll. If this value is less than or equal to zero, anIllegalArgumentException
will be thrown.- Returns:
- a
Roll
object containing the roll results. - Throws:
IllegalArgumentException
- will be thrown if the input is <= 0.
-
d6
-
d6
A single die -
randomInt
public abstract int randomInt(int maxValue) Returns a randomint
in the range from 0 to one less than the supplied max value.- Parameters:
maxValue
- - the smallestint
value which will exceed any random number returned by this method.- Returns:
- a random
int
from the value set [0, maxValue).
-
randomFloat
public abstract float randomFloat()Returns a randomfloat
in the range of 0 to 1- Returns:
- a random
float
from the value set [0, 1]
-