-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathOpCode.java
More file actions
77 lines (72 loc) · 2.54 KB
/
OpCode.java
File metadata and controls
77 lines (72 loc) · 2.54 KB
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
import java.math.BigDecimal;
public class OpCode extends ProgramBase implements java.io.Serializable {
private static final VM vm = new VM();
public static class PopFromVM extends ValueBase implements java.io.Serializable {
@Override
public Object getData() {
String tmp = vm.pop();
if (tmp.charAt(0) == 'T') {
return new SyntaxTree.Text(tmp.substring(1));
} else if (tmp.charAt(0) == 'N') {
return new SyntaxTree.Number(new BigDecimal(tmp.substring(1)));
} else if (tmp.charAt(0) == 'B') {
return new SyntaxTree.Boolean(tmp.charAt(1) == '1');
}
return new SyntaxTree.Null();
}
}
public static class PutToVM extends ProgramBase implements java.io.Serializable {
private final ValueBase value;
public PutToVM(ValueBase data) {
this.value = data;
}
@Override
public void eval() {
ValueBase value = this.value;
if (!(value instanceof SyntaxTree.Number || value instanceof SyntaxTree.Text || value instanceof SyntaxTree.Boolean || value instanceof SyntaxTree.Null)) {
value = (ValueBase) value.getData();
}
if (value instanceof SyntaxTree.Number) {
vm.run(VM.PUT, (BigDecimal)((SyntaxTree.Number) value).getData());
} else if (value instanceof SyntaxTree.Text) {
vm.run(VM.PUT, (String)((SyntaxTree.Text) value).getData());
} else if (value instanceof SyntaxTree.Boolean) {
vm.run(VM.PUT, (boolean)((SyntaxTree.Boolean) value).getData());
} else {
vm.run(VM.PUT);
}
}
public ValueBase getValue() {
return value;
}
}
private ValueBase[] program;
public ValueBase[] getProgram() {
return this.program;
}
public OpCode(ValueBase... program) {
this.program = program;
}
@Override
void eval() {
for (int i = 0; i < program.length; i++) {
if (program[i] instanceof SyntaxTree.Number) {
byte tmp = (byte)((BigDecimal)((SyntaxTree.Number)program[i]).getData()).intValue();
if (tmp == VM.PUT) {
i++;
if (program[i] instanceof SyntaxTree.Number) {
vm.run(tmp, (BigDecimal)((SyntaxTree.Number)program[i]).getData());
} else if (program[i] instanceof SyntaxTree.Text) {
vm.run(tmp, (String)((SyntaxTree.Text)program[i]).getData());
} else if (program[i] instanceof SyntaxTree.Boolean) {
vm.run(tmp, (boolean)((SyntaxTree.Boolean)program[i]).getData());
} else {
vm.run(tmp);
}
} else {
vm.run(tmp);
}
}
}
}
}