4 using System.Collections.Generic;
6 using System.Runtime.Serialization.Formatters.Binary;
27 catch { Video.Save(); }
28 try { Controls.Load(); }
29 catch { Controls.Save(); }
30 try { Network.Load(); }
31 catch { Network.Save(); }
34 try { Devices.Load(); }
35 catch { Devices.Save(); }
37 catch { Study.Save(); }
52 using (var ms =
new MemoryStream())
54 var formatter =
new BinaryFormatter();
55 formatter.Serialize(ms,
this);
69 public int Width = 1280;
70 public int Height = 720;
71 public bool FullScreen =
false;
77 if (configJeli == null)
83 Width = configJeli[
"Width"].IntValue;
84 Height = configJeli[
"Height"].IntValue;
85 FullScreen = configJeli[
"FullScreen"].BoolValue;
92 configJeli.AddChild(
"Width", Width);
93 configJeli.AddChild(
"Height", Height);
94 configJeli.AddChild(
"FullScreen", FullScreen);
106 public float MasterVolume = 1f;
112 if (configJeli == null)
118 MasterVolume = configJeli[
"MasterVolume"].FloatValue;
125 configJeli.AddChild(
"MasterVolume", MasterVolume);
137 public KeyCode ToggleFullScreen = KeyCode.F11;
138 public KeyCode TakeScreenshot = KeyCode.F12;
144 if (configJeli == null)
150 ToggleFullScreen = configJeli[
"ToggleFullScreen"].GetEnumValue<KeyCode>();
151 TakeScreenshot = configJeli[
"TakeScreenshot"].GetEnumValue<KeyCode>();
158 configJeli.AddChild(
"ToggleFullScreen", ToggleFullScreen);
159 configJeli.AddChild(
"TakeScreenshot", TakeScreenshot);
171 public string PlayerID =
"guest";
172 public string WorldID =
"localhost";
178 if (configJeli == null)
184 PlayerID = configJeli[
"PlayerID"].Value;
185 WorldID = configJeli[
"WorldID"].Value;
192 configJeli.AddChild(
"PlayerID", PlayerID);
193 configJeli.AddChild(
"WorldID", WorldID);
205 public SystemLanguage Language = SystemLanguage.English;
211 if (configJeli == null)
217 Language = configJeli[
"Language"].GetEnumValue<SystemLanguage>();
224 configJeli.AddChild(
"Language", Language);
236 public bool LoggingEnabled =
true;
237 public string[] LogPaths =
new string[]
239 "Study Logs/<p>_<d>_<t>.dat"
242 public BalanceCondition BalanceAlgorithm = BalanceCondition.GenericBalance;
248 if (configJeli == null)
254 LoggingEnabled = configJeli[
"LoggingEnabled"].BoolValue;
255 LogPaths = configJeli[
"LogPaths"].ChildValues;
256 BalanceAlgorithm = configJeli[
"BalanceAlgorithm"].GetEnumValue<BalanceCondition>();
263 configJeli.AddChild(
"LoggingEnabled", LoggingEnabled);
265 UJeli logPathsJeli = configJeli.AddChild(
"LogPaths");
267 foreach (
string path
in LogPaths)
269 logPathsJeli.AddChild(
"LogPath", path);
272 configJeli.AddChild(
"BalanceAlgorithm", BalanceAlgorithm);
284 public Dictionary<string, bool> States =
new Dictionary<string, bool>();
285 public Dictionary<string, UJeli> Options =
new Dictionary<string, UJeli>();
296 if (configJeli == null)
304 States = configJeli.GetChildDictionary<string,
bool>(s => s, s =>
bool.Parse(s));
306 foreach (var state
in States)
308 configJeli[state.Key].HasChild(
"options");
310 if (configJeli[state.Key].HasChild(
"options"))
311 Options.Add(state.Key, configJeli[state.Key][
"options"]);
321 foreach (var deviceState
in States)
323 configJeli.AddChild(deviceState.Key, deviceState.Value);
327 if (optionsJeli != null)
329 optionsJeli.Name =
"options";
330 configJeli[deviceState.Key].AddChild(optionsJeli);
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.
Devices configuration class for game client.
string ConfigBase
Gets the base path for configuration files.
static GameClient Instance
Gets the sole instance of the game client.
Class for managing study-related game components.
Video configuration class for game client.
Unity version of Jeli markup class.
Controls class. Allows for controls queries and controls injection from devices.