-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathDs3Plugin.cs
175 lines (149 loc) · 6.92 KB
/
Ds3Plugin.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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using ScpControl;
using ODIF;
using System.Collections.ObjectModel;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Management;
using ODIF.Extensions;
using System.Threading;
namespace ScpControl
{
[PluginInfo(
PluginName = "DS3 Device",
PluginDescription = "Detects DS3 devices using Scarlet Crush's custom DS3 driver.",
PluginID = 40,
PluginAuthorName = "Scarlet Crush, Input Mapper",
PluginAuthorEmail = "a",
PluginAuthorURL = "a",
PluginIconPath = @"pack://application:,,,/ScpControl;component/Resources/128.png"
)]
public class Ds3Plugin:InputDevicePlugin
{
ScpControl.RootHub rootHub = new RootHub();
public Ds3Plugin()
{
rootHub.Open();
rootHub.Start();
ODIF.Global.DeviceAdded += Global_DeviceAdded;
ODIF.Global.DeviceRemoved += Global_DeviceRemoved;
DetectDevices();
}
private void Global_DeviceRemoved(object sender, EventArrivedEventArgs e)
{
var instance = ((PropertyData)(e.NewEvent.Properties["TargetInstance"]));
var obj = (ManagementBaseObject)instance.Value;
string guid = "{E2824A09-DBAA-4407-85CA-C8E8FF5F6FFA}";
string devid = @"\\?\" + obj.Properties["DeviceID"].Value.ToString().Replace("\\", "#") + "#" + guid;
rootHub.Notify(ScpDevice.Notified.Removal, guid, devid);
DetectDevices();
}
private void Global_DeviceAdded(object sender, EventArrivedEventArgs e)
{
var instance = ((PropertyData)(e.NewEvent.Properties["TargetInstance"]));
var obj = (ManagementBaseObject)instance.Value;
string guid = "{E2824A09-DBAA-4407-85CA-C8E8FF5F6FFA}";
string devid = @"\\?\" + obj.Properties["DeviceID"].Value.ToString().Replace("\\", "#") + "#" + guid;
rootHub.Notify(ScpDevice.Notified.Arrival, guid, devid);
DetectDevices();
}
internal void DetectDevices()
{
for (int i = 0; i <= 3; i++)
{
if (rootHub.Pad[i].State == DsState.Connected && this.Devices.Where(d => (d as ScDs3Device).deviceNum == i).Count() == 0)
Devices.Add(new ScDs3Device(i, rootHub));
if (rootHub.Pad[i].State != DsState.Connected && this.Devices.Where(d => (d as ScDs3Device).deviceNum == i).Count() > 0)
Devices.Remove(this.Devices.Where(d => (d as ScDs3Device).deviceNum == i).First());
}
}
protected override void Dispose(bool disposing)
{
rootHub.Stop();
base.Dispose(disposing);
}
}
public class ScDs3Device : InputDevice
{
internal int deviceNum;
internal DS3Device deviceClass = new DS3Device();
internal RootHub rootHub;
public ScDs3Device(int deviceNum,RootHub rootHub)
{
this.rootHub = rootHub;
this.deviceNum = deviceNum;
this.DeviceName = "Dualshock 3 controller " + deviceNum + 1;
this.StatusIcon = Properties.Resources._128.ToImageSource();
InputChannels.Add(deviceClass.Circle);
InputChannels.Add(deviceClass.Cross);
InputChannels.Add(deviceClass.Square);
InputChannels.Add(deviceClass.Triangle);
InputChannels.Add(deviceClass.vCircle);
InputChannels.Add(deviceClass.vCross);
InputChannels.Add(deviceClass.vSquare);
InputChannels.Add(deviceClass.vTriangle);
InputChannels.Add(deviceClass.LSx);
InputChannels.Add(deviceClass.LSy);
InputChannels.Add(deviceClass.RSx);
InputChannels.Add(deviceClass.RSy);
InputChannels.Add(deviceClass.L1);
InputChannels.Add(deviceClass.L2);
InputChannels.Add(deviceClass.L3);
InputChannels.Add(deviceClass.R1);
InputChannels.Add(deviceClass.R2);
InputChannels.Add(deviceClass.R3);
InputChannels.Add(deviceClass.PS);
InputChannels.Add(deviceClass.Select);
InputChannels.Add(deviceClass.Start);
InputChannels.Add(deviceClass.DUp);
InputChannels.Add(deviceClass.DDown);
InputChannels.Add(deviceClass.DLeft);
InputChannels.Add(deviceClass.DRight);
OutputChannels.Add(deviceClass.BigRumble);
OutputChannels.Add(deviceClass.SmallRumble);
OutputChannels.Add(deviceClass.LightBar);
(rootHub.Pad[deviceNum] as UsbDevice).Report += RootHub_USBReport;
}
private void RootHub_USBReport(object sender, ReportEventArgs e)
{
//if ((sender as UsbDevice).PadId != (DsPadId)deviceNum)
// return;
deviceClass.Cross.Value = ((byte)e.Report[11] & (1 << 6)) != 0;
deviceClass.Circle.Value = ((byte)e.Report[11] & (1 << 5)) != 0;
deviceClass.Square.Value = ((byte)e.Report[11] & (1 << 7)) != 0;
deviceClass.Triangle.Value = ((byte)e.Report[11] & (1 << 4)) != 0;
deviceClass.L1.Value = ((byte)e.Report[11] & (1 << 2)) != 0;
deviceClass.R1.Value = ((byte)e.Report[11] & (1 << 3)) != 0;
deviceClass.L3.Value = ((byte)e.Report[10] & (1 << 1)) != 0;
deviceClass.R3.Value = ((byte)e.Report[10] & (1 << 2)) != 0;
deviceClass.DUp.Value = ((byte)e.Report[10] & (1 << 4)) != 0;
deviceClass.DDown.Value = ((byte)e.Report[10] & (1 << 6)) != 0;
deviceClass.DLeft.Value = ((byte)e.Report[10] & (1 << 7)) != 0;
deviceClass.DRight.Value = ((byte)e.Report[10] & (1 << 5)) != 0;
deviceClass.L2.Value = e.Report[26] / 255f;
deviceClass.R2.Value = e.Report[27] / 255f;
deviceClass.LSx.Value = SafeStickValue(e.Report[14] - 127) / 127f;
deviceClass.LSy.Value = SafeStickValue(e.Report[15] - 127) / 127f;
deviceClass.RSx.Value = SafeStickValue(e.Report[16] - 127) / 127f;
deviceClass.RSy.Value = SafeStickValue(e.Report[17] - 127) / 127f;
deviceClass.Select.Value = ((byte)e.Report[10] & (1 << 0)) != 0;
deviceClass.Start.Value = ((byte)e.Report[10] & (1 << 3)) != 0;
deviceClass.PS.Value = ((byte)e.Report[12] & (1 << 0)) != 0;
deviceClass.vCross.Value = e.Report[32] / 255f;
deviceClass.vCircle.Value = e.Report[31] / 255f;
deviceClass.vSquare.Value = e.Report[33] / 255f;
deviceClass.vTriangle.Value = e.Report[30] / 255f;
//Console.WriteLine(String.Join(" ", e.Report));
}
private int SafeStickValue(int value)
{
value = value > 127 ? 127 : value;
value = value < -127 ? -127 : value;
return value;
}
}
}