-
Notifications
You must be signed in to change notification settings - Fork 0
/
doortype.go
76 lines (70 loc) · 996 Bytes
/
doortype.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
package main
import "fmt"
type DoorType uint8
func (t DoorType) IsExit() bool {
if t >= 0x04 && t <= 0x06 {
// exit door:
return true
}
if t >= 0x0A && t <= 0x12 {
// exit door:
return true
}
if t == 0x2A {
// bombable cave exit:
return true
}
//if t == 0x2E {
// // bombable door exit(?):
// return true
//}
return false
}
func (t DoorType) IsLayer2() bool {
if t == 0x02 {
return true
}
if t == 0x04 {
return true
}
if t == 0x06 {
return true
}
if t == 0x0C {
return true
}
if t == 0x10 {
return true
}
if t == 0x24 {
return true
}
if t == 0x26 {
return true
}
if t == 0x3A {
return true
}
if t == 0x3C {
return true
}
if t == 0x3E {
return true
}
if t == 0x40 {
return true
}
if t == 0x44 {
return true
}
if t >= 0x48 && t <= 0x66 {
return true
}
return false
}
func (t DoorType) IsStairwell() bool {
return t >= 0x20 && t <= 0x26
}
func (t DoorType) String() string {
return fmt.Sprintf("$%02x", uint8(t))
}