-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtype_graphic.go
91 lines (90 loc) · 2.85 KB
/
type_graphic.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
package acctelemetry
type AccGraphic struct {
PacketID int32
ACStatus int32
ACSessionType int32
CurrentTime [15]uint16
LastTime [15]uint16
BestTime [15]uint16
Split [15]uint16
CompletedLaps int32
Position int32
ICurrentTime int32
ILastTime int32
IBestTime int32
SessionTimeLeft float32
DistanceTraveled float32
IsInPit int32
CurrentSectorIndex int32
LastSectorTime int32
NumberOfLaps int32
TyreCompound [33]uint16
ReplayTimeMultiplier float32
NormalizedCarPosition float32
ActiveCars int32
CarCoordinates [60][3]float32
CarID [60]int32
PlayerCarID int32
PenaltyTime float32
Flag int32
Penalty int32
IdealLineOn int32
IsInPitLane int32
SurfaceGrip float32
MandatoryPitDone int32
WindSpeed float32
WindDirection float32
IsSetupMenuVisible int32
MainDisplayIndex int32
SecondaryDisplayIndex int32
TC int32
TCCut int32
EngineMap int32
ABS int32
FuelXLap float32
RainLights int32
FlashingLights int32
LightsStage int32
ExhaustTemperature float32
WiperLV int32
DriverStintTotalTimeLeft int32
DriverStintTimeLeft int32
RainTyres int32
SessionIndex int32
UsedFuel float32
DeltaLapTime [15]uint16
IDeltaLapTime int32
EstimatedLapTime [15]uint16
IEstimatedLapTime int32
IsDeltaPositive int32
ISplit int32
IsValidLap int32
FuelEstimatedLaps float32
TrackStatus [33]uint16
MissingMandatoryPits int32
Clock float32
DirectionLightsLeft int32
DirectionLightsRight int32
GlobalYellow int32
GlobalYellow1 int32
GlobalYellow2 int32
GlobalYellow3 int32
GlobalWhite int32
GlobalGreen int32
GlobalChequered int32
GlobalRed int32
MfdTyreSet int32
MfdFuelToAdd float32
MfdTyrePressureLF float32
MfdTyrePressureRF float32
MfdTyrePressureLR float32
MfdTyrePressureRR float32
TrackGripStatus int32
RainIntensity int32
RainIntensityIn10min int32
RainIntensityIn30min int32
CurrentTyreSet int32
StrategyTyreSet int32
GapAhead int32
GapBehind int32
}