-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathbeefsack_astar_test.go
200 lines (172 loc) · 4.02 KB
/
beefsack_astar_test.go
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
package bench
import (
"fmt"
"strings"
"github.com/beefsack/go-astar"
)
// This implementation comes from the provided benchmark.
// See https://github.com/beefsack/go-astar/blob/4ecf9e3044829f1e2d9eba4ff26295a2bbb9b2cd/path_test.go#L101
//
// It doesn't look good performance-wise: there are several things that can be improved.
// But I would guess that it's something that most users will start with.
//
// It is interesting, hovewer, to see the real limits of this library as opposed to
// limits of this particular interface implmenetation limits.
// Maybe some other day?
type beefsackAstarTester struct {
tc *testCase
w astarWorld
}
func newBeefsackAstarTester() *beefsackAstarTester {
return &beefsackAstarTester{}
}
func (t *beefsackAstarTester) Init(tc *testCase) {
t.tc = tc
t.w = t.ParseWorld(strings.Join(tc.rawLayout, "\n"))
}
func (t *beefsackAstarTester) BuildPath() ([]astar.Pather, gridCoord) {
p, _, _ := astar.Path(t.w.From(), t.w.To())
last := p[0].(*astarTile)
return p, last.Coord
}
type astarTile struct {
Kind int
Coord gridCoord
World astarWorld
}
func (t *astarTile) PathNeighbors() []astar.Pather {
neighbors := []astar.Pather{}
for _, offset := range [][]int{
{-1, 0},
{1, 0},
{0, -1},
{0, 1},
} {
if n := t.World.Tile(t.Coord.X+offset[0], t.Coord.Y+offset[1]); n != nil &&
n.Kind != KindBlocker {
neighbors = append(neighbors, n)
}
}
return neighbors
}
func (t *astarTile) PathNeighborCost(to astar.Pather) float64 {
toT := to.(*astarTile)
return KindCosts[toT.Kind]
}
func (t *astarTile) PathEstimatedCost(to astar.Pather) float64 {
toT := to.(*astarTile)
absX := toT.Coord.X - t.Coord.X
if absX < 0 {
absX = -absX
}
absY := toT.Coord.Y - t.Coord.Y
if absY < 0 {
absY = -absY
}
return float64(absX + absY)
}
type astarWorld map[int]map[int]*astarTile
func (w astarWorld) Tile(x, y int) *astarTile {
if w[x] == nil {
return nil
}
return w[x][y]
}
func (w astarWorld) RenderPath(path []astar.Pather) string {
width := len(w)
if width == 0 {
return ""
}
height := len(w[0])
pathLocs := map[string]bool{}
for _, p := range path {
pT := p.(*astarTile)
pathLocs[fmt.Sprintf("%d,%d", pT.Coord.X, pT.Coord.Y)] = true
}
rows := make([]string, height)
for x := 0; x < width; x++ {
for y := 0; y < height; y++ {
t := w.Tile(x, y)
r := ' '
if pathLocs[fmt.Sprintf("%d,%d", x, y)] {
r = KindRunes[KindPath]
} else if t != nil {
r = KindRunes[t.Kind]
}
rows[y] += string(r)
}
}
return strings.Join(rows, "\n")
}
func (w astarWorld) SetTile(t *astarTile, x, y int) {
if w[x] == nil {
w[x] = map[int]*astarTile{}
}
w[x][y] = t
t.Coord.X = x
t.Coord.Y = y
t.World = w
}
func (w astarWorld) FirstOfKind(kind int) *astarTile {
for _, row := range w {
for _, t := range row {
if t.Kind == kind {
return t
}
}
}
return nil
}
func (w astarWorld) From() *astarTile {
return w.FirstOfKind(KindFrom)
}
func (w astarWorld) To() *astarTile {
return w.FirstOfKind(KindTo)
}
// Kind* constants refer to tile kinds for input and output.
const (
// KindPlain (.) is a plain tile with a movement cost of 1.
KindPlain = iota
// KindBlocker (X) is a tile which blocks movement.
KindBlocker
// KindFrom (F) is a tile which marks where the path should be calculated
// from.
KindFrom
// KindTo (T) is a tile which marks the goal of the path.
KindTo
// KindPath (●) is a tile to represent where the path is in the output.
KindPath
)
var KindRunes = map[int]rune{
KindPlain: ' ',
KindBlocker: 'x',
KindFrom: 'S',
KindTo: 'F',
KindPath: '●',
}
var RuneKinds = map[rune]int{
' ': KindPlain,
'x': KindBlocker,
'S': KindFrom,
'F': KindTo,
}
var KindCosts = map[int]float64{
KindPlain: 1.0,
KindFrom: 1.0,
KindTo: 1.0,
}
func (t *beefsackAstarTester) ParseWorld(input string) astarWorld {
w := astarWorld{}
for y, row := range strings.Split(input, "\n") {
for x, raw := range row {
kind, ok := RuneKinds[raw]
if !ok {
kind = KindBlocker
}
w.SetTile(&astarTile{
Kind: kind,
}, x, y)
}
}
return w
}