Liberi
An exergame built for kids with CP!
DeviceManager.cs
1 using UnityEngine;
2 using System;
3 using System.Collections;
4 using System.Collections.Generic;
5 using System.Linq;
6 using System.Threading;
7 using System.Diagnostics;
8 using System.IO;
9 
13 public class DeviceManager : MonoBehaviour
14 {
18  public static DeviceManager Instance
19  {
20  get { return _instance; }
21  }
22 
26  public string[] DeviceIDs
27  {
28  get
29  {
30  var deviceIds = new List<string>();
31 
32  foreach (Transform t in transform)
33  {
34  deviceIds.Add(t.name);
35  }
36 
37  return deviceIds.ToArray();
38  }
39  }
40 
41  static DeviceManager _instance;
42 
43  void Awake ()
44  {
45  _instance = this;
46  }
47 
51  public bool IsDeviceEnabled (string deviceId)
52  {
53  Transform device = transform.FindChild(deviceId);
54 
55  if (device != null)
56  return device.gameObject.activeSelf;
57  else return false;
58  }
59 
63  public void EnableDevice (string deviceId)
64  {
65  Transform device = transform.FindChild(deviceId);
66 
67  if (device != null)
68  {
69  GameClient.Instance.Log("Enabled device: " + deviceId);
70  device.gameObject.SetActive(true);
71  }
72  }
73 
77  public void DisableDevice (string deviceId)
78  {
79  Transform device = transform.FindChild(deviceId);
80 
81  if (device != null)
82  {
83  GameClient.Instance.Log("Disabled device: " + deviceId);
84  device.gameObject.SetActive(false);
85  }
86  }
87 
91  public UJeli GetDeviceSaveOptions (string deviceId)
92  {
93  Transform deviceTransform = transform.FindChild(deviceId);
94 
95  if (deviceTransform != null)
96  {
97  Device device = deviceTransform.GetComponent<Device>();
98 
99  if (device != null)
100  {
101  return device.GetDeviceSaveOptions();
102  }
103  }
104 
105  return null;
106  }
107 
108  public Process FireAntProcess
109  {
110  get { return _fireAntProcess; }
111  }
112 
113  bool _readingAnt;
114  Process _fireAntProcess;
115 
116  public void ConfigureFireAnt ()
117  {
118  if (_fireAntProcess == null)
119  {
120  _fireAntProcess = new Process()
121  {
122  StartInfo = new ProcessStartInfo()
123  {
124  FileName = Path.GetFullPath("FireAnt/FireAnt.exe"),
125  WorkingDirectory = Path.GetFullPath("FireAnt"),
126  UseShellExecute = false,
127  RedirectStandardOutput = true,
128  CreateNoWindow = true,
129  }
130  };
131  }
132  }
133 
134  public void StartFireAnt ()
135  {
136  if (_readingAnt)
137  return;
138 
139  try
140  {
141  if (_fireAntProcess == null)
142  return;
143 
144  if (!_fireAntProcess.Start())
145  {
146  _fireAntProcess = null;
147  return;
148  }
149 
150  _fireAntProcess.BeginOutputReadLine();
151  }
152  catch (Exception e)
153  {
154  UnityEngine.Debug.LogException(e);
155  }
156 
157  _readingAnt = true;
158 
159  return;
160  }
161 
162  void OnDestroy ()
163  {
164  if (_fireAntProcess != null)
165  {
166  _fireAntProcess.Kill();
167  }
168  }
169 }
string[] DeviceIDs
Gets an array of the IDs of all registered devices.
virtual UJeli GetDeviceSaveOptions()
Returns a jeli containing all the custom options used by a device.
Definition: Device.cs:12
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.
void Log(string line)
Write one line to the client log. Log entries are automatically timestamped.
Definition: GameClient.cs:431
Abstract class to be extended by devices.
Definition: Device.cs:7
void DisableDevice(string deviceId)
Disables a device by ID.
void EnableDevice(string deviceId)
Enables a device by ID.
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
Unity version of Jeli markup class.
Definition: UJeli.cs:10