Liberi
An exergame built for kids with CP!
KeyboardHeartRateSimulator.cs
1 using UnityEngine;
2 using System.Collections;
3 using System.Collections.Generic;
4 using Janus;
5 using System;
6 using System.Linq;
7 using LiberiNet;
8 
13 {
14  public KeyCode NormalHeartRateKey;
15  public KeyCode TargetHeartRateKey;
16  public KeyCode VigorousHeartRateKey;
17 
18  PlayerHealthProfile _health;
19 
20  void Start()
21  {
22  GameClient.Instance.ConnectedToWorldServer += OnConnectedToWorldServer;
23  GameClient.Instance.DisconnectedFromWorldServer += OnDisconnectedFromWorldServer;
24  }
25 
26  void Update()
27  {
28  if (_health != null)
29  {
30  if (Input.GetKeyDown(NormalHeartRateKey))
31  {
32  Heart.InjectRate((_health.RestingHeartRate + _health.TargetHeartRate) / 2);
33  // TODO: Log this.
34  }
35  else if (Input.GetKeyDown(TargetHeartRateKey))
36  {
37  Heart.InjectRate(_health.TargetHeartRate);
38  // TODO: Log this.
39  }
40  else if (Input.GetKeyDown(VigorousHeartRateKey))
41  {
42  Heart.InjectRate(_health.ExtremeHeartRate);
43  // TODO: Log this.
44  }
45  }
46  }
47 
48  void OnConnectedToWorldServer()
49  {
50  _health = Game.LocalPlayerProfile.Health;
51 
52  Heart.InjectRate((_health.RestingHeartRate + _health.TargetHeartRate) / 2);
53  }
54 
55  void OnDisconnectedFromWorldServer()
56  {
57  _health = null;
58  }
59 }
A Device for providing simulated Heartrate information to the Heart class from keyboard input...
Heart class. Allows for heart rate queries and heart rate injection from devices. ...
Definition: Heart.cs:20
Abstract class to be extended by devices.
Definition: Device.cs:7
DisconnectedFromWorldServerHandler DisconnectedFromWorldServer
Event fired when the game client is disconnected from the world server.
Definition: GameClient.cs:69
static void InjectRate(float heartRate)
Injects a heart rate.
Definition: Heart.cs:85
ConnectedToWorldServerHandler ConnectedToWorldServer
Event fired when the game client successfully connects to the world server.
Definition: GameClient.cs:61
static GameClient Instance
Gets the sole instance of the game client.
Definition: GameClient.cs:136
Main game client class.
Definition: GameClient.cs:16