-
Notifications
You must be signed in to change notification settings - Fork 0
/
types.go
427 lines (363 loc) · 7.75 KB
/
types.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
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
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
package nbtreader
import (
"bytes"
"encoding/json"
"fmt"
"io"
"math"
"strings"
)
type TagType byte
const (
Tag_End TagType = iota
Tag_Byte
Tag_Short
Tag_Int
Tag_Long
Tag_Float
Tag_Double
Tag_Byte_Array
Tag_String
Tag_List
Tag_Compound
Tag_Int_Array
Tag_Long_Array
)
func (t TagType) String() string {
switch t {
case Tag_End:
return "End of Compound"
case Tag_Byte:
return "Byte (int8)"
case Tag_Short:
return "Short (int16)"
case Tag_Int:
return "Int (int32)"
case Tag_Long:
return "Long (int64)"
case Tag_Float:
return "Float (float32)"
case Tag_Double:
return "Double (float64)"
case Tag_Byte_Array:
return "ByteArray ([]int8)"
case Tag_String:
return "String"
case Tag_List:
return "List"
case Tag_Compound:
return "Start of Compound"
case Tag_Int_Array:
return "IntArray ([]int32)"
case Tag_Long_Array:
return "LongArray ([]int64)"
default:
return fmt.Sprintf("*Unknown Type %d*", t)
}
}
func (t TagType) Annotation() TypeAnnotation {
switch t {
case Tag_Byte:
return ByteAnnotation
case Tag_Short:
return ShortAnnotation
case Tag_Int:
return IntAnnotation
case Tag_Long:
return LongAnnotation
case Tag_Float:
return FloatAnnotation
case Tag_Double:
return DoubleAnnotation
case Tag_Byte_Array:
return ByteArrayAnnotation
case Tag_String:
return StringAnnotation
case Tag_List:
return NoAnnotation
case Tag_Compound:
return CompoundAnnotation
case Tag_Int_Array:
return IntArrayAnnotation
case Tag_Long_Array:
return LongArrayAnnotation
default:
// also for Tag_End and Tag_List
return NoAnnotation
}
}
func popType(r io.Reader) (TagType, error) {
var ttype [1]byte
if _, err := r.Read(ttype[:]); err != nil {
return 0x00, fmt.Errorf("pop type: %v", err)
}
t := TagType(ttype[0])
return t, nil
}
type NbtTag interface {
String() string
Type() TagType
parse(io.Reader) (NbtTag, error)
compose(io.Writer) error
}
var indention int = 0
func indent() string {
return "\n" + strings.Repeat(" ", indention)
}
func indentIncr() {
indention = indention + 1
}
func indentDecr() {
indention = indention - 1
}
type Byte int8
func (t Byte) String() string {
return fmt.Sprintf("%db", t)
}
func (t Byte) Type() TagType {
return Tag_Byte
}
func (t Byte) MarshalJSON() ([]byte, error) {
return numberToJSON(t)
}
type Short int16
func (t Short) String() string {
return fmt.Sprintf("%ds", t)
}
func (t Short) Type() TagType {
return Tag_Short
}
func (t Short) MarshalJSON() ([]byte, error) {
return numberToJSON(t)
}
type Int int32
func (t Int) String() string {
return fmt.Sprintf("%d", t)
}
func (t Int) Type() TagType {
return Tag_Int
}
func (t Int) MarshalJSON() ([]byte, error) {
return numberToJSON(t)
}
type Long int64
func (t Long) String() string {
return fmt.Sprintf("%dl", t)
}
func (t Long) Type() TagType {
return Tag_Long
}
func (t Long) MarshalJSON() ([]byte, error) {
return numberToJSON(t)
}
type Float float32
func (t Float) String() string {
return fmt.Sprintf("%gf", t)
}
func (t Float) Type() TagType {
return Tag_Float
}
func (t Float) MarshalJSON() ([]byte, error) {
return numberToJSON(t)
}
type Double float64
func (t Double) String() string {
return fmt.Sprintf("%gd", t)
}
func (t Double) Type() TagType {
return Tag_Double
}
func (t Double) MarshalJSON() ([]byte, error) {
return numberToJSON(t)
}
type ByteArray []Byte
func (t ByteArray) String() string {
var itemsString string
for i, item := range t {
if i == 0 {
itemsString = fmt.Sprint(item)
} else {
itemsString = itemsString + ", " + fmt.Sprint(item)
}
}
return fmt.Sprintf("[B; %s]", itemsString)
}
func (t ByteArray) Type() TagType {
return Tag_Byte_Array
}
func (t ByteArray) MarshalJSON() ([]byte, error) {
return arrayMarshalJSON([]Byte(t))
}
type String string
func (t String) String() string {
return "\"" + string(t) + "\""
}
func (t String) Type() TagType {
return Tag_String
}
func (t String) Len() Short {
return Short(len(t))
}
func (t String) MarshalJSON() ([]byte, error) {
return []byte(t.String()), nil
}
type List struct {
TagType TagType
Elements []NbtTag
}
func (t List) String() string {
var entriesString string
for i, entry := range t.Elements {
if i == 0 {
entriesString = entry.String()
} else {
entriesString = entriesString + ", " + entry.String()
}
}
return fmt.Sprintf("[%s]", entriesString)
}
func (t List) Type() TagType {
return Tag_List
}
func (t List) MarshalJSON() ([]byte, error) {
return arrayMarshalJSON(t.Elements)
}
type Compound map[String]struct {
Index int
Value NbtTag
}
type orderedCompound struct {
Key String
Value NbtTag
}
func (t Compound) String() string {
var childsString string
i := 0
for _, comp := range t.getOrdered() {
if i == 0 {
indentIncr()
} else {
childsString = childsString + ","
}
childsString += fmt.Sprintf("%s%s: %s", indent(), string(comp.Key), comp.Value.String())
if i == len(t)-1 {
indentDecr()
childsString = childsString + indent()
}
i++
}
return fmt.Sprintf("{%s}", childsString)
}
func (t Compound) Type() TagType {
return Tag_Compound
}
func (t Compound) getOrdered() []orderedCompound {
ordered := make([]orderedCompound, len(t))
for k, v := range t {
ordered[v.Index] = orderedCompound{k, v.Value}
}
return ordered
}
func (t Compound) MarshalJSON() ([]byte, error) {
return t.marshalJSON(false)
}
func (t Compound) MarshalNJSON() ([]byte, error) {
return t.marshalJSON(true)
}
func (t Compound) marshalJSON(njson bool) (b []byte, err error) {
buf := bytes.Buffer{}
buf.WriteByte('{')
for i, comp := range t.getOrdered() {
buf.WriteByte('"')
buf.WriteString(string(comp.Key))
if njson {
buf.WriteString(comp.Value.Type().Annotation().String())
}
buf.WriteByte('"')
buf.WriteByte(':')
var v []byte
if njson {
v, err = MarshalNJSON(comp.Value)
} else {
v, err = json.Marshal(comp.Value)
}
if err != nil {
return buf.Bytes(), err
}
buf.Write(v)
if i < len(t)-1 {
buf.WriteByte(',')
}
}
buf.WriteByte('}')
return buf.Bytes(), nil
}
type IntArray []Int
func (t IntArray) String() string {
var itemsString string
for i, item := range t {
if i == 0 {
itemsString = fmt.Sprint(item)
} else {
itemsString = itemsString + ", " + fmt.Sprint(item)
}
}
return fmt.Sprintf("[I; %s]", itemsString)
}
func (t IntArray) Type() TagType {
return Tag_Int_Array
}
func (t IntArray) MarshalJSON() ([]byte, error) {
return arrayMarshalJSON([]Int(t))
}
type LongArray []Long
func (t LongArray) String() string {
var itemsString string
for i, item := range t {
if i == 0 {
itemsString = fmt.Sprint(item)
} else {
itemsString = itemsString + ", " + fmt.Sprint(item)
}
}
return fmt.Sprintf("[L; %s]", itemsString)
}
func (t LongArray) Type() TagType {
return Tag_Long_Array
}
func (t LongArray) MarshalJSON() ([]byte, error) {
return arrayMarshalJSON([]Long(t))
}
// numberToJSON is a helper function that formats any NBT number to a valid JSON number.
func numberToJSON[N Byte | Short | Int | Long | Float | Double](num N) ([]byte, error) {
_, okF := any(num).(Float)
_, okD := any(num).(Double)
if !okF && !okD {
return []byte(fmt.Sprintf("%d", int64(num))), nil
}
if math.Mod(float64(num), 1) == 0 {
return []byte(fmt.Sprintf("%d.0", int64(num))), nil
}
return []byte(fmt.Sprintf("%f", float64(num))), nil
}
// arrayToJSON is a helper function that formats any NBT array or list to a valid JSON array.
func arrayMarshalJSON[S []E, E NbtTag](s S) ([]byte, error) {
var (
childsBytes bytes.Buffer
err error
)
childsBytes.WriteByte('[')
for i, entry := range s {
var childJSON []byte
childJSON, err = json.Marshal(entry)
childsBytes.Write(childJSON)
if err != nil {
break
}
if i < len(s)-1 {
childsBytes.WriteByte(',')
}
}
childsBytes.WriteByte(']')
return childsBytes.Bytes(), err
}