Liberi
An exergame built for kids with CP!
BikeFitXF.cs
1 using UnityEngine;
2 using System.Runtime.InteropServices;
3 using System.Collections;
4 using System.Collections.Generic;
5 using System;
6 
10 public class BikeFitXF : Device
11 {
12  [DllImport("FitXF")]
13  static extern bool FitXF_GetPedalCadence(ref double pedalCadence);
14 
15  float _cadence;
16  float _timeBetweenSamples;
17  LinkedList<float> _cadenceSmoothingWindow = new LinkedList<float>();
18 
19  // Config Vars
20  float _slope = 1;
21  float _yIntercept = 0;
22  bool _useSmoothCadence = false;
23  float _samplesPerSecond = 10;
24  int _smoothingWindowSize = 10;
25 
26  void OnEnable()
27  {
28  UJeli configOptions;
29  GameClient.Instance.Config.Devices.Options.TryGetValue(name, out configOptions);
30 
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;
36 
37  if (_useSmoothCadence)
38  StartCoroutine(SmoothCadenceAsync());
39  else
40  StartCoroutine(RoughCadenceAsync());
41  }
42 
43  public override UJeli GetDeviceSaveOptions()
44  {
45  UJeli jeli = new UJeli();
46 
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);
52 
53  return jeli;
54  }
55 
56  IEnumerator RoughCadenceAsync()
57  {
58  while (true)
59  {
60  double pedalCadence = 0;
61  FitXF_GetPedalCadence(ref pedalCadence);
62 
63  if (pedalCadence < 5.0)
65  else
66  {
67  _cadence = (int)(pedalCadence * _slope + _yIntercept);
68 
69  Controls.InjectSmoothCadence(_cadence);
70  }
71  yield return new WaitForSeconds(_timeBetweenSamples);
72  }
73  }
74 
75  IEnumerator SmoothCadenceAsync()
76  {
77  while (true)
78  {
79  double pedalCadence = 0;
80  FitXF_GetPedalCadence(ref pedalCadence);
81 
82  _cadence = (float)pedalCadence * _slope + _yIntercept;
83 
84  if (pedalCadence < 5.0)
85  _cadenceSmoothingWindow.AddFirst(0);
86  else
87  _cadenceSmoothingWindow.AddFirst(_cadence);
88 
89  if (_cadenceSmoothingWindow.Count > _smoothingWindowSize)
90  _cadenceSmoothingWindow.RemoveLast();
91 
92  _cadence = AverageValueInLinkedList(_cadenceSmoothingWindow);
93 
94  Controls.InjectSmoothCadence(_cadence);
95 
96  yield return new WaitForSeconds(_timeBetweenSamples);
97  }
98  }
99 
100  public float AverageValueInLinkedList(LinkedList<float> list)
101  {
102  LinkedListNode<float> node = list.First;
103 
104  float total = node.Value;
105  int count = 1;
106 
107  while (node.Next != null)
108  {
109  node = node.Next;
110  total += node.Value;
111  count++;
112  }
113 
114  return total / count;
115  }
116 }
Abstract class to be extended by devices.
Definition: Device.cs:7
static void InjectSmoothCadence(float cadence)
Injects a power value.
Definition: Controls.cs:109
A Device for providing power information to the Controls class from a FitXF Gamer Bike...
Definition: BikeFitXF.cs:10
ClientConfig Config
Gets the configuration for this client.
Definition: GameClient.cs:176
static GameClient Instance
Gets the sole instance of the game client.
Definition: GameClient.cs:136
Main game client class.
Definition: GameClient.cs:16
override UJeli GetDeviceSaveOptions()
Returns a jeli containing all the custom options used by a device.
Definition: BikeFitXF.cs:43
Unity version of Jeli markup class.
Definition: UJeli.cs:10
Controls class. Allows for controls queries and controls injection from devices.
Definition: Controls.cs:41