blob: b8faeda45bf14514d994aa53ea9c7fe771df0928 (
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
|
package bjc.dicelang.dice;
import java.util.Arrays;
/*
* @NOTE
* I'm not a particularly large fan of sticking everything on this class
* and just documenting which fields are tied together in a non-obvious
* way. I think a class hierarchy might be better, but I am unsure of the
* details.
*/
/**
* Represents either a die or a die list.
*
* @author Ben Culkin
*/
public class DieExpression {
/** Is this expression a list? */
public final boolean isList;
/** The scalar value in this expression, if there is one. */
public Die scalar;
/** The list value in this expression, if there is one. */
public DieList list;
/**
* Create a scalar die expression.
*
* @param scal
* The scalar value of this expression.
*/
public DieExpression(final Die scal) {
isList = false;
scalar = scal;
}
/**
* Create a list die expression.
*
* @param lst
* The list value of this expression.
*/
public DieExpression(final DieList lst) {
isList = true;
list = lst;
}
@Override
public String toString() {
if (isList) {
return list.toString();
}
return scalar.toString();
}
/**
* Get the value of this expression as a string.
*
* @return The value of the expression as a string.
*/
public String value() {
if (isList) {
return Arrays.toString(list.roll());
}
return Long.toString(scalar.roll());
}
}
|