-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathfreeD.go
More file actions
executable file
·101 lines (87 loc) · 2.85 KB
/
Copy pathfreeD.go
File metadata and controls
executable file
·101 lines (87 loc) · 2.85 KB
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
package freeD
import (
"encoding/binary"
"errors"
)
type FreeD struct {
Pitch float32
Yaw float32
Roll float32
PosZ float32
PosX float32
PosY float32
Zoom int
Focus int
}
func Decode(data []byte) (FreeD, error) {
if checksum(data) == int(data[28]) {
var TrackingData FreeD
TrackingData.Pitch = getRotation(data[2:5])
TrackingData.Yaw = getRotation(data[5:8])
TrackingData.Roll = getRotation(data[8:11])
TrackingData.PosZ = getPosition(data[11:14])
TrackingData.PosX = getPosition(data[14:17])
TrackingData.PosY = getPosition(data[17:20])
TrackingData.Zoom = getEncoder(data[20:23])
TrackingData.Focus = getEncoder(data[23:26])
return TrackingData, nil
}
return FreeD{}, errors.New("calculated checksum does not match provided data. probalby not freeD")
}
func Encode(data FreeD) []byte {
output := []byte{0xD1} //Identifier
output = append(output, []byte{0xFF}...) //ID
output = append(output, setRotation(data.Pitch)...) //Pitch
output = append(output, setRotation(data.Yaw)...) //Yaw
output = append(output, setRotation(data.Roll)...) //Roll
output = append(output, setPosition(data.PosZ)...) //X
output = append(output, setPosition(data.PosX)...) //Y
output = append(output, setPosition(data.PosY)...) //Z
output = append(output, setEncoder(data.Zoom)...) //Zoom
output = append(output, setEncoder(data.Focus)...) //Focus
output = append(output, []byte{0x00, 0x00}...) //Reserved
output = append(output, []byte{byte(checksum(output))}...) //Checksum
return output
}
func setPosition(pos float32) []byte {
position := int64(pos * 64 * 256)
data := make([]byte, 8)
binary.BigEndian.PutUint64(data, uint64(position))
return data[4:7]
}
func setRotation(rot float32) []byte {
rotation := int64(rot * 32768 * 256)
data := make([]byte, 8)
binary.BigEndian.PutUint64(data, uint64(rotation))
return data[4:7]
}
func setEncoder(enc int) []byte {
data := make([]byte, 8)
binary.BigEndian.PutUint64(data, uint64(enc))
return append([]byte{0x00}, data[6:]...)
}
func getPosition(data []byte) float32 {
return float32(int32(data[0])<<24|int32(data[1])<<16|int32(data[2])<<8) / 64 / 256
}
func getRotation(data []byte) float32 {
return float32(int32(data[0])<<24|int32(data[1])<<16|int32(data[2])<<8) / 32768 / 256
}
func getEncoder(data []byte) int {
value := []byte{0x00}
value = append(value, data...)
return int(binary.BigEndian.Uint32(value))
}
func checksum(data []byte) int {
sum := int(64)
for _, element := range data[:28] {
sum = sum - int(element)
}
return modulo(sum, 256)
}
func modulo(d, m int) int {
res := d % m
if (res < 0 && m > 0) || (res > 0 && m < 0) {
return res + m
}
return res
}