Liberi
An exergame built for kids with CP!
ClientConfig.cs
1 using UnityEngine;
2 using System;
3 using System.Collections;
4 using System.Collections.Generic;
5 using System.IO;
6 using System.Runtime.Serialization.Formatters.Binary;
7 using System.Linq;
8 using Lidgren.Network;
9 
13 [Serializable]
14 public class ClientConfig
15 {
16  public ClientVideoConfig Video = new ClientVideoConfig();
17  public ClientAudioConfig Audio = new ClientAudioConfig();
19  public ClientNetworkConfig Network = new ClientNetworkConfig();
20  public ClientUIConfig UI = new ClientUIConfig();
22  public ClientDevicesConfig Devices = new ClientDevicesConfig();
23 
24  public void Load ()
25  {
26  try { Video.Load(); }
27  catch { Video.Save(); }
28  try { Controls.Load(); }
29  catch { Controls.Save(); }
30  try { Network.Load(); }
31  catch { Network.Save(); }
32  try { UI.Load(); }
33  catch { UI.Save(); }
34  try { Devices.Load(); }
35  catch { Devices.Save(); }
36  try { Study.Load(); }
37  catch { Study.Save(); }
38  }
39 
40  public void Save ()
41  {
42  Video.Save();
43  Audio.Save();
44  Controls.Save();
45  UI.Save();
46  Devices.Save();
47  Study.Save();
48  }
49 
50  public ClientConfig Clone ()
51  {
52  using (var ms = new MemoryStream())
53  {
54  var formatter = new BinaryFormatter();
55  formatter.Serialize(ms, this);
56  ms.Position = 0;
57 
58  return (ClientConfig)formatter.Deserialize(ms);
59  }
60  }
61 }
62 
66 [Serializable]
67 public class ClientVideoConfig
68 {
69  public int Width = 1280;
70  public int Height = 720;
71  public bool FullScreen = false;
72 
73  public void Load ()
74  {
75  UJeli configJeli = UJeli.Load(GameClient.Instance.ConfigBase + "Video.ini");
76 
77  if (configJeli == null)
78  {
79  Save();
80  return;
81  }
82 
83  Width = configJeli["Width"].IntValue;
84  Height = configJeli["Height"].IntValue;
85  FullScreen = configJeli["FullScreen"].BoolValue;
86  }
87 
88  public void Save ()
89  {
90  UJeli configJeli = new UJeli();
91 
92  configJeli.AddChild("Width", Width);
93  configJeli.AddChild("Height", Height);
94  configJeli.AddChild("FullScreen", FullScreen);
95 
96  configJeli.Save(GameClient.Instance.ConfigBase + "Video.ini");
97  }
98 }
99 
103 [Serializable]
104 public class ClientAudioConfig
105 {
106  public float MasterVolume = 1f;
107 
108  public void Load ()
109  {
110  UJeli configJeli = UJeli.Load(GameClient.Instance.ConfigBase + "Audio.ini");
111 
112  if (configJeli == null)
113  {
114  Save();
115  return;
116  }
117 
118  MasterVolume = configJeli["MasterVolume"].FloatValue;
119  }
120 
121  public void Save ()
122  {
123  UJeli configJeli = new UJeli();
124 
125  configJeli.AddChild("MasterVolume", MasterVolume);
126 
127  configJeli.Save(GameClient.Instance.ConfigBase + "Audio.ini");
128  }
129 }
130 
134 [Serializable]
136 {
137  public KeyCode ToggleFullScreen = KeyCode.F11;
138  public KeyCode TakeScreenshot = KeyCode.F12;
139 
140  public void Load ()
141  {
142  UJeli configJeli = UJeli.Load(GameClient.Instance.ConfigBase + "Controls.ini");
143 
144  if (configJeli == null)
145  {
146  Save();
147  return;
148  }
149 
150  ToggleFullScreen = configJeli["ToggleFullScreen"].GetEnumValue<KeyCode>();
151  TakeScreenshot = configJeli["TakeScreenshot"].GetEnumValue<KeyCode>();
152  }
153 
154  public void Save ()
155  {
156  UJeli configJeli = new UJeli();
157 
158  configJeli.AddChild("ToggleFullScreen", ToggleFullScreen);
159  configJeli.AddChild("TakeScreenshot", TakeScreenshot);
160 
161  configJeli.Save(GameClient.Instance.ConfigBase + "Controls.ini");
162  }
163 }
164 
168 [Serializable]
170 {
171  public string PlayerID = "guest";
172  public string WorldID = "localhost";
173 
174  public void Load ()
175  {
176  UJeli configJeli = UJeli.Load(GameClient.Instance.ConfigBase + "Network.ini");
177 
178  if (configJeli == null)
179  {
180  Save();
181  return;
182  }
183 
184  PlayerID = configJeli["PlayerID"].Value;
185  WorldID = configJeli["WorldID"].Value;
186  }
187 
188  public void Save ()
189  {
190  UJeli configJeli = new UJeli();
191 
192  configJeli.AddChild("PlayerID", PlayerID);
193  configJeli.AddChild("WorldID", WorldID);
194 
195  configJeli.Save(GameClient.Instance.ConfigBase + "Network.ini");
196  }
197 }
198 
202 [Serializable]
203 public class ClientUIConfig
204 {
205  public SystemLanguage Language = SystemLanguage.English;
206 
207  public void Load ()
208  {
209  UJeli configJeli = UJeli.Load(GameClient.Instance.ConfigBase + "UI.ini");
210 
211  if (configJeli == null)
212  {
213  Save();
214  return;
215  }
216 
217  Language = configJeli["Language"].GetEnumValue<SystemLanguage>();
218  }
219 
220  public void Save ()
221  {
222  UJeli configJeli = new UJeli();
223 
224  configJeli.AddChild("Language", Language);
225 
226  configJeli.Save(GameClient.Instance.ConfigBase + "UI.ini");
227  }
228 }
229 
233 [Serializable]
234 public class ClientStudyConfig
235 {
236  public bool LoggingEnabled = true;
237  public string[] LogPaths = new string[]
238  {
239  "Study Logs/<p>_<d>_<t>.dat"
240  };
241 
242  public BalanceCondition BalanceAlgorithm = BalanceCondition.GenericBalance;
243 
244  public void Load ()
245  {
246  UJeli configJeli = UJeli.Load(GameClient.Instance.ConfigBase + "Study.ini");
247 
248  if (configJeli == null)
249  {
250  Save();
251  return;
252  }
253 
254  LoggingEnabled = configJeli["LoggingEnabled"].BoolValue;
255  LogPaths = configJeli["LogPaths"].ChildValues;
256  BalanceAlgorithm = configJeli["BalanceAlgorithm"].GetEnumValue<BalanceCondition>();
257  }
258 
259  public void Save ()
260  {
261  UJeli configJeli = new UJeli();
262 
263  configJeli.AddChild("LoggingEnabled", LoggingEnabled);
264 
265  UJeli logPathsJeli = configJeli.AddChild("LogPaths");
266 
267  foreach (string path in LogPaths)
268  {
269  logPathsJeli.AddChild("LogPath", path);
270  }
271 
272  configJeli.AddChild("BalanceAlgorithm", BalanceAlgorithm);
273 
274  configJeli.Save(GameClient.Instance.ConfigBase + "Study.ini");
275  }
276 }
277 
281 [Serializable]
283 {
284  public Dictionary<string, bool> States = new Dictionary<string, bool>();
285  public Dictionary<string, UJeli> Options = new Dictionary<string, UJeli>();
286 
287  public void Load ()
288  {
289  foreach (var deviceId in DeviceManager.Instance.DeviceIDs)
290  {
291  States[deviceId] = DeviceManager.Instance.IsDeviceEnabled(deviceId);
292  }
293 
294  UJeli configJeli = UJeli.Load(GameClient.Instance.ConfigBase + "Devices.ini");
295 
296  if (configJeli == null)
297  {
298  Save();
299  return;
300  }
301 
302  try
303  {
304  States = configJeli.GetChildDictionary<string, bool>(s => s, s => bool.Parse(s));
305 
306  foreach (var state in States)
307  {
308  configJeli[state.Key].HasChild("options");
309 
310  if (configJeli[state.Key].HasChild("options"))
311  Options.Add(state.Key, configJeli[state.Key]["options"]);
312  }
313  }
314  catch { Save(); }
315  }
316 
317  public void Save ()
318  {
319  UJeli configJeli = new UJeli();
320 
321  foreach (var deviceState in States)
322  {
323  configJeli.AddChild(deviceState.Key, deviceState.Value);
324 
325  UJeli optionsJeli = DeviceManager.Instance.GetDeviceSaveOptions(deviceState.Key);
326 
327  if (optionsJeli != null)
328  {
329  optionsJeli.Name = "options";
330  configJeli[deviceState.Key].AddChild(optionsJeli);
331  }
332  }
333 
334  configJeli.Save(GameClient.Instance.ConfigBase + "Devices.ini");
335  }
336 }
Network configuration class for game client.
string[] DeviceIDs
Gets an array of the IDs of all registered devices.
UI configuration class for game client.
Study configuration class for game client.
bool IsDeviceEnabled(string deviceId)
Checks if the device with the given ID is enabled.
UJeli GetDeviceSaveOptions(string deviceId)
Returns the relevant save option jeli of a device by ID.
static DeviceManager Instance
Gets the sole instance of the device manager.
Audio configuration class for game client.
Controls configuration class for game client.
Configuration class for game client.
Definition: ClientConfig.cs:14
Devices configuration class for game client.
string ConfigBase
Gets the base path for configuration files.
Definition: GameClient.cs:144
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
Class for managing study-related game components.
Definition: Study.cs:13
Video configuration class for game client.
Definition: ClientConfig.cs:67
Unity version of Jeli markup class.
Definition: UJeli.cs:10
Controls class. Allows for controls queries and controls injection from devices.
Definition: Controls.cs:41