2014-01-17 00:27:07 +00:00
|
|
|
|
#region License
|
|
|
|
|
//
|
|
|
|
|
// WinRawJoystick.cs
|
|
|
|
|
//
|
|
|
|
|
// Author:
|
|
|
|
|
// Stefanos A. <stapostol@gmail.com>
|
|
|
|
|
//
|
|
|
|
|
// Copyright (c) 2014 Stefanos Apostolopoulos
|
|
|
|
|
//
|
|
|
|
|
// Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
|
// of this software and associated documentation files (the "Software"), to deal
|
|
|
|
|
// in the Software without restriction, including without limitation the rights
|
|
|
|
|
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
|
// copies of the Software, and to permit persons to whom the Software is
|
|
|
|
|
// furnished to do so, subject to the following conditions:
|
|
|
|
|
//
|
|
|
|
|
// The above copyright notice and this permission notice shall be included in
|
|
|
|
|
// all copies or substantial portions of the Software.
|
|
|
|
|
//
|
|
|
|
|
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
|
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
|
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
|
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
|
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
|
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
|
// THE SOFTWARE.
|
|
|
|
|
//
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Diagnostics;
|
2014-01-17 18:11:16 +00:00
|
|
|
|
using System.Runtime.InteropServices;
|
2014-01-17 00:27:07 +00:00
|
|
|
|
using System.Text;
|
|
|
|
|
using OpenTK.Input;
|
2014-01-17 18:11:16 +00:00
|
|
|
|
using OpenTK.Platform.Common;
|
2014-01-17 00:27:07 +00:00
|
|
|
|
|
|
|
|
|
namespace OpenTK.Platform.Windows
|
|
|
|
|
{
|
|
|
|
|
class WinRawJoystick : IJoystickDriver2
|
|
|
|
|
{
|
2014-01-17 18:11:16 +00:00
|
|
|
|
class Device
|
|
|
|
|
{
|
|
|
|
|
public IntPtr Handle;
|
|
|
|
|
JoystickCapabilities Capabilities;
|
|
|
|
|
JoystickState State;
|
|
|
|
|
Guid Guid;
|
|
|
|
|
|
|
|
|
|
readonly Dictionary<int, JoystickAxis> axes =
|
|
|
|
|
new Dictionary<int,JoystickAxis>();
|
|
|
|
|
readonly Dictionary<int, JoystickButton> buttons =
|
|
|
|
|
new Dictionary<int, JoystickButton>();
|
|
|
|
|
|
|
|
|
|
#region Constructors
|
|
|
|
|
|
|
|
|
|
public Device(IntPtr handle, Guid guid, JoystickCapabilities caps)
|
|
|
|
|
{
|
|
|
|
|
Handle = handle;
|
|
|
|
|
Guid = guid;
|
|
|
|
|
Capabilities = caps;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
#region Public Members
|
|
|
|
|
|
|
|
|
|
public void SetAxis(HIDPage page, short usage, short value)
|
|
|
|
|
{
|
|
|
|
|
JoystickAxis axis = GetAxis(page, usage);
|
|
|
|
|
State.SetAxis(axis, value);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void SetButton(HIDPage page, short usage, bool value)
|
|
|
|
|
{
|
|
|
|
|
JoystickButton button = GetButton(page, usage);
|
|
|
|
|
State.SetButton(button, value);
|
|
|
|
|
}
|
|
|
|
|
|
2014-01-18 15:00:27 +00:00
|
|
|
|
public void SetConnected(bool value)
|
|
|
|
|
{
|
|
|
|
|
Capabilities.SetIsConnected(value);
|
|
|
|
|
State.SetIsConnected(value);
|
|
|
|
|
}
|
|
|
|
|
|
2014-01-17 18:11:16 +00:00
|
|
|
|
public JoystickCapabilities GetCapabilities()
|
|
|
|
|
{
|
|
|
|
|
return Capabilities;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Guid GetGuid()
|
|
|
|
|
{
|
|
|
|
|
return Guid;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public JoystickState GetState()
|
|
|
|
|
{
|
|
|
|
|
return State;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
#region Private Members
|
|
|
|
|
|
|
|
|
|
static int MakeKey(HIDPage page, short usage)
|
|
|
|
|
{
|
|
|
|
|
return ((ushort)page << 16) | unchecked((ushort)usage);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
JoystickAxis GetAxis(HIDPage page, short usage)
|
|
|
|
|
{
|
|
|
|
|
int key = MakeKey(page, usage);
|
|
|
|
|
if (!axes.ContainsKey(key))
|
|
|
|
|
{
|
|
|
|
|
axes.Add(key, JoystickAxis.Axis0 + axes.Count);
|
|
|
|
|
}
|
|
|
|
|
return axes[key];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
JoystickButton GetButton(HIDPage page, short usage)
|
|
|
|
|
{
|
|
|
|
|
int key = MakeKey(page, usage);
|
|
|
|
|
if (!buttons.ContainsKey(key))
|
|
|
|
|
{
|
|
|
|
|
buttons.Add(key, JoystickButton.Button0 + buttons.Count);
|
|
|
|
|
}
|
|
|
|
|
return buttons[key];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Defines which types of HID devices we are interested in
|
|
|
|
|
readonly RawInputDevice[] DeviceTypes;
|
|
|
|
|
|
2014-01-17 00:27:07 +00:00
|
|
|
|
readonly IntPtr Window;
|
|
|
|
|
readonly object UpdateLock = new object();
|
2014-01-17 18:11:16 +00:00
|
|
|
|
readonly Dictionary<IntPtr, Device> Devices =
|
|
|
|
|
new Dictionary<IntPtr, Device>(new IntPtrEqualityComparer());
|
|
|
|
|
readonly Dictionary<int, IntPtr> IndexToDevice =
|
|
|
|
|
new Dictionary<int, IntPtr>();
|
2014-01-17 00:27:07 +00:00
|
|
|
|
|
2014-01-18 15:00:27 +00:00
|
|
|
|
byte[] PreparsedData = new byte[1024];
|
|
|
|
|
HidProtocolValueCaps[] AxisCaps = new HidProtocolValueCaps[4];
|
|
|
|
|
HidProtocolButtonCaps[] ButtonCaps = new HidProtocolButtonCaps[4];
|
|
|
|
|
HidProtocolData[] DataBuffer = new HidProtocolData[16];
|
|
|
|
|
|
2014-01-17 00:27:07 +00:00
|
|
|
|
public WinRawJoystick(IntPtr window)
|
|
|
|
|
{
|
2014-01-17 18:11:16 +00:00
|
|
|
|
Debug.WriteLine("Using WinRawJoystick.");
|
2014-01-17 00:27:07 +00:00
|
|
|
|
Debug.Indent();
|
|
|
|
|
|
|
|
|
|
if (window == IntPtr.Zero)
|
|
|
|
|
throw new ArgumentNullException("window");
|
|
|
|
|
|
|
|
|
|
Window = window;
|
2014-01-17 18:11:16 +00:00
|
|
|
|
DeviceTypes = new RawInputDevice[]
|
|
|
|
|
{
|
|
|
|
|
new RawInputDevice(HIDUsageGD.Joystick, RawInputDeviceFlags.INPUTSINK, window),
|
|
|
|
|
new RawInputDevice(HIDUsageGD.GamePad, RawInputDeviceFlags.INPUTSINK, window),
|
|
|
|
|
};
|
2014-01-18 15:00:27 +00:00
|
|
|
|
|
|
|
|
|
if (!Functions.RegisterRawInputDevices(DeviceTypes, DeviceTypes.Length, API.RawInputDeviceSize))
|
|
|
|
|
{
|
|
|
|
|
Debug.Print("[Warning] Raw input registration failed with error: {0}.",
|
|
|
|
|
Marshal.GetLastWin32Error());
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
Debug.Print("[WinRawJoystick] Registered for raw input");
|
|
|
|
|
}
|
|
|
|
|
|
2014-01-17 00:27:07 +00:00
|
|
|
|
RefreshDevices();
|
|
|
|
|
|
|
|
|
|
Debug.Unindent();
|
|
|
|
|
}
|
|
|
|
|
|
2014-01-17 18:11:16 +00:00
|
|
|
|
#region Public Members
|
|
|
|
|
|
2014-01-17 00:27:07 +00:00
|
|
|
|
public void RefreshDevices()
|
|
|
|
|
{
|
2014-01-18 15:00:27 +00:00
|
|
|
|
// Mark all devices as disconnected. We will check which of those
|
|
|
|
|
// are connected later on.
|
|
|
|
|
for (int i = 0; i < IndexToDevice.Count; i++)
|
2014-01-17 18:11:16 +00:00
|
|
|
|
{
|
2014-01-18 15:00:27 +00:00
|
|
|
|
Devices[IndexToDevice[i]].SetConnected(false);
|
2014-01-17 18:11:16 +00:00
|
|
|
|
}
|
2014-01-18 15:00:27 +00:00
|
|
|
|
|
|
|
|
|
foreach (RawInputDeviceList dev in WinRawInput.GetDeviceList())
|
2014-01-17 18:11:16 +00:00
|
|
|
|
{
|
2014-01-18 15:00:27 +00:00
|
|
|
|
if (dev.Type != RawInputDeviceType.HID)
|
|
|
|
|
continue;
|
|
|
|
|
|
|
|
|
|
IntPtr handle = dev.Device;
|
|
|
|
|
Guid guid = GetDeviceGuid(handle);
|
|
|
|
|
JoystickCapabilities caps = GetDeviceCaps(handle);
|
|
|
|
|
|
|
|
|
|
if (!Devices.ContainsKey(handle))
|
|
|
|
|
Devices.Add(handle, new Device(handle, guid, caps));
|
|
|
|
|
|
|
|
|
|
Device stick = Devices[handle];
|
|
|
|
|
stick.SetConnected(true);
|
2014-01-17 18:11:16 +00:00
|
|
|
|
}
|
2014-01-18 15:00:27 +00:00
|
|
|
|
|
2014-01-17 18:11:16 +00:00
|
|
|
|
}
|
|
|
|
|
|
2014-01-18 15:00:27 +00:00
|
|
|
|
public unsafe bool ProcessEvent(ref RawInput rin)
|
2014-01-17 18:11:16 +00:00
|
|
|
|
{
|
2014-01-18 15:00:27 +00:00
|
|
|
|
IntPtr handle = rin.Header.Device;
|
2014-01-17 18:11:16 +00:00
|
|
|
|
Device stick = GetDevice(handle);
|
|
|
|
|
if (stick == null)
|
|
|
|
|
{
|
|
|
|
|
Debug.Print("[WinRawJoystick] Unknown device {0}", handle);
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2014-01-18 15:00:27 +00:00
|
|
|
|
if (!GetPreparsedData(handle, ref PreparsedData))
|
|
|
|
|
{
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
HidProtocolCaps caps;
|
2014-07-31 07:49:43 +00:00
|
|
|
|
int axis_caps_count;
|
|
|
|
|
int button_caps_count;
|
|
|
|
|
if (!GetDeviceCaps(PreparsedData, out caps,
|
|
|
|
|
ref AxisCaps, out axis_caps_count,
|
|
|
|
|
ref ButtonCaps, out button_caps_count))
|
2014-01-18 15:00:27 +00:00
|
|
|
|
{
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Query current state
|
|
|
|
|
// Allocate enough storage to hold the data of the current report
|
|
|
|
|
int size = HidProtocol.MaxDataListLength(HidProtocolReportType.Input, PreparsedData);
|
|
|
|
|
if (size == 0)
|
|
|
|
|
{
|
|
|
|
|
Debug.Print("[WinRawJoystick] HidProtocol.MaxDataListLength() failed with {0}",
|
|
|
|
|
Marshal.GetLastWin32Error());
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Fill the data buffer
|
|
|
|
|
if (DataBuffer.Length < size)
|
|
|
|
|
{
|
|
|
|
|
Array.Resize(ref DataBuffer, size);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fixed (void* pdata = &rin.Data.HID.RawData)
|
|
|
|
|
{
|
|
|
|
|
if (HidProtocol.GetData(HidProtocolReportType.Input,
|
|
|
|
|
DataBuffer, ref size, PreparsedData,
|
|
|
|
|
(IntPtr)pdata, rin.Data.HID.Size) != HidProtocolStatus.Success)
|
|
|
|
|
{
|
|
|
|
|
Debug.Print("[WinRawJoystick] HidProtocol.GetData() failed with {0}",
|
|
|
|
|
Marshal.GetLastWin32Error());
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2014-07-31 07:49:43 +00:00
|
|
|
|
UpdateAxes(stick, caps, AxisCaps, axis_caps_count, DataBuffer);
|
|
|
|
|
UpdateButtons(stick, caps, ButtonCaps, button_caps_count, DataBuffer);
|
2014-01-18 15:00:27 +00:00
|
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
2014-01-18 15:53:30 +00:00
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
#region Private Members
|
|
|
|
|
|
2014-01-18 15:00:27 +00:00
|
|
|
|
static bool GetPreparsedData(IntPtr handle, ref byte[] prepared_data)
|
|
|
|
|
{
|
2014-01-17 18:11:16 +00:00
|
|
|
|
// Query the size of the _HIDP_PREPARSED_DATA structure for this event.
|
|
|
|
|
int preparsed_size = 0;
|
2014-01-18 15:00:27 +00:00
|
|
|
|
Functions.GetRawInputDeviceInfo(handle, RawInputDeviceInfoEnum.PREPARSEDDATA,
|
2014-01-17 18:11:16 +00:00
|
|
|
|
IntPtr.Zero, ref preparsed_size);
|
|
|
|
|
if (preparsed_size == 0)
|
2014-01-18 15:00:27 +00:00
|
|
|
|
{
|
|
|
|
|
Debug.Print("[WinRawJoystick] Functions.GetRawInputDeviceInfo(PARSEDDATA) failed with {0}",
|
|
|
|
|
Marshal.GetLastWin32Error());
|
2014-01-17 18:11:16 +00:00
|
|
|
|
return false;
|
2014-01-18 15:00:27 +00:00
|
|
|
|
}
|
2014-01-17 18:11:16 +00:00
|
|
|
|
|
|
|
|
|
// Allocate space for _HIDP_PREPARSED_DATA.
|
|
|
|
|
// This is an untyped blob of data.
|
2014-01-18 15:00:27 +00:00
|
|
|
|
if (prepared_data.Length < preparsed_size)
|
|
|
|
|
{
|
|
|
|
|
Array.Resize(ref prepared_data, preparsed_size);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (Functions.GetRawInputDeviceInfo(handle, RawInputDeviceInfoEnum.PREPARSEDDATA,
|
|
|
|
|
prepared_data, ref preparsed_size) < 0)
|
|
|
|
|
{
|
|
|
|
|
Debug.Print("[WinRawJoystick] Functions.GetRawInputDeviceInfo(PARSEDDATA) failed with {0}",
|
|
|
|
|
Marshal.GetLastWin32Error());
|
2014-01-17 18:11:16 +00:00
|
|
|
|
return false;
|
2014-01-18 15:00:27 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
JoystickCapabilities GetDeviceCaps(IntPtr handle)
|
|
|
|
|
{
|
|
|
|
|
HidProtocolCaps caps;
|
2014-07-31 07:49:43 +00:00
|
|
|
|
int axis_count;
|
|
|
|
|
int button_count;
|
|
|
|
|
|
2014-01-18 15:00:27 +00:00
|
|
|
|
if (GetPreparsedData(handle, ref PreparsedData) &&
|
2014-07-31 07:49:43 +00:00
|
|
|
|
GetDeviceCaps(PreparsedData, out caps,
|
|
|
|
|
ref AxisCaps, out axis_count,
|
|
|
|
|
ref ButtonCaps, out button_count))
|
2014-01-18 15:00:27 +00:00
|
|
|
|
{
|
|
|
|
|
int axes = 0;
|
|
|
|
|
int dpads = 0;
|
|
|
|
|
int buttons = 0;
|
2014-07-31 07:49:43 +00:00
|
|
|
|
|
|
|
|
|
for (int i = 0; i < axis_count; i++)
|
2014-01-18 15:00:27 +00:00
|
|
|
|
{
|
|
|
|
|
if (AxisCaps[i].IsRange)
|
2014-07-31 07:49:43 +00:00
|
|
|
|
{
|
|
|
|
|
Debug.Print("[WinRawJoystick] Range axis elements not implemented.");
|
|
|
|
|
continue;
|
|
|
|
|
}
|
2014-01-18 15:00:27 +00:00
|
|
|
|
|
|
|
|
|
switch (AxisCaps[i].UsagePage)
|
|
|
|
|
{
|
|
|
|
|
case HIDPage.GenericDesktop:
|
|
|
|
|
switch ((HIDUsageGD)AxisCaps[i].NotRange.Usage)
|
|
|
|
|
{
|
|
|
|
|
case HIDUsageGD.X:
|
|
|
|
|
case HIDUsageGD.Y:
|
|
|
|
|
case HIDUsageGD.Z:
|
|
|
|
|
case HIDUsageGD.Rx:
|
|
|
|
|
case HIDUsageGD.Ry:
|
|
|
|
|
case HIDUsageGD.Rz:
|
|
|
|
|
case HIDUsageGD.Slider:
|
|
|
|
|
case HIDUsageGD.Dial:
|
|
|
|
|
case HIDUsageGD.Wheel:
|
|
|
|
|
axes++;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case HIDUsageGD.Hatswitch:
|
|
|
|
|
dpads++;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case HIDPage.Simulation:
|
|
|
|
|
switch ((HIDUsageSim)AxisCaps[i].NotRange.Usage)
|
|
|
|
|
{
|
|
|
|
|
case HIDUsageSim.Rudder:
|
|
|
|
|
case HIDUsageSim.Throttle:
|
|
|
|
|
axes++;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case HIDPage.Button:
|
|
|
|
|
buttons++;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2014-07-31 07:49:43 +00:00
|
|
|
|
for (int i = 0; i < button_count; i++)
|
|
|
|
|
{
|
|
|
|
|
bool is_range = ButtonCaps[i].IsRange;
|
|
|
|
|
HIDPage page = ButtonCaps[i].UsagePage;
|
|
|
|
|
switch (page)
|
|
|
|
|
{
|
|
|
|
|
case HIDPage.Button:
|
|
|
|
|
if (is_range)
|
|
|
|
|
{
|
|
|
|
|
buttons += ButtonCaps[i].Range.UsageMax - ButtonCaps[i].Range.UsageMin + 1;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
buttons++;
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
Debug.Print("[WinRawJoystick] Unknown HIDPage {0} for button.", page);
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return new JoystickCapabilities(axes, buttons, dpads, true);
|
2014-01-18 15:00:27 +00:00
|
|
|
|
}
|
|
|
|
|
return new JoystickCapabilities();
|
|
|
|
|
}
|
2014-01-17 18:11:16 +00:00
|
|
|
|
|
2014-01-18 15:00:27 +00:00
|
|
|
|
static bool GetDeviceCaps(byte[] preparsed_data, out HidProtocolCaps caps,
|
2014-07-31 07:49:43 +00:00
|
|
|
|
ref HidProtocolValueCaps[] axis_caps, out int axis_caps_count,
|
|
|
|
|
ref HidProtocolButtonCaps[] button_caps, out int button_caps_count)
|
2014-01-18 15:00:27 +00:00
|
|
|
|
{
|
2014-07-31 07:49:43 +00:00
|
|
|
|
axis_caps_count = 0;
|
|
|
|
|
button_caps_count = 0;
|
|
|
|
|
|
2014-01-17 18:11:16 +00:00
|
|
|
|
// Query joystick capabilities
|
2014-01-18 15:00:27 +00:00
|
|
|
|
caps = new HidProtocolCaps();
|
2014-01-17 18:11:16 +00:00
|
|
|
|
if (HidProtocol.GetCaps(preparsed_data, ref caps) != HidProtocolStatus.Success)
|
2014-01-18 15:00:27 +00:00
|
|
|
|
{
|
|
|
|
|
Debug.Print("[WinRawJoystick] HidProtocol.GetCaps() failed with {0}",
|
|
|
|
|
Marshal.GetLastWin32Error());
|
2014-01-17 18:11:16 +00:00
|
|
|
|
return false;
|
2014-01-18 15:00:27 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Make sure our caps arrays are big enough
|
2014-07-31 07:49:43 +00:00
|
|
|
|
if (axis_caps.Length < caps.NumberInputValueCaps)
|
2014-01-18 15:00:27 +00:00
|
|
|
|
{
|
2014-07-31 07:49:43 +00:00
|
|
|
|
Array.Resize(ref axis_caps, caps.NumberInputValueCaps);
|
2014-01-18 15:00:27 +00:00
|
|
|
|
}
|
2014-07-31 07:49:43 +00:00
|
|
|
|
if (button_caps.Length < caps.NumberInputButtonCaps)
|
2014-01-18 15:00:27 +00:00
|
|
|
|
{
|
2014-07-31 07:49:43 +00:00
|
|
|
|
Array.Resize(ref button_caps, caps.NumberInputButtonCaps);
|
2014-01-18 15:00:27 +00:00
|
|
|
|
}
|
2014-01-17 18:11:16 +00:00
|
|
|
|
|
|
|
|
|
// Axis capabilities
|
2014-07-31 07:49:43 +00:00
|
|
|
|
ushort axis_count = (ushort)axis_caps.Length;
|
2014-01-17 18:11:16 +00:00
|
|
|
|
if (HidProtocol.GetValueCaps(HidProtocolReportType.Input,
|
2014-07-31 07:49:43 +00:00
|
|
|
|
axis_caps, ref axis_count, preparsed_data) !=
|
2014-01-17 18:11:16 +00:00
|
|
|
|
HidProtocolStatus.Success)
|
|
|
|
|
{
|
2014-01-18 15:00:27 +00:00
|
|
|
|
Debug.Print("[WinRawJoystick] HidProtocol.GetValueCaps() failed with {0}",
|
|
|
|
|
Marshal.GetLastWin32Error());
|
2014-01-17 18:11:16 +00:00
|
|
|
|
return false;
|
|
|
|
|
}
|
2014-07-31 07:49:43 +00:00
|
|
|
|
axis_caps_count = (int)axis_count;
|
2014-01-17 18:11:16 +00:00
|
|
|
|
|
|
|
|
|
// Button capabilities
|
2014-07-31 07:49:43 +00:00
|
|
|
|
ushort button_count = (ushort)button_caps.Length;
|
2014-01-17 18:11:16 +00:00
|
|
|
|
if (HidProtocol.GetButtonCaps(HidProtocolReportType.Input,
|
2014-07-31 07:49:43 +00:00
|
|
|
|
button_caps, ref button_count, preparsed_data) !=
|
2014-01-17 18:11:16 +00:00
|
|
|
|
HidProtocolStatus.Success)
|
|
|
|
|
{
|
|
|
|
|
Debug.Print("[WinRawJoystick] HidProtocol.GetButtonCaps() failed with {0}",
|
|
|
|
|
Marshal.GetLastWin32Error());
|
|
|
|
|
return false;
|
|
|
|
|
}
|
2014-07-31 07:49:43 +00:00
|
|
|
|
button_caps_count = (int)button_count;
|
2014-01-17 18:11:16 +00:00
|
|
|
|
|
2014-01-18 15:00:27 +00:00
|
|
|
|
return true;
|
|
|
|
|
}
|
2014-01-17 18:11:16 +00:00
|
|
|
|
|
2014-01-18 15:00:27 +00:00
|
|
|
|
// Retrieves the GUID of a device, which is stored
|
|
|
|
|
// in the last part of the DEVICENAME string
|
|
|
|
|
Guid GetDeviceGuid(IntPtr handle)
|
|
|
|
|
{
|
|
|
|
|
Guid guid = new Guid();
|
|
|
|
|
|
|
|
|
|
unsafe
|
2014-01-17 18:11:16 +00:00
|
|
|
|
{
|
2014-01-18 15:00:27 +00:00
|
|
|
|
// Find out how much memory we need to allocate
|
|
|
|
|
// for the DEVICENAME string
|
|
|
|
|
int size = 0;
|
|
|
|
|
if (Functions.GetRawInputDeviceInfo(handle, RawInputDeviceInfoEnum.DEVICENAME, IntPtr.Zero, ref size) < 0 || size == 0)
|
|
|
|
|
{
|
|
|
|
|
Debug.Print("[WinRawJoystick] Functions.GetRawInputDeviceInfo(DEVICENAME) failed with error {0}",
|
|
|
|
|
Marshal.GetLastWin32Error());
|
|
|
|
|
return guid;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Allocate memory and retrieve the DEVICENAME string
|
|
|
|
|
char* pname = stackalloc char[size + 1];
|
|
|
|
|
if (Functions.GetRawInputDeviceInfo(handle, RawInputDeviceInfoEnum.DEVICENAME, (IntPtr)pname, ref size) < 0)
|
|
|
|
|
{
|
|
|
|
|
Debug.Print("[WinRawJoystick] Functions.GetRawInputDeviceInfo(DEVICENAME) failed with error {0}",
|
|
|
|
|
Marshal.GetLastWin32Error());
|
|
|
|
|
return guid;
|
|
|
|
|
}
|
2014-01-17 18:11:16 +00:00
|
|
|
|
|
2014-01-18 15:00:27 +00:00
|
|
|
|
// Convert the buffer to a .Net string, and split it into parts
|
|
|
|
|
string name = new string(pname);
|
|
|
|
|
if (String.IsNullOrEmpty(name))
|
|
|
|
|
{
|
|
|
|
|
Debug.Print("[WinRawJoystick] Failed to construct device name");
|
|
|
|
|
return guid;
|
|
|
|
|
}
|
2014-01-17 18:11:16 +00:00
|
|
|
|
|
2014-01-18 15:00:27 +00:00
|
|
|
|
// The GUID is stored in the last part of the string
|
|
|
|
|
string[] parts = name.Split('#');
|
|
|
|
|
if (parts.Length >= 3)
|
|
|
|
|
{
|
|
|
|
|
guid = new Guid(parts[2]);
|
|
|
|
|
}
|
|
|
|
|
}
|
2014-01-17 18:11:16 +00:00
|
|
|
|
|
2014-01-18 15:00:27 +00:00
|
|
|
|
return guid;
|
2014-01-17 18:11:16 +00:00
|
|
|
|
}
|
|
|
|
|
|
2014-07-31 07:49:43 +00:00
|
|
|
|
static void UpdateAxes(Device stick, HidProtocolCaps caps, HidProtocolValueCaps[] axes, int axes_count, HidProtocolData[] data)
|
2014-01-17 18:11:16 +00:00
|
|
|
|
{
|
|
|
|
|
// Use the data indices in the axis and button caps arrays to
|
|
|
|
|
// access the data buffer we just filled.
|
2014-07-31 07:49:43 +00:00
|
|
|
|
for (int i = 0; i < axes_count; i++)
|
2014-01-17 18:11:16 +00:00
|
|
|
|
{
|
2014-01-18 15:00:27 +00:00
|
|
|
|
if (!axes[i].IsRange)
|
2014-01-17 18:11:16 +00:00
|
|
|
|
{
|
2014-01-18 15:00:27 +00:00
|
|
|
|
int index = axes[i].NotRange.DataIndex;
|
2014-01-17 18:11:16 +00:00
|
|
|
|
if (index < 0 || index >= caps.NumberInputValueCaps)
|
|
|
|
|
{
|
|
|
|
|
// Should never happen
|
|
|
|
|
Debug.Print("[WinRawJoystick] Error: DataIndex out of range");
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
|
2014-01-18 15:00:27 +00:00
|
|
|
|
if (data[i].DataIndex != index)
|
2014-01-17 18:11:16 +00:00
|
|
|
|
{
|
|
|
|
|
// Should also never happen
|
|
|
|
|
Debug.Print("[WinRawJoystick] DataIndex != index ({0} != {1})",
|
2014-01-18 15:00:27 +00:00
|
|
|
|
data[i].DataIndex, index);
|
2014-01-17 18:11:16 +00:00
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
|
2014-01-18 15:00:27 +00:00
|
|
|
|
short value = (short)HidHelper.ScaleValue(data[i].RawValue,
|
|
|
|
|
axes[i].LogicalMin, axes[i].LogicalMax,
|
2014-01-17 18:11:16 +00:00
|
|
|
|
short.MinValue, short.MaxValue);
|
|
|
|
|
|
2014-01-18 15:00:27 +00:00
|
|
|
|
stick.SetAxis(axes[i].UsagePage, axes[i].NotRange.Usage, value);
|
2014-01-17 18:11:16 +00:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
// Todo: fall back to HidProtocol.GetLinkCollectionNodes
|
|
|
|
|
}
|
|
|
|
|
}
|
2014-01-17 00:27:07 +00:00
|
|
|
|
}
|
|
|
|
|
|
2014-07-31 07:49:43 +00:00
|
|
|
|
unsafe static void UpdateButtons(Device stick, HidProtocolCaps caps, HidProtocolButtonCaps[] buttons, int buttons_count, HidProtocolData[] data)
|
2014-01-17 00:27:07 +00:00
|
|
|
|
{
|
2014-07-31 07:49:43 +00:00
|
|
|
|
for (int i = 0; i < buttons_count; i++)
|
2014-01-17 18:11:16 +00:00
|
|
|
|
{
|
2014-01-18 15:00:27 +00:00
|
|
|
|
if (!buttons[i].IsRange)
|
2014-01-17 18:11:16 +00:00
|
|
|
|
{
|
2014-01-18 15:00:27 +00:00
|
|
|
|
int index = buttons[i].NotRange.DataIndex;
|
2014-01-17 18:11:16 +00:00
|
|
|
|
if (index < 0 || index >= caps.NumberInputButtonCaps)
|
|
|
|
|
{
|
|
|
|
|
// Should never happen
|
|
|
|
|
Debug.Print("[WinRawJoystick] Error: DataIndex out of range");
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
|
2014-01-18 15:00:27 +00:00
|
|
|
|
if (data[i].DataIndex != index)
|
2014-01-17 18:11:16 +00:00
|
|
|
|
{
|
|
|
|
|
// Should also never happen
|
|
|
|
|
Debug.Print("[WinRawJoystick] DataIndex != index ({0} != {1})",
|
2014-01-18 15:00:27 +00:00
|
|
|
|
data[i].DataIndex, index);
|
2014-01-17 18:11:16 +00:00
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
|
2014-01-18 15:00:27 +00:00
|
|
|
|
bool value = data[i].On;
|
|
|
|
|
stick.SetButton(buttons[i].UsagePage, buttons[i].NotRange.Usage, value);
|
2014-01-17 18:11:16 +00:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
// Todo: fall back to HidProtocol.GetLinkCollectionNodes
|
|
|
|
|
}
|
|
|
|
|
}
|
2014-01-17 00:27:07 +00:00
|
|
|
|
}
|
|
|
|
|
|
2014-01-17 18:11:16 +00:00
|
|
|
|
Device GetDevice(IntPtr handle)
|
|
|
|
|
{
|
|
|
|
|
bool is_device_known = false;
|
|
|
|
|
|
|
|
|
|
lock (UpdateLock)
|
|
|
|
|
{
|
|
|
|
|
is_device_known = Devices.ContainsKey(handle);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!is_device_known)
|
|
|
|
|
{
|
|
|
|
|
RefreshDevices();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
lock (UpdateLock)
|
|
|
|
|
{
|
|
|
|
|
return Devices.ContainsKey(handle) ? Devices[handle] : null;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool IsValid(int index)
|
|
|
|
|
{
|
|
|
|
|
return IndexToDevice.ContainsKey(index);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
#region IJoystickDriver2 Members
|
|
|
|
|
|
2014-01-17 00:27:07 +00:00
|
|
|
|
public JoystickState GetState(int index)
|
|
|
|
|
{
|
2014-01-17 18:11:16 +00:00
|
|
|
|
lock (UpdateLock)
|
|
|
|
|
{
|
|
|
|
|
if (IsValid(index))
|
|
|
|
|
{
|
|
|
|
|
return Devices[IndexToDevice[index]].GetState();
|
|
|
|
|
}
|
|
|
|
|
return new JoystickState();
|
|
|
|
|
}
|
2014-01-17 00:27:07 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public JoystickCapabilities GetCapabilities(int index)
|
|
|
|
|
{
|
2014-01-17 18:11:16 +00:00
|
|
|
|
lock (UpdateLock)
|
|
|
|
|
{
|
|
|
|
|
if (IsValid(index))
|
|
|
|
|
{
|
|
|
|
|
return Devices[IndexToDevice[index]].GetCapabilities();
|
|
|
|
|
}
|
|
|
|
|
return new JoystickCapabilities();
|
|
|
|
|
}
|
2014-01-17 00:27:07 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Guid GetGuid(int index)
|
|
|
|
|
{
|
2014-01-17 18:11:16 +00:00
|
|
|
|
lock (UpdateLock)
|
|
|
|
|
{
|
|
|
|
|
if (IsValid(index))
|
|
|
|
|
{
|
|
|
|
|
return Devices[IndexToDevice[index]].GetGuid();
|
|
|
|
|
}
|
|
|
|
|
return new Guid();
|
|
|
|
|
}
|
2014-01-17 00:27:07 +00:00
|
|
|
|
}
|
2014-01-17 18:11:16 +00:00
|
|
|
|
|
|
|
|
|
#endregion
|
2014-01-17 00:27:07 +00:00
|
|
|
|
}
|
|
|
|
|
}
|