-
Notifications
You must be signed in to change notification settings - Fork 0
/
helper.fsx
224 lines (198 loc) · 4.68 KB
/
helper.fsx
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
open System
let opcodes =
[
"brk"; // software breakpoint
"pop"; // throw away top item
"swap"; // switch the top two items of the stack
"swapn"; // switch 2 items of the stack as determined by
// stack-x and stack-y where x and y are the upper and lower
// 16 bits of the operand
"dup"; // copy the top item of the stack
"ldval";
"ldvals";
// "ldvalf";
"ldvalb";
"ldvar";
"stvar";
"p_stvar";
"rvar";
"ldprop"; // accept game obect or location ref
"p_ldprop";
"stprop";
"p_stprop";
"inc";
"dec";
"neg";
"add";
"sub";
"mul";
"div";
"mod";
"pow";
"tostr";
"toint";
"rndi";
"startswith";
"p_startswith";
"endswith";
"p_endswith";
"contains";
"p_contains";
"indexof";
"p_indexof";
"substring";
"p_substring";
"ceq";
"cne";
"cgt";
"cgte";
"clt";
"clte";
"beq";
"bne";
"bgt";
"blt"; // ho ho ho
"bt";
"bf";
"branch";
"isobj";
"isint";
"isbool";
"isloc";
"islist";
// AA and list ops
"createobj";
"cloneobj";
"getobj";
"getobjs";
"delprop";
"p_delprop";
"delobj";
"moveobj"; // change parents
"p_moveobj";
"createarr";
"appendarr";
"p_appendarr";
"prependarr";
"p_prependarr";
"removearr";
"p_removearr";
"len";
"p_len";
"index";
"p_index";
"setindex";
"keys";
"values";
"syncprop";
"getloc"; // accepts location ref or string -> Locationref
"genloc";
"genlocref";
"setlocsibling"; // rel :: host :: locref
"p_setlocsibling";
"setlocchild";
"p_setlocchild";
"setlocparent";
"p_setlocparent";
// these gets return LocationReferences
"getlocsiblings";
"p_getlocsiblings";
"getlocchildren";
"p_getlocchildren";
"getlocparent";
"p_getlocparent";
//todo: probably need ability to remove locations and links ...
"setvis";
"p_setvis";
"adduni";
"deluni";
"splitat";
"shuffle";
"sort"; // number / string lists
"sortby"; // prop name
// flowroutine / messaging
"genreq";
"addaction";
"p_addaction";
"suspend";
"cut";
"say";
"pushscope";
"popscope";
"lambda";
"apply";
"ret";
"dbg"; // prints to the console
"dbgl"
"getraw"
"fork"
"join"
"cons"
"head"
"tail"
"islist"
"createlist"
"isfunc"
]
let extended =
Set.ofList
[
"swapn"
"ldval"
"ldvals"
"ldvalb"
"ldvar"
"stvar"
"p_stvar"
"rvar"
"beq"
"bne"
"bgt"
"blt"
"bt"
"bf"
"branch"
"lambda"
]
let genEnum() =
let sb = System.Text.StringBuilder()
let (~~) (s:string) = sb.Append(s) |> ignore
let (~~~) (s:string) = sb.AppendLine(s) |> ignore
~~~ "enum opcode"
~~~ "\t{"
opcodes
|> List.iteri(fun i s ->
~~~ (sprintf "\t\t%s = %i%s" s i (if i = opcodes.Length - 1 then "" else ","))
)
~~~ "\t};"
printf "%s" <| sb.ToString()
let genc() =
let sb = System.Text.StringBuilder()
let (~~) (s:string) = sb.Append(s) |> ignore
let (~~~) (s:string) = sb.AppendLine(s) |> ignore
~~~ " switch(o)"
~~~ " {"
opcodes
|> List.iteri(fun i s ->
~~~ (sprintf " case %s:" s)
~~~ (sprintf " DL(\"%s Not implemented\\n\")" s)
~~~ " break;"
)
~~~ " }"
printf "%s" (sb.ToString())
// sb.ToString()
let genCJsonOpcodes() =
let sb = System.Text.StringBuilder()
let (~~) (s:string) = sb.Append(s) |> ignore
let (~~~) (s:string) = sb.AppendLine(s) |> ignore
opcodes
|> List.iteri(fun i s ->
~~~ "opcode = hash_init(2);"
~~~ (sprintf "hash_set(opcode, ra_init_str(\"code\"), int_to_memref(%i));" i)
~~~ (sprintf "hash_set(opcode, ra_init_str(\"extended\"), int_to_memref(%i));" (if Set.contains s extended then 1 else 0) )
~~~ (sprintf "hash_set(opcodes, ra_init_str(\"%s\"), opcode);" s)
)
printf "%s" <| sb.ToString()
genc()
genEnum()
genCJsonOpcodes()