blob: dda81dd43d5ff53694ceada5219f77c105a0bfd1 (
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
|
package messages
import (
"github.com/pektezol/bitreader"
)
type SvcBspDecal struct {
Pos []vectorCoord
DecalTextureIndex int16
EntityIndex int16
ModelIndex int16
LowPriority int8
}
type vectorCoord struct {
Value float32
Valid bool
}
func ParseSvcBspDecal(reader *bitreader.Reader) SvcBspDecal {
svcBspDecal := SvcBspDecal{
Pos: readVectorCoords(reader),
DecalTextureIndex: int16(reader.TryReadBits(9)),
}
if reader.TryReadBool() {
svcBspDecal.EntityIndex = int16(reader.TryReadBits(11))
svcBspDecal.ModelIndex = int16(reader.TryReadBits(11))
}
svcBspDecal.LowPriority = int8(reader.TryReadBits(1))
return svcBspDecal
}
func readVectorCoords(reader *bitreader.Reader) []vectorCoord {
const COORD_INTEGER_BITS uint8 = 14
const COORD_FRACTIONAL_BITS uint8 = 5
const COORD_DENOMINATOR uint8 = 1 << COORD_FRACTIONAL_BITS
const COORD_RESOLUTION float32 = 1.0 / float32(COORD_DENOMINATOR)
readVectorCoord := func() float32 {
value := float32(0)
integer := reader.TryReadBits(1)
fraction := reader.TryReadBits(1)
if integer != 0 || fraction != 0 {
sign := reader.TryReadBits(1)
if integer != 0 {
integer = reader.TryReadBits(uint64(COORD_INTEGER_BITS)) + 1
}
if fraction != 0 {
fraction = reader.TryReadBits(uint64(COORD_FRACTIONAL_BITS))
}
value = float32(integer) + float32(fraction)*COORD_RESOLUTION
if sign != 0 {
value = -value
}
}
return value
}
x := reader.TryReadBits(1)
y := reader.TryReadBits(1)
z := reader.TryReadBits(1)
return []vectorCoord{{Value: readVectorCoord(), Valid: x != 0}, {Value: readVectorCoord(), Valid: y != 0}, {Value: readVectorCoord(), Valid: z != 0}}
}
|