summaryrefslogtreecommitdiff
path: root/BJC-Utils2/src/main/java/bjc/utils/dice/ScalarDiceExpression.java
blob: 2b174c8db2f1519af1ebd989fd1b750215c9e5d5 (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
package bjc.utils.dice;

/**
 * A dice expression that combines a scalar and a dice
 * 
 * @author ben
 *
 */
public class ScalarDiceExpression implements IDiceExpression {
	/**
	 * The operation to combine with
	 */
	private DiceExpressionType	det;
	/**
	 * The expression to be combined
	 */
	private IDiceExpression		exp;

	/**
	 * The scalar to be combined
	 */
	private int					scalar;

	/**
	 * Create a dice expression with a scalar
	 * 
	 * @param dex
	 *            The dice to use
	 * @param scalr
	 *            The scalar to use
	 * @param dt
	 *            The operation to combine with
	 */
	public ScalarDiceExpression(IDiceExpression dex, int scalr,
			DiceExpressionType dt) {
		exp = dex;
		scalar = scalr;
		det = dt;
	}

	@Override
	public int roll() {
		switch (det) {
			case ADD:
				return exp.roll() + scalar;
			case SUBTRACT:
				return exp.roll() - scalar;
			case MULTIPLY:
				return exp.roll() * scalar;
			case DIVIDE:
				return Math.round(exp.roll() / scalar);
			default:
				throw new IllegalStateException(
						"Got passed  a invalid ScalarExpressionType "
								+ det);
		}
	}

	@Override
	public String toString() {
		return "scalar-exp[type=" + det + ", l=" + scalar + ", r="
				+ exp.toString() + "]";
	}
}