-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstruct.go
82 lines (63 loc) · 904 Bytes
/
struct.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
package main
import (
"context"
"image/color"
"time"
"nhooyr.io/websocket"
)
type XY struct {
X uint32
Y uint32
}
type XYs struct {
X int32
Y int32
}
type XYf64 struct {
X float64
Y float64
}
type XYf32 struct {
X float32
Y float32
}
type Game struct {
}
type pNameData struct {
name string
id uint32
}
type playerData struct {
creature *creatureData
conn *websocket.Conn
context context.Context
cancel context.CancelFunc
health int16
pos XY
spos XY
areaid uint16
effects EFF
lastPos XY
direction DIR
walkFrame int
isWalking bool
unmark uint16
id uint32
}
// Chat line data
type chatLineData struct {
text string
color color.Color
bgColor color.Color
timestamp time.Time
lifetime time.Duration
}
type worldObject struct {
itemId IID
pos XY
itemData *sectionItemData
}
type creatureData struct {
id IID
target *playerData
}