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
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387 | ---- Environment ----
data_s, return_s, dip_s, current, ip = {}, {}, {}, {}, 1
---- Operators ----
function nop () end
function drop ()
table.remove(data_s)
end
function dup ()
table.insert(data_s, data_s[#data_s])
end
function over ()
table.insert(data_s, data_s[#data_s-1])
end
function swap ()
data_s[#data_s-1], data_s[#data_s]
= data_s[#data_s], data_s[#data_s-1]
end
function rot ()
data_s[#data_s-2], data_s[#data_s-1], data_s[#data_s]
= data_s[#data_s-1], data_s[#data_s], data_s[#data_s-2]
end
function dip ()
local v = current[ip]
ip = ip + 1
table.insert(return_s, {current, ip})
table.insert(return_s, {{undip}, 1})
table.insert(dip_s, table.remove(data_s))
current, ip = v, 1
end
function undip ()
table.insert(data_s, table.remove(dip_s))
end
function op_not ()
table.insert(data_s, not table.remove(data_s))
end
function suc ()
table.insert(data_s, table.remove(data_s) + 1)
end
function add ()
table.insert(data_s, table.remove(data_s) + table.remove(data_s))
end
function mul ()
table.insert(data_s, table.remove(data_s) * table.remove(data_s))
end
function eq ()
table.insert(data_s, table.remove(data_s) == table.remove(data_s))
end
function cat ()
local v2, v1 = table.remove(data_s), table.remove(data_s)
table.insert(data_s, v1 .. v2)
end
function get ()
table.insert(data_s, table.remove(data_s)[table.remove(data_s)])
end
function set ()
local v = table.remove(data_s)
table.remove(data_s)[table.remove(data_s)] = v
end
function to_list ()
local s, v = table.remove(data_s), {}
for i = 1, #s do
table.insert(v, s:sub(i, i))
end
table.insert(data_s, v)
end
function new_list ()
table.insert(data_s, {})
end
function length ()
table.insert(data_s, #table.remove(data_s))
end
function random ()
table.insert(data_s, math.random(table.remove(data_s)))
end
function iff ()
if not table.remove(data_s) then
ip = ip + 2
end
end
function elsef ()
ip = ip + 1
end
function op_while ()
if not table.remove(data_s) then
ip = #current + 1
end
end
function again ()
ip = 1
end
function dump ()
print(l_to_s(data_s))
end
---- Words ----
-- ( x y -- x y x y )
dup2 = {
over, over
}
-- ( x y -- y )
nip = {
swap, drop
}
-- ( -- value )
x = 1
o = -1
empty = 0
-- ( n -- bool )
not_zero = {
0, eq, op_not,
}
-- ( value -- bool )
not_empty = not_zero
-- ( -- position )
random_position = {
9, random
}
-- ( sign -- value )
from_sign = {
dup, 'x', eq, iff,
{ drop, x }, elsef,
{ dup, 'o', eq, iff,
{ drop, o }, elsef,
{ dup, '.', eq, iff,
{ drop, empty }, elsef,
{ drop, false } } }
}
-- ( value -- sign )
to_sign = {
dup, x, eq, iff,
drop, 'x',
dup, o, eq, iff,
drop, 'o',
dup, empty, eq, iff,
drop, '.'
}
-- ( prev a b c -- next )
row_winner = {
add, add, dup,
x, 3, mul, eq, iff,
{ nip, x, swap }, nop,
o, 3, mul, eq, iff,
{ drop, o }
}
-- ( board -- sign ) hideous but works
winner = {
empty, swap,
1, over, get, swap,
2, over, get, swap,
3, over, get, swap,
dip, row_winner,
4, over, get, swap,
5, over, get, swap,
6, over, get, swap,
dip, row_winner,
7, over, get, swap,
8, over, get, swap,
9, over, get, swap,
dip, row_winner,
1, over, get, swap,
4, over, get, swap,
7, over, get, swap,
dip, row_winner,
2, over, get, swap,
5, over, get, swap,
8, over, get, swap,
dip, row_winner,
3, over, get, swap,
6, over, get, swap,
9, over, get, swap,
dip, row_winner,
1, over, get, swap,
5, over, get, swap,
9, over, get, swap,
dip, row_winner,
3, over, get, swap,
5, over, get, swap,
7, over, get, swap,
dip, row_winner,
drop
}
-- ( board -- move true | false ) TODO
can_win = {
dip, { false, 1 },
{ dup2, get,
empty, eq, iff,
{ dup2, x, set,
dup, winner, x, eq, iff,
{ dup2, empty, set, dip,
{ nip, true, 9 } },
elsef, { dup2, empty, set } },
nop,
over, 9, eq, op_not, op_while,
swap, suc, swap, again },
drop, drop
}
-- ( board -- move true | false ) TODO
can_loose = {
dip, { false, 1 },
{ dup2, get,
empty, eq, iff,
{ dup2, o, set,
dup, winner, o, eq, iff,
{ dup2, empty, set, dip,
{ nip, true, 9 } },
elsef, { dup2, empty, set } },
nop,
over, 9, eq, op_not, op_while,
swap, suc, swap, again },
drop, drop
}
-- ( board -- board )
random_move = {
{ random_position,
dup2, swap, get,
not_empty, op_while,
drop, again },
over, x, set
}
-- ( board_str -- board )
parse_board = {
to_list, new_list, swap, 1,
{ over, length, suc, over,
eq, op_not, op_while,
dup2, swap, get, from_sign,
dup, iff,
{ swap, dip,
{ dip,
{ over, dup, length,
suc, swap }, set } },
elsef, { drop },
suc, again },
drop, drop
}
-- ( board -- board )
make_move = {
dup, can_win, iff,
{ over, x, set }, elsef,
{ dup, can_loose, iff,
{ over, x, set }, elsef,
{ random_move } }
}
-- ( board -- board_str )
encode_board = {
'', swap, 1,
{ dup, 10, eq, op_not, op_while,
dup2, swap, get, to_sign,
swap, dip,
{ rot, swap, cat, swap },
suc, again },
drop, drop
}
-- ( board_str -- board_str )
tictactoe = {
parse_board,
make_move,
encode_board
}
---- Interpreter ----
function eval (word)
return_s, ip, current = {}, 1, word
while true do
-- return from any finished threads
while ip > #current do
if #return_s == 0 then
return
else
current, ip = table.unpack(table.remove(return_s))
end
end
-- get current command
com = current[ip]
ip = ip + 1
-- execute command
if type(com) == 'function' then
com()
elseif type(com) == 'table' then
table.insert(return_s, {current, ip})
current, ip = com, 1
else
table.insert(data_s, com)
end
end
end
function better_entry (s)
data_s = {s}
eval(tictactoe)
return table.remove(data_s)
end
---- Helpers ----
function l_to_s (l, d)
d = d or 3 -- how deep will the printing go
ans = '['
for i = 1, #l do
if type(l[i]) == 'function' then
ans = ans .. ' [op]'
elseif type(l[i]) == 'table' then
if d > 0 then
ans = ans .. ' ' .. l_to_s(l[i], d - 1)
else
ans = ans .. ' [...]'
end
else
ans = ans .. ' ' .. tostring(l[i])
end
end
return ans .. ' ]'
end
function print_stack ()
print(l_to_s(data_s))
end
---- Dumb version ----
function bad_entry (s)
local answer, moved, cell = '', false
for i = 1, #s do
cell = s:sub(i, i)
if cell == '.' and not moved then
cell = 'x'
moved = true
end
answer = answer .. cell
end
return answer
end
---- Entry ----
entry = better_entry
|
post a comment