-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathNativeMethods.cs
146 lines (124 loc) · 4.95 KB
/
NativeMethods.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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.InteropServices;
using System.Text;
using System.Threading.Tasks;
namespace ViGEm_360
{
public enum VigemTargetType
{
Xbox360Wired,
XboxOneWired,
DualShock4Wired
}
internal static partial class ViGemUm
{
#region Enums
public enum VigemError : uint
{
VIGEM_ERROR_NONE = 0x20000000,
VIGEM_ERROR_BUS_NOT_FOUND = 0xE0000001,
VIGEM_ERROR_NO_FREE_SLOT = 0xE0000002,
VIGEM_ERROR_INVALID_TARGET = 0xE0000003,
VIGEM_ERROR_REMOVAL_FAILED = 0xE0000004,
VIGEM_ERROR_ALREADY_CONNECTED = 0xE0000005,
VIGEM_ERROR_TARGET_UNINITIALIZED = 0xE0000006,
VIGEM_ERROR_TARGET_NOT_PLUGGED_IN = 0xE0000007,
VIGEM_ERROR_BUS_VERSION_MISMATCH = 0xE0000008,
VIGEM_ERROR_BUS_ACCESS_FAILED = 0xE0000009
}
public enum VigemTargetState
{
VigemTargetNew,
VigemTargetInitialized,
VigemTargetConnected,
VigemTargetDisconnected
}
#endregion
#region Structs
[StructLayout(LayoutKind.Sequential)]
public struct VigemTarget
{
public uint Size;
public uint SerialNo;
public VigemTargetState State;
public ushort VendorId;
public ushort ProductId;
}
[StructLayout(LayoutKind.Sequential)]
public struct Ds4LightbarColor
{
public byte Red;
public byte Green;
public byte Blue;
};
[StructLayout(LayoutKind.Sequential)]
public struct XusbReport
{
public ushort wButtons;
public byte bLeftTrigger;
public byte bRightTrigger;
public short sThumbLX;
public short sThumbLY;
public short sThumbRX;
public short sThumbRY;
}
[StructLayout(LayoutKind.Sequential)]
public struct Ds4Report
{
byte bThumbLX;
byte bThumbLY;
byte bThumbRX;
byte bThumbRY;
ushort wButtons;
byte bSpecial;
byte bTriggerL;
byte bTriggerR;
}
#endregion
public delegate void VigemXusbNotification(
VigemTarget target,
byte largeMotor,
byte smallMotor,
byte ledNumber);
public delegate void VigemDs4Notification(
VigemTarget target,
byte largeMotor,
byte smallMotor,
Ds4LightbarColor lightbarColor);
public static void VIGEM_TARGET_INIT(
[In, Out] ref VigemTarget target)
{
target.Size = (uint)Marshal.SizeOf(typeof(VigemTarget));
target.State = VigemTargetState.VigemTargetInitialized;
}
[DllImport("ViGEmUM.dll", CharSet = CharSet.Unicode, ExactSpelling = true, CallingConvention = CallingConvention.Cdecl)]
public static extern VigemError vigem_init();
[DllImport("ViGEmUM.dll", CharSet = CharSet.Unicode, ExactSpelling = true, CallingConvention = CallingConvention.Cdecl)]
public static extern void vigem_shutdown();
[DllImport("ViGEmUM.dll", CharSet = CharSet.Unicode, ExactSpelling = true, CallingConvention = CallingConvention.Cdecl)]
public static extern VigemError vigem_target_plugin(
[In] VigemTargetType type,
[In, Out] ref VigemTarget target);
[DllImport("ViGEmUM.dll", CharSet = CharSet.Unicode, ExactSpelling = true, CallingConvention = CallingConvention.Cdecl)]
public static extern void vigem_target_unplug(
[In, Out] ref VigemTarget target);
[DllImport("ViGEmUM.dll", CharSet = CharSet.Unicode, ExactSpelling = true, CallingConvention = CallingConvention.Cdecl)]
public static extern VigemError vigem_register_xusb_notification(
[In, MarshalAs(UnmanagedType.FunctionPtr)] VigemXusbNotification notification,
[In] VigemTarget target);
[DllImport("ViGEmUM.dll", CharSet = CharSet.Unicode, ExactSpelling = true, CallingConvention = CallingConvention.Cdecl)]
public static extern VigemError vigem_register_ds4_notification(
[In, MarshalAs(UnmanagedType.FunctionPtr)] VigemDs4Notification notification,
[In] VigemTarget target);
[DllImport("ViGEmUM.dll", CharSet = CharSet.Unicode, ExactSpelling = true, CallingConvention = CallingConvention.Cdecl)]
public static extern VigemError vigem_xusb_submit_report(
[In] VigemTarget target,
[In] XusbReport report);
[DllImport("ViGEmUM.dll", CharSet = CharSet.Unicode, ExactSpelling = true, CallingConvention = CallingConvention.Cdecl)]
public static extern VigemError vigem_ds4_submit_report(
[In] VigemTarget target,
[In] Ds4Report report);
}
}