blob: 6aec81d8f00df942bee40b08421d63ce277851f3 (
plain) (
blame)
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
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
|
package context
import (
"sync"
"github.com/osm/quake/protocol"
)
type Context struct {
angleSizeMu sync.Mutex
angleSize uint8
coordSizeMU sync.Mutex
coordSize uint8
protocolVersioncolVersionMu sync.Mutex
protocolVersion uint32
isMVDEnabledMu sync.Mutex
isMVDEnabled bool
mvdProtocolExtensionMu sync.Mutex
mvdProtocolExtension uint32
isFTEEnabledMu sync.Mutex
isFTEEnabled bool
fteProtocolExtensionMu sync.Mutex
fteProtocolExtension uint32
isFTE2EnabledMu sync.Mutex
isFTE2Enabled bool
fte2ProtocolExtensionMu sync.Mutex
fte2ProtocolExtension uint32
isZQuakeEnabledMu sync.Mutex
isZQuakeEnabled bool
zQuakeProtocolExtensionMu sync.Mutex
zQuakeProtocolExtension uint32
isDemMu sync.Mutex
isDem bool
isQWDMu sync.Mutex
isQWD bool
isMVDMu sync.Mutex
isMVD bool
}
func New(opts ...Option) *Context {
ctx := &Context{
angleSize: 1,
coordSize: 2,
}
for _, opt := range opts {
opt(ctx)
}
return ctx
}
func (ctx *Context) GetAngleSize() uint8 {
ctx.angleSizeMu.Lock()
defer ctx.angleSizeMu.Unlock()
return ctx.angleSize
}
func (ctx *Context) SetAngleSize(v uint8) {
ctx.angleSizeMu.Lock()
defer ctx.angleSizeMu.Unlock()
ctx.angleSize = v
}
func (ctx *Context) GetCoordSize() uint8 {
ctx.coordSizeMU.Lock()
defer ctx.coordSizeMU.Unlock()
return ctx.coordSize
}
func (ctx *Context) SetCoordSize(v uint8) {
ctx.coordSizeMU.Lock()
defer ctx.coordSizeMU.Unlock()
ctx.coordSize = v
}
func (ctx *Context) GetProtocolVersion() uint32 {
ctx.protocolVersioncolVersionMu.Lock()
defer ctx.protocolVersioncolVersionMu.Unlock()
return ctx.protocolVersion
}
func (ctx *Context) SetProtocolVersion(v uint32) {
ctx.protocolVersioncolVersionMu.Lock()
defer ctx.protocolVersioncolVersionMu.Unlock()
ctx.protocolVersion = v
}
func (ctx *Context) GetIsMVDEnabled() bool {
ctx.isMVDEnabledMu.Lock()
defer ctx.isMVDEnabledMu.Unlock()
return ctx.isMVDEnabled
}
func (ctx *Context) SetIsMVDEnabled(v bool) {
ctx.isMVDEnabledMu.Lock()
defer ctx.isMVDEnabledMu.Unlock()
ctx.isMVDEnabled = v
}
func (ctx *Context) GetMVDProtocolExtension() uint32 {
ctx.mvdProtocolExtensionMu.Lock()
defer ctx.mvdProtocolExtensionMu.Unlock()
return ctx.mvdProtocolExtension
}
func (ctx *Context) SetMVDProtocolExtension(v uint32) {
ctx.mvdProtocolExtensionMu.Lock()
defer ctx.mvdProtocolExtensionMu.Unlock()
ctx.mvdProtocolExtension = v
}
func (ctx *Context) GetIsFTEEnabled() bool {
ctx.isFTEEnabledMu.Lock()
defer ctx.isFTEEnabledMu.Unlock()
return ctx.isFTEEnabled
}
func (ctx *Context) SetIsFTEEnabled(v bool) {
ctx.isFTEEnabledMu.Lock()
defer ctx.isFTEEnabledMu.Unlock()
ctx.isFTEEnabled = v
}
func (ctx *Context) GetFTEProtocolExtension() uint32 {
ctx.fteProtocolExtensionMu.Lock()
defer ctx.fteProtocolExtensionMu.Unlock()
return ctx.fteProtocolExtension
}
func (ctx *Context) SetFTEProtocolExtension(v uint32) {
ctx.fteProtocolExtensionMu.Lock()
defer ctx.fteProtocolExtensionMu.Unlock()
ctx.fteProtocolExtension = v
}
func (ctx *Context) GetIsFTE2Enabled() bool {
ctx.isFTE2EnabledMu.Lock()
defer ctx.isFTE2EnabledMu.Unlock()
return ctx.isFTE2Enabled
}
func (ctx *Context) SetIsFTE2Enabled(v bool) {
ctx.isFTE2EnabledMu.Lock()
defer ctx.isFTE2EnabledMu.Unlock()
ctx.isFTE2Enabled = v
}
func (ctx *Context) GetFTE2ProtocolExtension() uint32 {
ctx.fte2ProtocolExtensionMu.Lock()
defer ctx.fte2ProtocolExtensionMu.Unlock()
return ctx.fte2ProtocolExtension
}
func (ctx *Context) SetFTE2ProtocolExtension(v uint32) {
ctx.fte2ProtocolExtensionMu.Lock()
defer ctx.fte2ProtocolExtensionMu.Unlock()
ctx.fte2ProtocolExtension = v
}
func (ctx *Context) GetIsZQuakeEnabled() bool {
ctx.isZQuakeEnabledMu.Lock()
defer ctx.isZQuakeEnabledMu.Unlock()
return ctx.isZQuakeEnabled
}
func (ctx *Context) SetIsZQuakeEnabled(v bool) {
ctx.isZQuakeEnabledMu.Lock()
defer ctx.isZQuakeEnabledMu.Unlock()
ctx.isZQuakeEnabled = v
}
func (ctx *Context) GetZQuakeProtocolExtension() uint32 {
ctx.zQuakeProtocolExtensionMu.Lock()
defer ctx.zQuakeProtocolExtensionMu.Unlock()
return ctx.zQuakeProtocolExtension
}
func (ctx *Context) SetZQuakeProtocolExtension(v uint32) {
ctx.zQuakeProtocolExtensionMu.Lock()
defer ctx.zQuakeProtocolExtensionMu.Unlock()
ctx.zQuakeProtocolExtension = v
}
func (ctx *Context) GetIsDem() bool {
ctx.isDemMu.Lock()
defer ctx.isDemMu.Unlock()
return ctx.isDem
}
func (ctx *Context) SetIsDem(v bool) {
ctx.isDemMu.Lock()
defer ctx.isDemMu.Unlock()
ctx.isDem = v
}
func (ctx *Context) GetIsQWD() bool {
ctx.isQWDMu.Lock()
defer ctx.isQWDMu.Unlock()
return ctx.isQWD
}
func (ctx *Context) SetIsQWD(v bool) {
ctx.isQWDMu.Lock()
defer ctx.isQWDMu.Unlock()
ctx.isQWD = v
}
func (ctx *Context) GetIsMVD() bool {
ctx.isMVDMu.Lock()
defer ctx.isMVDMu.Unlock()
return ctx.isMVD
}
func (ctx *Context) SetIsMVD(v bool) {
ctx.isMVDMu.Lock()
defer ctx.isMVDMu.Unlock()
ctx.isMVD = v
}
func (ctx *Context) GetIsNQ() bool {
return ctx.GetIsDem() || ctx.GetProtocolVersion() == protocol.VersionNQ
}
|