-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcoord_map.go
80 lines (69 loc) · 1.47 KB
/
coord_map.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
package pathing
import (
"math"
)
type coordMap struct {
elems []coordMapElem
gen uint32
numRows int
numCols int
}
type coordMapElem struct {
value uint32
gen uint32
}
func newCoordMap(numCols, numRows int) *coordMap {
size := numRows * numCols
return &coordMap{
elems: make([]coordMapElem, size),
gen: 1,
numRows: numRows,
numCols: numCols,
}
}
func (m *coordMap) Contains(k uint) bool {
if k < uint(len(m.elems)) {
return m.elems[k].gen == m.gen
}
return false
}
func (m *coordMap) Get(k uint) (uint32, bool) {
if k < uint(len(m.elems)) {
el := m.elems[k]
if el.gen == m.gen {
return el.value, true
}
}
return 0, false
}
func (m *coordMap) Set(k uint, v uint32) {
if k < uint(len(m.elems)) {
m.elems[k] = coordMapElem{value: v, gen: m.gen}
}
}
func (m *coordMap) Reset() {
if m.gen == math.MaxUint32 {
// For most users, this will never happen.
// But to be safe, we need to handle this correctly.
// m.gen will be 1, element gen will be 0.
m.clear()
} else {
m.gen++
}
}
// clear does a real array data reset.
// m.gen becomes 1.
// Every element gen becomes 0.
// This is identical to the initial array state.
//
//go:noinline - called on a cold path, therefore it should not be inlined.
func (m *coordMap) clear() {
m.gen = 1
// TODO: could use clear() starting from Go 1.21.
for i := range m.elems {
m.elems[i] = coordMapElem{}
}
}
func (s *coordMap) packCoord(c GridCoord) uint {
return uint((c.Y * s.numCols) + c.X)
}