mirror of
https://github.com/DarthAffe/CUE.NET.git
synced 2025-12-12 16:58:29 +00:00
90 lines
3.2 KiB
C#
90 lines
3.2 KiB
C#
// ReSharper disable UnusedAutoPropertyAccessor.Global
|
|
// ReSharper disable MemberCanBePrivate.Global
|
|
// ReSharper disable UnusedMember.Global
|
|
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Drawing;
|
|
using System.Linq;
|
|
using System.Runtime.InteropServices;
|
|
using CUE.NET.Devices.Generic;
|
|
using CUE.NET.Devices.Generic.Enums;
|
|
using CUE.NET.Exceptions;
|
|
using CUE.NET.Native;
|
|
|
|
namespace CUE.NET.Devices.Mousemat
|
|
{
|
|
/// <summary>
|
|
/// Represents the SDK for a corsair mousemat.
|
|
/// </summary>
|
|
public class CorsairMousemat : AbstractCueDevice
|
|
{
|
|
#region Properties & Fields
|
|
|
|
/// <summary>
|
|
/// Gets specific information provided by CUE for the mousemat.
|
|
/// </summary>
|
|
public CorsairMousematDeviceInfo MousematDeviceInfo { get; }
|
|
|
|
#endregion
|
|
|
|
#region Constructors
|
|
|
|
/// <summary>
|
|
/// Initializes a new instance of the <see cref="CorsairMousemat"/> class.
|
|
/// </summary>
|
|
/// <param name="info">The specific information provided by CUE for the mousemat</param>
|
|
internal CorsairMousemat(CorsairMousematDeviceInfo info)
|
|
: base(info)
|
|
{
|
|
this.MousematDeviceInfo = info;
|
|
}
|
|
|
|
#endregion
|
|
|
|
#region Methods
|
|
|
|
/// <summary>
|
|
/// Initializes the LEDs of the device.
|
|
/// </summary>
|
|
protected override void InitializeLeds()
|
|
{
|
|
int deviceCount = _CUESDK.CorsairGetDeviceCount();
|
|
|
|
// Get mousemat device index
|
|
int mousematIndex = -1;
|
|
for (int i = 0; i < deviceCount; i++)
|
|
{
|
|
_CorsairDeviceInfo nativeDeviceInfo = (_CorsairDeviceInfo)Marshal.PtrToStructure(_CUESDK.CorsairGetDeviceInfo(i), typeof(_CorsairDeviceInfo));
|
|
GenericDeviceInfo info = new GenericDeviceInfo(nativeDeviceInfo);
|
|
if (info.Type != CorsairDeviceType.Mousemat)
|
|
continue;
|
|
|
|
mousematIndex = i;
|
|
break;
|
|
}
|
|
if (mousematIndex < 0)
|
|
throw new WrapperException("Can't determine mousemat device index");
|
|
|
|
_CorsairLedPositions nativeLedPositions = (_CorsairLedPositions)Marshal.PtrToStructure(_CUESDK.CorsairGetLedPositionsByDeviceIndex(mousematIndex), typeof(_CorsairLedPositions));
|
|
int structSize = Marshal.SizeOf(typeof(_CorsairLedPosition));
|
|
IntPtr ptr = nativeLedPositions.pLedPosition;
|
|
|
|
// Put the positions in an array for sorting later on
|
|
List<_CorsairLedPosition> positions = new List<_CorsairLedPosition>();
|
|
for (int i = 0; i < nativeLedPositions.numberOfLed; i++)
|
|
{
|
|
_CorsairLedPosition ledPosition = (_CorsairLedPosition)Marshal.PtrToStructure(ptr, typeof(_CorsairLedPosition));
|
|
ptr = new IntPtr(ptr.ToInt64() + structSize);
|
|
positions.Add(ledPosition);
|
|
}
|
|
|
|
// Sort for easy iteration by clients
|
|
foreach (_CorsairLedPosition ledPosition in positions.OrderBy(p => p.ledId))
|
|
InitializeLed(ledPosition.ledId, new RectangleF((float)ledPosition.left, (float)ledPosition.top, (float)ledPosition.width, (float)ledPosition.height));
|
|
}
|
|
|
|
#endregion
|
|
}
|
|
}
|