blob: 50315e95a3a13acd4290f1fb3e9d9760e305f796 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
|
package bjc.dicelang;
/**
* A dice expression that combines a scalar and a dice
*
* @author ben
*
*/
public class ScalarDiceExpression implements IDiceExpression {
/**
* The operation to combine with
*/
private DiceExpressionType expressionType;
/**
* The expression to be combined
*/
private IDiceExpression expression;
/**
* The scalar to be combined
*/
private int scalar;
/**
* Create a dice expression with a scalar
*
* @param expr
* The dice to use
* @param scalr
* The scalar to use
* @param type
* The operation to combine with
*/
public ScalarDiceExpression(IDiceExpression expr, int scalr,
DiceExpressionType type) {
expression = expr;
scalar = scalr;
expressionType = type;
}
/*
* (non-Javadoc)
*
* @see bjc.utils.dice.IDiceExpression#roll()
*/
@Override
public int roll() {
switch (expressionType) {
case ADD:
return expression.roll() + scalar;
case SUBTRACT:
return expression.roll() - scalar;
case MULTIPLY:
return expression.roll() * scalar;
case DIVIDE:
try {
return expression.roll() / scalar;
} catch (ArithmeticException aex) {
UnsupportedOperationException usex = new UnsupportedOperationException(
"Attempted to divide by zero.");
usex.initCause(aex);
throw usex;
}
default:
throw new IllegalStateException(
"Got passed a invalid ScalarExpressionType "
+ expressionType);
}
}
/*
* (non-Javadoc)
*
* @see java.lang.Object#toString()
*/
@Override
public String toString() {
return "scalar-exp[type=" + expressionType + ", l=" + scalar
+ ", r=" + expression.toString() + "]";
}
}
|