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
|
package main
import (
"main/walk"
"main/subex"
)
type Command interface {
exec(*ProgramState)
}
type PrintValueCommand struct {}
func (cmd PrintValueCommand) exec(state *ProgramState) {
pathValues, err := walk.Compound(state.path)
if err != nil {
panic("Tried to convert invalid atoms to values")
}
path := walk.PathFromWalkValues(pathValues)
state.out.Print(path, state.value)
}
type SequenceCommand struct {
commands []Command
}
func (cmd SequenceCommand) exec(state *ProgramState) {
for _, command := range cmd.commands {
command.exec(state)
}
}
type NextCommand struct {}
func (cmd NextCommand) exec(state *ProgramState) {
nextItem, err := state.in.Read()
if err != nil {
panic("Missing next value")
}
state.value = nextItem.Value
state.path = nextItem.Path
}
type AppendNextCommand struct {}
func (cmd AppendNextCommand) exec(state *ProgramState) {
nextItem, err := state.in.Read()
if err != nil {
panic("Missing next value")
}
state.value = walk.ConcatData(state.value, nextItem.Value)
state.path = nextItem.Path
}
type DeleteValueCommand struct {}
func (cmd DeleteValueCommand) exec(state *ProgramState) {
state.value = nil
}
type DeletePathCommand struct {}
func (cmd DeletePathCommand) exec(state *ProgramState) {
state.path = nil
}
func runSubex(state subex.Transducer, in []walk.Atom) (out []walk.Atom, error bool) {
atomsOut, error := subex.RunTransducer(state, in)
if error {
return nil, true
}
return atomsOut, false
}
type SubstituteValueCommand struct {
subex subex.Transducer
next Command
}
func (cmd SubstituteValueCommand) exec(state *ProgramState) {
newValue, err := runSubex(cmd.subex, state.value)
if err {
return
}
state.value = newValue
cmd.next.exec(state)
}
type SubstitutePathCommand struct {
subex subex.Transducer
next Command
}
func (cmd SubstitutePathCommand) exec(state *ProgramState) {
newPath, err := runSubex(cmd.subex, state.path)
if err {
return
}
state.path = newPath
cmd.next.exec(state)
}
type NoopCommand struct {}
func (cmd NoopCommand) exec(state *ProgramState) {}
type SwapXRegCommand struct {}
func (cmd SwapXRegCommand) exec(state *ProgramState) {
v := state.value
state.value = state.xreg
state.xreg = v
}
type AppendXRegCommand struct {}
func (cmd AppendXRegCommand) exec(state *ProgramState) {
state.xreg = append(state.xreg, state.value...)
}
type SwapYRegCommand struct {}
func (cmd SwapYRegCommand) exec(state *ProgramState) {
v := state.value
state.value = state.yreg
state.yreg = v
}
type AppendYRegCommand struct {}
func (cmd AppendYRegCommand) exec(state *ProgramState) {
state.yreg = append(state.yreg, state.value...)
}
type SwapZRegCommand struct {}
func (cmd SwapZRegCommand) exec(state *ProgramState) {
v := state.value
state.value = state.zreg
state.zreg = v
}
type AppendZRegCommand struct {}
func (cmd AppendZRegCommand) exec(state *ProgramState) {
state.zreg = append(state.zreg, state.value...)
}
type SwapPathCommand struct {}
func (cmd SwapPathCommand) exec(state *ProgramState) {
v := state.value
state.value = state.path
state.path = v
}
type AppendPathCommand struct {}
func (cmd AppendPathCommand) exec(state *ProgramState) {
state.path = walk.ConcatData(state.path, state.value)
}
|