4 using System.Collections.Generic;
20 get {
return _instance; }
30 var deviceIds =
new List<string>();
32 foreach (Transform t
in transform)
34 deviceIds.Add(t.name);
37 return deviceIds.ToArray();
53 Transform device = transform.FindChild(deviceId);
56 return device.gameObject.activeSelf;
65 Transform device = transform.FindChild(deviceId);
70 device.gameObject.SetActive(
true);
79 Transform device = transform.FindChild(deviceId);
84 device.gameObject.SetActive(
false);
93 Transform deviceTransform = transform.FindChild(deviceId);
95 if (deviceTransform != null)
108 public Process FireAntProcess
110 get {
return _fireAntProcess; }
114 Process _fireAntProcess;
116 public void ConfigureFireAnt ()
118 if (_fireAntProcess == null)
120 _fireAntProcess =
new Process()
122 StartInfo =
new ProcessStartInfo()
124 FileName = Path.GetFullPath(
"FireAnt/FireAnt.exe"),
125 WorkingDirectory = Path.GetFullPath(
"FireAnt"),
126 UseShellExecute =
false,
127 RedirectStandardOutput =
true,
128 CreateNoWindow =
true,
134 public void StartFireAnt ()
141 if (_fireAntProcess == null)
144 if (!_fireAntProcess.Start())
146 _fireAntProcess = null;
150 _fireAntProcess.BeginOutputReadLine();
164 if (_fireAntProcess != null)
166 _fireAntProcess.Kill();
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.
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.
Abstract class to be extended by devices.
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.
Unity version of Jeli markup class.