summaryrefslogtreecommitdiff
path: root/dice-lang/src/bjc/utils/dice/ScalarDiceExpression.java
diff options
context:
space:
mode:
authorbculkin2442 <bjculkin@mix.wvu.edu>2016-03-28 08:44:54 -0400
committerbculkin2442 <bjculkin@mix.wvu.edu>2016-03-28 08:44:54 -0400
commit78d9c539e25f16fd15f06c2b2c48c0ad37a21540 (patch)
tree52d5db559d390c2fb83d4a4cd3bbfa4344c482e8 /dice-lang/src/bjc/utils/dice/ScalarDiceExpression.java
parent1a020352bdcbb6b5279b703f93e42a1eb7071e36 (diff)
Imported dice stuff from general utils into dedicated project
Diffstat (limited to 'dice-lang/src/bjc/utils/dice/ScalarDiceExpression.java')
-rw-r--r--dice-lang/src/bjc/utils/dice/ScalarDiceExpression.java75
1 files changed, 75 insertions, 0 deletions
diff --git a/dice-lang/src/bjc/utils/dice/ScalarDiceExpression.java b/dice-lang/src/bjc/utils/dice/ScalarDiceExpression.java
new file mode 100644
index 0000000..4c3f244
--- /dev/null
+++ b/dice-lang/src/bjc/utils/dice/ScalarDiceExpression.java
@@ -0,0 +1,75 @@
+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;
+ }
+
+ /*
+ * (non-Javadoc)
+ *
+ * @see bjc.utils.dice.IDiceExpression#roll()
+ */
+ @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);
+ }
+ }
+
+ /*
+ * (non-Javadoc)
+ *
+ * @see java.lang.Object#toString()
+ */
+ @Override
+ public String toString() {
+ return "scalar-exp[type=" + det + ", l=" + scalar + ", r="
+ + exp.toString() + "]";
+ }
+}