|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES All Classes | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectrle.core.vm.PlugInBase
rle.core.data.SimpleFormulaComputer
public class SimpleFormulaComputer
A Computer that processes a simple formula. This class supports the following operators:
() - parentheses can delineate terms to force order of operations * - multiplication / - division + - addition - - subtraction Access to attributes in a RuntimeData set can be achieved like this: ${attribute-id} Access to values in a lookup table: ${table-name[row-number][column-number]} Special functionality is provided to facilitate using tables to specify the bonuses that should be used for various stat (Str, Con, etc) values: ${con-hp-bonus[${statIdx(${con})}]} Formulas are converted to lower case prior to evaluation, so users may use any case conventions they wish for aesthetic purposes, and it won't affect processing. It is a good bet that the supported formats will be somewhat volatile as time goes on; the current implementation should be deemed more a proof- of-concept than a finished product.
Field Summary | |
---|---|
protected java.util.Random |
random
The random number generator |
Fields inherited from class rle.core.vm.PlugInBase |
---|
config, context, parameters |
Constructor Summary | |
---|---|
SimpleFormulaComputer()
|
Method Summary | |
---|---|
int |
bonus(int max,
int lev)
Magic bonus. |
java.lang.Object |
compute(java.lang.String key,
RuntimeData source)
Perform the computation. |
protected java.lang.String |
evaluateVariable(java.lang.String text,
RuntimeData data)
Evaluate a scripted variable. |
protected java.lang.String |
grabToken(java.lang.String s)
|
int |
normal(int mean,
int dev)
Normal dist. |
boolean |
oneIn(int x)
Convenience -- 1 in X chance |
int |
percent()
Convenience -- 0-99 inclusive |
int |
randInt(int n)
Generates a random long integer X where O<=X |
int |
randInt(int n,
java.util.Random rng)
Generates a random long integer X where O<=X |
int |
randRange(int min,
int max)
|
int |
randSpread(int ctr,
int range)
|
protected java.lang.String |
resolveVariables(java.lang.String text,
RuntimeData data)
Replace scripted variables with in-place, text values. |
int |
roll(int dice,
int sides)
Convenience -- simulated die roll. |
int |
roll(int dice,
int sides,
int bonus)
Convenience -- simulated die roll. |
int |
roll(java.lang.String s)
Obtain a value for the formula s. |
int |
roll(java.lang.String formula,
RuntimeData data)
Obtain a value for the formula s, within the context of data. |
int |
rollStat()
Roll a stat. |
int |
statLookupIndex(int stat)
The index of a stat into a lookup table. |
Methods inherited from class rle.core.vm.PlugInBase |
---|
config, getContext, getParameters, paramMap, setConfig, setParameters |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
---|
protected final java.util.Random random
Constructor Detail |
---|
public SimpleFormulaComputer()
Method Detail |
---|
public int roll(java.lang.String s)
public int roll(java.lang.String formula, RuntimeData data)
public int statLookupIndex(int stat)
protected java.lang.String resolveVariables(java.lang.String text, RuntimeData data)
protected java.lang.String evaluateVariable(java.lang.String text, RuntimeData data)
1. var - the integral value of attribute "var" 2. strBonus[5] - the row 5 in 1D table strBonus 3. statBonus[5][3] - row 5, column 3 in 2D table statBonus 4. statBonus[str][3] - the row corresponding to the X Axis label 'str', and column 3. 5. statIdx(5) - the index into a stat "bonus progression" array at which the given stat value is represented. Note that the text in var is guaranteed not to contain any unevaluated variables.
protected java.lang.String grabToken(java.lang.String s)
public java.lang.Object compute(java.lang.String key, RuntimeData source)
compute
in interface RuntimeComputer
public int randInt(int n)
public int randInt(int n, java.util.Random rng)
public int randRange(int min, int max)
public int randSpread(int ctr, int range)
public int percent()
public int roll(int dice, int sides, int bonus)
public int roll(int dice, int sides)
public boolean oneIn(int x)
public int rollStat()
public int normal(int mean, int dev)
public int bonus(int max, int lev)
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES All Classes | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |