4 using System.Collections.Generic;
13 public partial class Study : MonoBehaviour
15 static string GetPlayerIDHeaderColumnValue ()
17 return Game.LocalPlayerID;
20 static string GetDateHeaderColumnValue ()
25 static string GetTimeHeaderColumnValue ()
30 static string GetRestingHRHeaderColumnValue()
32 return Game.LocalPlayerProfile.Health.RestingHeartRate.ToString();
35 static string GetMaxHRHeaderColumnValue()
37 return Game.LocalPlayerProfile.Health.MaxHeartRate.ToString();
40 static string GetTargetHRRatioHeaderColumnValue()
42 return Game.LocalPlayerProfile.Health.TargetHeartRateRatio.ToString();
45 static string GetVigorousHRRatioHeaderColumnValue()
47 return Game.LocalPlayerProfile.Health.VigorousHeartRateRatio.ToString();
50 static string GetEffortBalanceCadenceCapHeaderColumnValue()
52 return Game.LocalPlayerProfile.Health.EffortBalanceCadenceCap.ToString();
55 static string GetGenericeBalanceCadenceCapHeaderColumnValue()
57 return Game.LocalPlayerProfile.Health.GenericBalanceCadenceCap.ToString();
60 static string GetServerTimeColumnValue()
72 static string GetClientTimeColumnValue ()
77 static string GetHeartRateColumnValue ()
82 static string GetHeartTierColumnValue ()
87 static string GetPersonaColumnValue ()
89 var localAvatar = Game.LocalAvatar;
91 if (localAvatar == null || localAvatar.GetComponent<
Character>() == null)
94 string activePersonaId = localAvatar.GetComponent<
Character>().ActivePersonaID;
96 if (activePersonaId == null)
99 return activePersonaId;
102 static string GetTurboColumnValue ()
104 var localAvatar = Game.LocalAvatar;
106 if (localAvatar == null || localAvatar.GetComponent<
Character>() == null)
109 return localAvatar.GetComponent<
Character>().IsTurbo.ToString();
112 static string GetPowerColumnValue ()
117 static string GetDirectionColumnValue ()
122 static string GetAvatarPositionColumnValue ()
124 var localAvatar = Game.LocalAvatar;
126 if (localAvatar == null)
129 return localAvatar.transform.position.ToSimpleString();
132 static string GetAvatarDirectionColumnValue ()
134 var localAvatar = Game.LocalAvatar;
136 if (localAvatar == null)
139 return localAvatar.transform.GetDirection().ToSimpleString();
142 static string GetCadenceColumnValue ()
147 static string GetBalanceConditionColumnValue ()
152 static string GetFireAntHRColumnValue ()
154 return Heart.FireAntHR.ToString();
157 static string GetPolarHRColumnValue()
159 return Heart.PolarHR.ToString();
static float Power
Returns an abstract power value in the range [0 ... 1].
string LogDateFormat
Formatting for dates in logs.
static Zone Instance
Gets the sole instance of the zone.
static Minigame Instance
Gets the sole instance of this minigame.
Heart class. Allows for heart rate queries and heart rate injection from devices. ...
static float RawCadence
Returns the raw pedaling cadence for logging use or other study reasons.
string LogTimeFormat
Formatting for times in logs.
static Vector3 Direction
Returns a normalized, abstract direction. Could also be zero.
Avatar character management component. In charge of personas, skills and buffs.
ClientConfig Config
Gets the configuration for this client.
static GameClient Instance
Gets the sole instance of the game client.
Class for managing study-related game components.
static HeartTier Tier
Gets the current heart tier.
Class for general minigame management.
static float Rate
Gets the current heart rate.
static TimelineManager TimelineManager
Gets the Janus timeline manager on this peer.
This class server two main functions: 1) As a MonoBehaviour, it allows for network synchronization of...
Controls class. Allows for controls queries and controls injection from devices.