blob: 9696da436ff475e5eba2c462826d30d5bbb44f5b (
plain) (
blame)
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
|
:(scenarios run)
:(scenario copy_literal)
recipe main [
1:integer <- copy 23:literal
]
+run: instruction 0
+run: ingredient 0 is 23
+mem: storing in location 1
:(code)
void run(string form) {
run(add_recipe(form));
}
void run(recipe_number r) {
vector<instruction>& instructions(Recipe[r].steps);
int n = 0;
vector<instruction>::iterator p;
for (n = 0, p = instructions.begin(); p != instructions.end(); ++p, ++n) {
trace("run") << "instruction " << n;
switch (p->operation) {
case 1: { // copy
vector<int> data = read_memory(p->ingredients[0]);
trace("run") << "ingredient 0 is " << data[0];
write_memory(p->products[0], data);
break;
}
default:
raise << "undefined operation " << p->operation;
}
}
}
vector<int> read_memory(reagent x) {
vector<int> result;
result.push_back(to_int(x.name));
return result;
}
void write_memory(reagent x, vector<int> data) {
int dest = to_int(x.name);
trace("mem") << "storing in location " << dest;
Memory[dest] = data[0];
}
int to_int(string n) {
char* end = NULL;
int result = strtol(n.c_str(), &end, /*any base*/0);
assert(*end == '\0');
return result;
}
|