2 using System.Runtime.InteropServices;
4 using System.Collections.Generic;
13 static extern bool FitXF_GetPedalCadence(ref
double pedalCadence);
16 float _timeBetweenSamples;
17 LinkedList<float> _cadenceSmoothingWindow =
new LinkedList<float>();
21 float _yIntercept = 0;
22 bool _useSmoothCadence =
false;
23 float _samplesPerSecond = 10;
24 int _smoothingWindowSize = 10;
31 _slope = configOptions[
"slope"].FloatValue;
32 _yIntercept = configOptions[
"y_intercept"].FloatValue;
33 _timeBetweenSamples = 1 / configOptions[
"samples_per_second"].FloatValue;
34 _smoothingWindowSize = configOptions[
"smoothing_window_size"].IntValue;
35 _useSmoothCadence = configOptions[
"use_smooth_cadence"].BoolValue;
37 if (_useSmoothCadence)
38 StartCoroutine(SmoothCadenceAsync());
40 StartCoroutine(RoughCadenceAsync());
47 jeli.AddChild(
"slope", _slope);
48 jeli.AddChild(
"y_intercept", _yIntercept);
49 jeli.AddChild(
"use_smooth_cadence", _useSmoothCadence);
50 jeli.AddChild(
"samples_per_second", _samplesPerSecond);
51 jeli.AddChild(
"smoothing_window_size", _smoothingWindowSize);
56 IEnumerator RoughCadenceAsync()
60 double pedalCadence = 0;
61 FitXF_GetPedalCadence(ref pedalCadence);
63 if (pedalCadence < 5.0)
67 _cadence = (int)(pedalCadence * _slope + _yIntercept);
71 yield
return new WaitForSeconds(_timeBetweenSamples);
75 IEnumerator SmoothCadenceAsync()
79 double pedalCadence = 0;
80 FitXF_GetPedalCadence(ref pedalCadence);
82 _cadence = (float)pedalCadence * _slope + _yIntercept;
84 if (pedalCadence < 5.0)
85 _cadenceSmoothingWindow.AddFirst(0);
87 _cadenceSmoothingWindow.AddFirst(_cadence);
89 if (_cadenceSmoothingWindow.Count > _smoothingWindowSize)
90 _cadenceSmoothingWindow.RemoveLast();
92 _cadence = AverageValueInLinkedList(_cadenceSmoothingWindow);
96 yield
return new WaitForSeconds(_timeBetweenSamples);
100 public float AverageValueInLinkedList(LinkedList<float> list)
102 LinkedListNode<float> node = list.First;
104 float total = node.Value;
107 while (node.Next != null)
114 return total / count;
Abstract class to be extended by devices.
static void InjectSmoothCadence(float cadence)
Injects a power value.
A Device for providing power information to the Controls class from a FitXF Gamer Bike...
ClientConfig Config
Gets the configuration for this client.
static GameClient Instance
Gets the sole instance of the game client.
override UJeli GetDeviceSaveOptions()
Returns a jeli containing all the custom options used by a device.
Unity version of Jeli markup class.
Controls class. Allows for controls queries and controls injection from devices.