-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathRootHub.cs
554 lines (426 loc) · 18.3 KB
/
RootHub.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
using System;
using System.ComponentModel;
using System.Text;
using System.Net;
using System.Net.Sockets;
using System.Threading;
using System.Management;
using System.Text.RegularExpressions;
using System.Reflection;
namespace ScpControl
{
public partial class RootHub : ScpHub
{
public class Cache
{
protected Byte[] m_Report = new Byte[BusDevice.ReportSize];
protected Byte[] m_Rumble = new Byte[BusDevice.RumbleSize];
protected Byte[] m_Mapped = new Byte[ReportEventArgs.Length];
public Byte[] Report
{
get { return m_Report; }
}
public Byte[] Rumble
{
get { return m_Rumble; }
}
public Byte[] Mapped
{
get { return m_Mapped; }
}
}
public Cache[] m_Cache = { new Cache(), new Cache(), new Cache(), new Cache() };
protected volatile Boolean m_Suspended = false;
protected BthHub bthHub = new BthHub();
protected UsbHub usbHub = new UsbHub();
protected BusDevice scpBus = new BusDevice();
protected Byte[][] m_XInput = { new Byte[2] { 0, 0 }, new Byte[2] { 0, 0 }, new Byte[2] { 0, 0 }, new Byte[2] { 0, 0 }};
protected Byte[][] m_Native = { new Byte[2] { 0, 0 }, new Byte[2] { 0, 0 }, new Byte[2] { 0, 0 }, new Byte[2] { 0, 0 }};
protected IDsDevice[] m_Pad = { new DsNull(DsPadId.One), new DsNull(DsPadId.Two), new DsNull(DsPadId.Three), new DsNull(DsPadId.Four) };
protected String[] m_Reserved = new String[] { String.Empty, String.Empty, String.Empty, String.Empty };
protected IPEndPoint m_ServerEp = new IPEndPoint(IPAddress.Loopback, 26760);
protected UdpClient m_Server = new UdpClient();
protected IPEndPoint m_ClientEp = new IPEndPoint(IPAddress.Loopback, 26761);
protected UdpClient m_Client = new UdpClient();
public IDsDevice[] Pad
{
get { return m_Pad; }
}
public String Dongle
{
get { return bthHub.Dongle; }
}
public String Master
{
get { return bthHub.Master; }
}
public Boolean Pairable
{
get { return m_Started && bthHub.Pairable; }
}
public RootHub()
{
InitializeComponent();
//scpMap.Debug += new EventHandler<DebugEventArgs>(On_Debug);
bthHub.Debug += new EventHandler<DebugEventArgs>(On_Debug);
usbHub.Debug += new EventHandler<DebugEventArgs>(On_Debug);
//scpBus.Debug += new EventHandler<DebugEventArgs>(On_Debug);
bthHub.Arrival += new EventHandler<ArrivalEventArgs>(On_Arrival);
usbHub.Arrival += new EventHandler<ArrivalEventArgs>(On_Arrival);
bthHub.Report += new EventHandler<ReportEventArgs>(On_Report);
usbHub.Report += new EventHandler<ReportEventArgs>(On_Report);
}
public RootHub(IContainer container)
{
container.Add(this);
InitializeComponent();
//scpMap.Debug += new EventHandler<DebugEventArgs>(On_Debug);
bthHub.Debug += new EventHandler<DebugEventArgs>(On_Debug);
usbHub.Debug += new EventHandler<DebugEventArgs>(On_Debug);
//scpBus.Debug += new EventHandler<DebugEventArgs>(On_Debug);
bthHub.Arrival += new EventHandler<ArrivalEventArgs>(On_Arrival);
usbHub.Arrival += new EventHandler<ArrivalEventArgs>(On_Arrival);
bthHub.Report += new EventHandler<ReportEventArgs>(On_Report);
usbHub.Report += new EventHandler<ReportEventArgs>(On_Report);
}
public override Boolean Open()
{
bool Opened = false;
LogDebug(String.Format("++ {0} {1}", Assembly.GetExecutingAssembly().Location, Assembly.GetExecutingAssembly().GetName().Version.ToString()));
LogDebug(String.Format("++ {0}", OSInfo()));
scpMap.Open();
//Opened |= scpBus.Open(Global.Bus);
Opened |= usbHub.Open();
Opened |= bthHub.Open();
//Global.Load();
return Opened;
}
public override Boolean Start()
{
if (!m_Started)
{
//scpMap.Start();
//m_Started |= scpBus.Start();
m_Started |= usbHub.Start();
m_Started |= bthHub.Start();
if (m_Started) UDP_Worker.RunWorkerAsync();
}
return m_Started;
}
public override Boolean Stop()
{
if (m_Started)
{
m_Started = false;
m_Server.Close();
//scpMap.Stop();
//scpBus.Stop();
usbHub.Stop();
bthHub.Stop();
}
return !m_Started;
}
public override Boolean Close()
{
if (m_Started)
{
m_Started = false;
m_Server.Close();
//scpMap.Close();
//scpBus.Close();
usbHub.Close();
bthHub.Close();
}
//Global.Save();
return !m_Started;
}
public override Boolean Suspend()
{
m_Suspended = true;
//for (Int32 Index = 0; Index < m_Pad.Length; Index++) m_Pad[Index].Disconnect();
//scpBus.Suspend();
usbHub.Suspend();
bthHub.Suspend();
LogDebug("++ Suspended");
return true;
}
public override Boolean Resume()
{
LogDebug("++ Resumed");
//scpBus.Resume();
//for (Int32 Index = 0; Index < m_Pad.Length; Index++)
//{
// if (m_Pad[Index].State != DsState.Disconnected)
// {
// scpBus.Plugin(Index + 1);
// }
//}
usbHub.Resume();
bthHub.Resume();
m_Suspended = false;
return true;
}
public override DsPadId Notify(ScpDevice.Notified Notification, String Class, String Path)
{
if (!m_Suspended)
{
if (Class == UsbDs3.USB_CLASS_GUID)
{
return usbHub.Notify(Notification, Class, Path);
}
if (Class == BthDongle.BTH_CLASS_GUID)
{
bthHub.Notify(Notification, Class, Path);
}
}
return DsPadId.None;
}
protected virtual void UDP_Worker_Thread(object sender, DoWorkEventArgs e)
{
Byte Serial;
StringBuilder sb = new StringBuilder();
Thread.Sleep(1);
IPEndPoint Remote = new IPEndPoint(IPAddress.Loopback, 0);
m_Server = new UdpClient(m_ServerEp);
LogDebug("-- Controller : UDP_Worker_Thread Starting");
while (m_Started)
{
try
{
Byte[] Buffer = m_Server.Receive(ref Remote);
switch (Buffer[1])
{
case 0x00: // Status Request
if (!Global.DisableNative)
{
Buffer[2] = (Byte)Pad[0].State;
Buffer[3] = (Byte)Pad[1].State;
Buffer[4] = (Byte)Pad[2].State;
Buffer[5] = (Byte)Pad[3].State;
}
else
{
Buffer[2] = 0;
Buffer[3] = 0;
Buffer[4] = 0;
Buffer[5] = 0;
}
m_Server.Send(Buffer, Buffer.Length, Remote);
break;
case 0x01: // Rumble Request
Serial = Buffer[0];
if (Pad[Serial].State == DsState.Connected)
{
if (Buffer[2] != m_Native[Serial][0] || Buffer[3] != m_Native[Serial][1])
{
m_Native[Serial][0] = Buffer[2];
m_Native[Serial][1] = Buffer[3];
Pad[Buffer[0]].Rumble(Buffer[2], Buffer[3]);
}
}
break;
case 0x02: // Status Data Request
{
sb.Clear();
sb.Append(Dongle); sb.Append('^');
sb.Append(Pad[0].ToString()); sb.Append('^');
sb.Append(Pad[1].ToString()); sb.Append('^');
sb.Append(Pad[2].ToString()); sb.Append('^');
sb.Append(Pad[3].ToString()); sb.Append('^');
Byte[] Data = Encoding.Unicode.GetBytes(sb.ToString());
m_Server.Send(Data, Data.Length, Remote);
}
break;
case 0x03: // Config Read Request
{
Byte[] Data = Global.Packed;
m_Server.Send(Data, Data.Length, Remote);
}
break;
case 0x04: // Config Write Request
{
Global.Packed = Buffer;
}
break;
case 0x05: // Pad Promote Request
{
Int32 Target = Buffer[2];
lock (this)
{
if (Pad[Target].State != DsState.Disconnected)
{
IDsDevice Swap = Pad[Target];
Pad[Target] = Pad[Target - 1];
Pad[Target - 1] = Swap;
Pad[Target].PadId = (DsPadId)(Target);
Pad[Target - 1].PadId = (DsPadId)(Target - 1);
m_Reserved[Target] = Pad[Target].Local;
m_Reserved[Target - 1] = Pad[Target - 1].Local;
}
}
}
break;
case 0x06: // Profile List
{
sb.Clear();
sb.Append(scpMap.Active); sb.Append('^');
foreach (String Profile in scpMap.Profiles)
{
sb.Append(Profile); sb.Append('^');
}
Byte[] Data = Encoding.Unicode.GetBytes(sb.ToString());
m_Server.Send(Data, Data.Length, Remote);
}
break;
case 0x07: // Set Active Profile
{
Byte[] Data = new Byte[Buffer.Length - 2];
Array.Copy(Buffer, 2, Data, 0, Data.Length);
scpMap.Active = Encoding.Unicode.GetString(Data);
}
break;
case 0x08: // Get XML
{
//Byte[] Data = Encoding.UTF8.GetBytes("");//TODO: clean this up
//m_Server.Send(Data, Data.Length, Remote);
}
break;
case 0x09: // Set XML
{
//Byte[] Data = new Byte[Buffer.Length - 2];
//Array.Copy(Buffer, 2, Data, 0, Data.Length);
//scpMap.Xml = Encoding.UTF8.GetString(Data);
}
break;
case 0x0A: // Pad Detail
{
Serial = Buffer[0];
Byte[] Data = new Byte[11];
Byte[] Temp = Encoding.Unicode.GetBytes(m_Pad[Serial].Local);
Data[0] = Serial;
Data[1] = (Byte) m_Pad[Serial].State;
Data[2] = (Byte) m_Pad[Serial].Model;
Data[3] = (Byte) m_Pad[Serial].Connection;
Data[4] = (Byte) m_Pad[Serial].Battery;
Array.Copy(m_Pad[Serial].BD_Address, 0, Data, 5, m_Pad[Serial].BD_Address.Length);
m_Server.Send(Data, Data.Length, Remote);
}
break;
}
}
catch { }
}
LogDebug("-- Controller : UDP_Worker_Thread Exiting");
}
protected override void On_Arrival(object sender, ArrivalEventArgs e)
{
lock (this)
{
Boolean bFound = false;
IDsDevice Arrived = e.Device;
for (Int32 Index = 0; Index < m_Pad.Length && !bFound; Index++)
{
if (Arrived.Local == m_Reserved[Index])
{
if (m_Pad[Index].State == DsState.Connected)
{
if (m_Pad[Index].Connection == DsConnection.BTH)
{
m_Pad[Index].Disconnect();
}
if (m_Pad[Index].Connection == DsConnection.USB)
{
Arrived.Disconnect();
e.Handled = false;
return;
}
}
bFound = true;
Arrived.PadId = (DsPadId) Index;
m_Pad[Index] = Arrived;
}
}
for (Int32 Index = 0; Index < m_Pad.Length && !bFound; Index++)
{
if (m_Pad[Index].State == DsState.Disconnected)
{
bFound = true;
m_Reserved[Index] = Arrived.Local;
Arrived.PadId = (DsPadId) Index;
m_Pad[Index] = Arrived;
}
}
if (bFound)
{
scpBus.Plugin((int) Arrived.PadId + 1);
LogDebug(String.Format("++ Plugin Port #{0} for [{1}]", (int) Arrived.PadId + 1, Arrived.Local));
}
e.Handled = bFound;
}
}
protected override void On_Report(object sender, ReportEventArgs e)
{
Int32 Serial = e.Report[(Int32) DsOffset.Pad];
DsModel Model = (DsModel) e.Report[(Int32) DsOffset.Model];
Byte[] Report = m_Cache[Serial].Report;
Byte[] Rumble = m_Cache[Serial].Rumble;
Byte[] Mapped = m_Cache[Serial].Mapped;
if (scpMap.Remap(Model, Serial, m_Pad[Serial].Local, e.Report, Mapped))
{
scpBus.Parse(Mapped, Report, Model);
}
else
{
scpBus.Parse(e.Report, Report, Model);
}
if (scpBus.Report(Report, Rumble) && (DsState) e.Report[1] == DsState.Connected)
{
Byte Large = (Byte)(Rumble[3]);
Byte Small = (Byte)(Rumble[4]);
if (Rumble[1] == 0x08 && (Large != m_XInput[Serial][0] || Small != m_XInput[Serial][1]))
{
m_XInput[Serial][0] = Large;
m_XInput[Serial][1] = Small;
Pad[Serial].Rumble(Large, Small);
}
}
if ((DsState) e.Report[1] != DsState.Connected)
{
m_XInput[Serial][0] = m_XInput[Serial][1] = 0;
m_Native[Serial][0] = m_Native[Serial][1] = 0;
}
if (!Global.DisableNative) m_Client.Send(e.Report, e.Report.Length, m_ClientEp);
}
protected String OSInfo()
{
String Info = String.Empty;
try
{
using (ManagementObjectSearcher mos = new ManagementObjectSearcher("SELECT * FROM Win32_OperatingSystem"))
{
foreach (ManagementObject mo in mos.Get())
{
try
{
Info = Regex.Replace(mo.GetPropertyValue("Caption").ToString(), "[^A-Za-z0-9 ]", "").Trim();
try
{
Object spv = mo.GetPropertyValue("ServicePackMajorVersion");
if (spv != null && spv.ToString() != "0")
{
Info += " Service Pack " + spv.ToString();
}
}
catch { }
Info = String.Format("{0} ({1} {2})", Info, System.Environment.OSVersion.Version.ToString(), System.Environment.GetEnvironmentVariable("PROCESSOR_ARCHITECTURE"));
}
catch { }
mo.Dispose();
}
}
}
catch { }
return Info;
}
}
}