-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathIRacingSdkSessionInfoAsList.cs
231 lines (185 loc) · 4.34 KB
/
IRacingSdkSessionInfoAsList.cs
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
using System;
using System.Collections;
namespace IRSDKSharper
{
public class IRacingSdkSessionInfoAsList : IList
{
private readonly IRacingSdkData data;
private int count;
private int lastIndex;
private Datum lastDatum;
public IRacingSdkSessionInfoAsList( IRacingSdkData data )
{
this.data = data;
Reset();
}
public void Reset()
{
count = -1;
lastIndex = -1;
}
public object this[ int index ]
{
get
{
if ( index != lastIndex )
{
Datum datum = new Datum( "???", "???" );
var sessionInfo = data.SessionInfo;
if ( sessionInfo != null )
{
var currentOffset = 0;
foreach ( var propertyInfo in sessionInfo.GetType().GetProperties() )
{
if ( GetDatum( ref currentOffset, index, propertyInfo.Name, propertyInfo.GetValue( sessionInfo ), out datum ) )
{
break;
}
}
}
lastIndex = index;
lastDatum = datum;
}
return lastDatum;
}
set => throw new NotImplementedException();
}
private bool GetDatum( ref int currentOffset, int targetOffset, string trackName, object valueAsObject, out Datum datum )
{
if ( valueAsObject != null )
{
var isSimpleValue = ( ( valueAsObject is string ) || ( valueAsObject is int ) || ( valueAsObject is float ) || ( valueAsObject is double ) );
if ( isSimpleValue )
{
if ( currentOffset == targetOffset )
{
datum = new Datum( trackName, valueAsObject.ToString() );
return true;
}
currentOffset++;
}
else if ( valueAsObject is IList list )
{
var index = 0;
foreach ( var item in list )
{
if ( GetDatum( ref currentOffset, targetOffset, $"{trackName}[{index}]", item, out datum ) )
{
return true;
}
index++;
}
}
else
{
foreach ( var propertyInfo in valueAsObject.GetType().GetProperties() )
{
if ( GetDatum( ref currentOffset, targetOffset, $"{trackName}.{propertyInfo.Name}", propertyInfo.GetValue( valueAsObject ), out datum ) )
{
return true;
}
}
}
}
datum = new Datum( "???", "???" );
return false;
}
public bool IsFixedSize => true;
public bool IsReadOnly => true;
public int Count
{
get
{
if ( count == -1 )
{
count = 0;
var sessionInfo = data.SessionInfo;
if ( sessionInfo != null )
{
foreach ( var propertyInfo in sessionInfo.GetType().GetProperties() )
{
count += CountSessionInfoProperties( propertyInfo.GetValue( sessionInfo ) );
}
}
}
return count;
}
set => throw new NotImplementedException();
}
private int CountSessionInfoProperties( object valueAsObject )
{
var count = 0;
if ( valueAsObject != null )
{
var isSimpleValue = ( ( valueAsObject is string ) || ( valueAsObject is int ) || ( valueAsObject is float ) || ( valueAsObject is double ) );
if ( isSimpleValue )
{
count++;
}
else if ( valueAsObject is IList list )
{
foreach ( var item in list )
{
count += CountSessionInfoProperties( item );
}
}
else
{
foreach ( var propertyInfo in valueAsObject.GetType().GetProperties() )
{
count += CountSessionInfoProperties( propertyInfo.GetValue( valueAsObject ) );
}
}
}
return count;
}
public bool IsSynchronized => false;
public object SyncRoot => throw new NotImplementedException();
public int Add( object value )
{
throw new NotImplementedException();
}
public void Clear()
{
throw new NotImplementedException();
}
public bool Contains( object value )
{
throw new NotImplementedException();
}
public void CopyTo( Array array, int index )
{
throw new NotImplementedException();
}
public IEnumerator GetEnumerator()
{
throw new NotImplementedException();
}
public int IndexOf( object value )
{
throw new NotImplementedException();
}
public void Insert( int index, object value )
{
throw new NotImplementedException();
}
public void Remove( object value )
{
throw new NotImplementedException();
}
public void RemoveAt( int index )
{
throw new NotImplementedException();
}
public class Datum
{
public string key;
public string value;
public Datum( string key, string value )
{
this.key = key;
this.value = value;
}
}
}
}