Liberi
An exergame built for kids with CP!
PlayerProfile.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 System.Reflection;
8 
9 public enum PlayerProfileOperationType : byte
10 {
11  InventoryUpdate,
12  StylesUpdate
13 }
14 
19 public class PlayerProfile
20 {
21  public delegate void StylesUpdateHandler (string avatarType, string slotType);
22  public event StylesUpdateHandler StylesUpdated = delegate { };
23 
24  public PlayerDailyStatistics TotalDailyStatistics
25  {
26  get
27  {
28  PlayerDailyStatistics stats = null;
29  DailyStatistics.TryGetValue("*", out stats);
30  return stats;
31  }
32  }
33 
34  public string PlayerID;
35  public PlayerBasicProfile Basic;
36  public PlayerLocationProfile Location;
37  public PlayerHealthProfile Health;
38  public UJeli Inventory;
39  public UJeli Styles;
40  public Dictionary<string, PlayerCharacterProfile> Characters = new Dictionary<string, PlayerCharacterProfile>();
41  public Dictionary<string, PlayerDailyStatistics> DailyStatistics = new Dictionary<string, PlayerDailyStatistics>();
42 
43  public PlayerProfile (string playerId, UJeli jeli)
44  {
45  PlayerID = playerId;
46 
47  Basic = new PlayerBasicProfile(jeli["Basic"], playerId);
48  Location = new PlayerLocationProfile(jeli["Location"]);
49  Health = new PlayerHealthProfile(jeli["Health"]);
50  Inventory = jeli["Inventory"];
51  Styles = jeli["Styles"];
52 
53  UJeli charactersJeli = jeli["Characters"];
54 
55  if (charactersJeli != null)
56  {
57  foreach (var charJeli in charactersJeli.Children)
58  {
59  try { Characters[charJeli.Name] = new PlayerCharacterProfile(charJeli); }
60  catch { }
61  }
62  }
63 
64  UJeli dailyStatsJeli = jeli["DailyStatistics"];
65 
66  if (dailyStatsJeli != null)
67  {
68  foreach (var dailyMapStatsJeli in dailyStatsJeli.Children)
69  {
70  try { DailyStatistics[dailyMapStatsJeli.Name] = new PlayerDailyStatistics(dailyMapStatsJeli); }
71  catch { }
72  }
73  }
74  }
75 
76  public override string ToString()
77  {
78  UJeli jeli = new UJeli();
79 
80  jeli.AddChild(Basic.ToJeli());
81  jeli.AddChild(Styles);
82 
83  return jeli.ToString();
84  }
85 
86  public PlayerCharacterProfile GetCharacter (string avatarId)
87  {
88  PlayerCharacterProfile character = null;
89  Characters.TryGetValue(avatarId, out character);
90  return character;
91  }
92 
93  internal void ProcessIncomingOperation (GameMessage op)
94  {
95  var opType = (PlayerProfileOperationType)op.ReadByte();
96 
97  if (opType == PlayerProfileOperationType.InventoryUpdate)
98  {
99  string path = op.ReadString();
100  string value = op.ReadString();
101  string property = SetJeliProperty(Inventory, path, value);
102 
103  if (property == "libi")
104  GUILibiCounter.Text = value;
105  }
106 
107  else if (opType == PlayerProfileOperationType.StylesUpdate)
108  {
109  string avatarType = op.ReadString();
110  string slotType = op.ReadString();
111  string value = op.ReadString();
112 
113  if (!Styles[avatarType].HasChild(slotType))
114  Styles[avatarType].AddChild(slotType);
115 
116  Styles[avatarType][slotType].Value = value;
117 
118  if (Game.IsClient)
119  StylesUpdated(avatarType, slotType.ToString().ToLower());
120  }
121  }
122 
123  private string SetJeliProperty (UJeli jeli, string path, string value)
124  {
125  List<string> pathTokens = path.Split('/').ToList();
126 
127  while (pathTokens.Count != 0)
128  {
129  string childName = pathTokens[0];
130 
131  if (jeli.HasChild(childName))
132  jeli = jeli.GetChild(childName);
133  else
134  jeli = jeli.AddChild(childName);
135 
136  pathTokens.RemoveAt(0);
137  }
138 
139  jeli.Value = value;
140  return jeli.Name;
141  }
142 }
143 
144 public class PlayerBasicProfile
145 {
146  public string Nickname;
147  public bool IsMonitor;
148 
149  public PlayerBasicProfile (UJeli jeli, string id)
150  {
151  try { Nickname = jeli["Nickname"].Value; } catch { }
152 
153  if (string.IsNullOrEmpty(Nickname))
154  Nickname = System.Globalization.CultureInfo.CurrentCulture.TextInfo.ToTitleCase(id);
155 
156  try { IsMonitor = jeli["IsMonitor"].BoolValue; } catch { }
157  }
158 
159  public UJeli ToJeli ()
160  {
161  UJeli jeli = new UJeli("Basic");
162 
163  jeli.AddChild("Nickname", Nickname);
164  jeli.AddChild("IsMonitor", IsMonitor);
165 
166  return jeli;
167  }
168 
169  public override string ToString ()
170  {
171  return ToJeli().ToString();
172  }
173 }
174 
176 {
177  public string LastZoneMapID;
178  public string LastCheckpointID;
179 
180  public PlayerLocationProfile (UJeli jeli)
181  {
182  try { LastZoneMapID = jeli["LastZone"].Value; } catch { }
183  try { LastCheckpointID = jeli["LastCheckpoint"].Value; } catch { }
184  }
185 }
186 
188 {
189  public Dictionary<string, int> TraitPoints = new Dictionary<string, int>();
190  public string LastActivePersonaID;
191 
192  public PlayerCharacterProfile (UJeli jeli)
193  {
194  UJeli traitsJeli = jeli["Traits"];
195 
196  if (traitsJeli != null)
197  TraitPoints = traitsJeli.GetChildDictionaryStringNames<int>(int.Parse);
198 
199  UJeli lastActivePersonaJeli = jeli["LastActivePersona"];
200 
201  if (lastActivePersonaJeli != null)
202  LastActivePersonaID = lastActivePersonaJeli.Value;
203  }
204 
205  public int GetTraitPoints (string traitId)
206  {
207  int traitPoints = 0;
208  TraitPoints.TryGetValue(traitId, out traitPoints);
209  return traitPoints;
210  }
211 }
212 
214 {
215  public float HeartRateReserve
216  {
217  get { return MaxHeartRate - RestingHeartRate; }
218  }
219 
220  public float TargetHeartRate
221  {
222  get { return Mathf.Ceil(RestingHeartRate + HeartRateReserve * TargetHeartRateRatio); }
223  }
224 
225  public float VigorousHeartRate
226  {
227  get { return Mathf.Ceil(RestingHeartRate + HeartRateReserve * VigorousHeartRateRatio); }
228  }
229 
230  public float ExtremeHeartRate
231  {
232  get { return Mathf.Ceil(RestingHeartRate + HeartRateReserve * ExtremeHeartRateRatio); }
233  }
234 
235  public float RestingHeartRate = 70;
236  public float MaxHeartRate = 190;
237  public float TargetHeartRateRatio = .6f;
238  public float VigorousHeartRateRatio = .8f;
239  public float ExtremeHeartRateRatio = 1f;
240  public float EffortBalanceCadenceCap = 60;
241  public float GenericBalanceCadenceCap = 60;
242  public float MaxDailyTimePlayed = float.PositiveInfinity;
243  public float MaxDailyTimePedaled = float.PositiveInfinity;
244  public float MaxDailyTimeAboveTarget = 3600;
245  public float MaxDailyTimeAboveVigorous = 600;
246  public float VigorousWarningRaiseTime = 30;
247  public float VigorousWarningDropTime = 30;
248  public float WarmupDuration = 180;
249  public float CooldownDuration = 180;
250  public bool NoRestrictions = false;
251 
252  public PlayerHealthProfile (UJeli jeli)
253  {
254  try { RestingHeartRate = jeli["RestingHeartRate"].FloatValue; } catch { }
255  try { MaxHeartRate = jeli["MaxHeartRate"].FloatValue; } catch { }
256  try { TargetHeartRateRatio = jeli["TargetHeartRateRatio"].FloatValue; } catch { }
257  try { VigorousHeartRateRatio = jeli["VigorousHeartRateRatio"].FloatValue; } catch { }
258  try { ExtremeHeartRateRatio = jeli["ExtremeHeartRateRatio"].FloatValue; } catch { }
259  try { EffortBalanceCadenceCap = jeli["EffortBalanceCadenceCap"].FloatValue; } catch { }
260  try { GenericBalanceCadenceCap = jeli["GenericBalanceCadenceCap"].FloatValue; } catch { }
261  try { MaxDailyTimePlayed = jeli["MaxDailyTimePlayed"].FloatValue; } catch { }
262  try { MaxDailyTimePedaled = jeli["MaxDailyTimePedaled"].FloatValue; } catch { }
263  try { MaxDailyTimeAboveTarget = jeli["MaxDailyTimeAboveTarget"].FloatValue; } catch { }
264  try { MaxDailyTimeAboveVigorous = jeli["MaxDailyTimeAboveVigorous"].FloatValue; } catch { }
265  try { VigorousWarningRaiseTime = jeli["VigorousWarningRaiseTime"].FloatValue; } catch { }
266  try { VigorousWarningDropTime = jeli["VigorousWarningDropTime"].FloatValue; } catch { }
267  try { WarmupDuration = jeli["WarmupDuration"].FloatValue; } catch { }
268  try { CooldownDuration = jeli["CooldownDuration"].FloatValue; } catch { }
269  try { NoRestrictions = jeli["NoRestrictions"].BoolValue; } catch { }
270  }
271 
272  public HeartTier GetHeartTier (float heartRate)
273  {
274  if (heartRate >= ExtremeHeartRate)
275  return HeartTier.Extreme;
276  else if (heartRate >= VigorousHeartRate)
277  return HeartTier.Vigorous;
278  else if (heartRate >= TargetHeartRate)
279  return HeartTier.Target;
280  else return HeartTier.Normal;
281  }
282 
283  public float CadenceCap
284  {
285  get
286  {
287  BalanceCondition balanceAlgorithm = GameClient.Instance.Config.Study.BalanceAlgorithm;
288 
289  if (balanceAlgorithm == BalanceCondition.GenericBalance)
290  return Mathf.Max(1, GenericBalanceCadenceCap);
291  else if (balanceAlgorithm == BalanceCondition.EffortBalance)
292  return Mathf.Max(1, EffortBalanceCadenceCap);
293  else
294  return 1;
295  }
296  }
297 }
298 
300 {
301  public DateTime LastTimePlayed = DateTime.Parse("2001/01/01");
302  public float TimePlayed = 0f;
303  public float TimePedaled = 0f;
304  public float TimeAboveTarget = 0f;
305  public float TimeAboveVigorous = 0f;
306 
307  public PlayerDailyStatistics (UJeli jeli)
308  {
309  try { LastTimePlayed = jeli["LastTimePlayed"].TimeValue; } catch { }
310  try { TimePlayed = jeli["TimePlayed"].FloatValue; } catch { }
311  try { TimePedaled = jeli["TimePedaled"].FloatValue; } catch { }
312  try { TimeAboveTarget = jeli["TimeAboveTarget"].FloatValue; } catch { }
313  try { TimeAboveVigorous = jeli["TimeAboveVigorous"].FloatValue; } catch { }
314  }
315 
316  public void Reset (DateTime now)
317  {
318  LastTimePlayed = now;
319  TimePlayed = 0f;
320  TimePedaled = 0f;
321  TimeAboveTarget = 0f;
322  TimeAboveVigorous = 0f;
323  }
324 
325  public bool AnyDailyLimitReached (PlayerHealthProfile healthProfile)
326  {
327  if (healthProfile.NoRestrictions)
328  return false;
329 
330  return TimePedaled >= healthProfile.MaxDailyTimePedaled ||
331  TimeAboveTarget >= healthProfile.MaxDailyTimeAboveTarget ||
332  TimeAboveVigorous >= healthProfile.MaxDailyTimeAboveVigorous;
333  }
334 }
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
Stores data related to the player profile. Loads from a World Data file and provides runtime operatio...
A visual representation of the player's libi count. PlayerProfile uses the Text property to update th...
A class for serializing game data into a stream for propagation between objects and peers...
Definition: GameMessage.cs:14
Main game client class.
Definition: GameClient.cs:16
Unity version of Jeli markup class.
Definition: UJeli.cs:10