Liberi
An exergame built for kids with CP!
Heart.cs
1 using UnityEngine;
2 using System;
3 using System.Collections;
4 using System.Collections.Generic;
5 using System.Linq;
6 
7 public enum HeartTier : byte
8 {
9  Normal = 0,
10  Target = 1,
11  Vigorous = 2,
12  Extreme = 3
13 }
14 
15 public delegate void HeartTierChangedHandler (HeartTier newTier, HeartTier prevTier);
16 
20 public class Heart : MonoBehaviour
21 {
25  public static event HeartTierChangedHandler TierChanged;
26 
30  public static float Rate
31  {
32  get { return _rate; }
33  }
34 
35  public static float FireAntHR
36  {
37  get { return _fireAntHR; }
38  }
39 
40  public static float PolarHR
41  {
42  get { return _polarHR; }
43  }
44 
48  public static HeartTier Tier
49  {
50  get { return _tier; }
51  }
52 
56  public static float TierTime
57  {
58  get { return (float)DateTime.Now.Subtract(_tierChangeTime).TotalSeconds; }
59  }
60 
64  public static float NormalizedRate
65  {
66  get
67  {
68  if (_health != null)
69  return (_rate - _health.RestingHeartRate) / (_health.TargetHeartRate - _health.RestingHeartRate);
70  return 0;
71  }
72  }
73 
74  static float _rate;
75  static float _fireAntHR;
76  static float _polarHR;
77  static HeartTier _tier;
78  static PlayerHealthProfile _health;
79  static DateTime _tierChangeTime;
80 
85  public static void InjectRate (float heartRate)
86  {
87  _rate = heartRate;
88 
89  if (_health != null)
90  {
91  var prevTier = _tier;
92 
93  _tier = _health.GetHeartTier(heartRate);
94 
95  if (_tier == HeartTier.Extreme)
96  ExclamationBar.Exclaim("Slow down!");
97 
98  if (prevTier != _tier)
99  {
100  _tierChangeTime = DateTime.Now;
101 
102  if (TierChanged != null)
103  TierChanged(_tier, prevTier);
104  }
105  }
106  }
107 
108  public static void InjectFireAntRate(float rate)
109  {
110  _fireAntHR = rate;
111  }
112 
113  public static void InjectPolarRate(float rate)
114  {
115  _polarHR = rate;
116  }
117 
118  void Start ()
119  {
120  GameClient.Instance.ConnectedToWorldServer += OnConnectedToWorldServer;
121  GameClient.Instance.DisconnectedFromWorldServer += OnDisconnectedFromWorldServer;
122  }
123 
124  void OnConnectedToWorldServer ()
125  {
126  _health = Game.LocalPlayerProfile.Health;
127  }
128 
129  void OnDisconnectedFromWorldServer ()
130  {
131  _health = null;
132  }
133 }
Heart class. Allows for heart rate queries and heart rate injection from devices. ...
Definition: Heart.cs:20
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
static void Exclaim(string message, float duration=3.0f)
Displays the message for duration seconds, fading it in and out.
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
A GUI Object that displays various messages in a faded bar accross the centre of the players screen...
static HeartTier Tier
Gets the current heart tier.
Definition: Heart.cs:49
static float Rate
Gets the current heart rate.
Definition: Heart.cs:31
static float TierTime
Gets the amount of time the heart has spent in the current tier.
Definition: Heart.cs:57
static float NormalizedRate
Gets the current heart rate divded by the target heart rate.
Definition: Heart.cs:65
static HeartTierChangedHandler TierChanged
Event fired when the heart rate tier changes.
Definition: Heart.cs:25