Liberi
An exergame built for kids with CP!
FireAntHeartRateMonitor.cs
1 using UnityEngine;
2 using System.Collections;
3 using System.Collections.Generic;
4 using System.Diagnostics;
5 
10 {
11  public bool Passive;
12 
13  int _hr;
14  int _lastNonZero;
15 
16  void OnEnable ()
17  {
18  UJeli configOptions;
19  GameClient.Instance.Config.Devices.Options.TryGetValue(name, out configOptions);
20 
21  if (configOptions != null && configOptions.HasChild("passive"))
22  Passive = configOptions["passive"].BoolValue;
23 
24  DeviceManager.Instance.ConfigureFireAnt();
25  DeviceManager.Instance.FireAntProcess.OutputDataReceived += OnFireAntOutput;
26  DeviceManager.Instance.StartFireAnt();
27  }
28 
29  void OnFireAntOutput (object sender, DataReceivedEventArgs e)
30  {
31  if (e.Data != null)
32  {
33  string[] args = e.Data.Split();
34  _hr = int.Parse(args[0]);
35 
36  if (_hr != 0)
37  _lastNonZero = _hr;
38  else
39  _hr = _lastNonZero;
40 
41  if (!Passive)
42  {
43  Heart.InjectRate(_hr);
44  }
45  Heart.InjectFireAntRate(_hr);
46  }
47  }
48 
49  public override UJeli GetDeviceSaveOptions ()
50  {
51  UJeli jeli = new UJeli();
52  jeli.AddChild("passive", Passive);
53  return jeli;
54  }
55 }
override UJeli GetDeviceSaveOptions()
Returns a jeli containing all the custom options used by a device.
Heart class. Allows for heart rate queries and heart rate injection from devices. ...
Definition: Heart.cs:20
static DeviceManager Instance
Gets the sole instance of the device manager.
Abstract class to be extended by devices.
Definition: Device.cs:7
static void InjectRate(float heartRate)
Injects a heart rate.
Definition: Heart.cs:85
A Device for providing HeartRate information to the Heart class from FireAnt.
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
Manages game devices.
Main game client class.
Definition: GameClient.cs:16
Unity version of Jeli markup class.
Definition: UJeli.cs:10