mirror of
https://github.com/DarthAffe/RGB.NET.git
synced 2025-12-13 10:08:31 +00:00
65 lines
2.0 KiB
C#
65 lines
2.0 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using RGB.NET.Core;
|
|
using RGB.NET.Devices.Logitech.Native;
|
|
|
|
namespace RGB.NET.Devices.Logitech.PerDevice
|
|
{
|
|
/// <inheritdoc />
|
|
/// <summary>
|
|
/// Represents a logitech per-device-lightable device.
|
|
/// </summary>
|
|
public class LogitechPerDeviceRGBDevice : LogitechRGBDevice
|
|
{
|
|
#region Properties & Fields
|
|
|
|
/// <summary>
|
|
/// Gets information about the <see cref="LogitechPerDeviceRGBDevice"/>.
|
|
/// </summary>
|
|
public LogitechRGBDeviceInfo PerDeviceDeviceInfo { get; }
|
|
|
|
#endregion
|
|
|
|
#region Constructors
|
|
|
|
/// <inheritdoc />
|
|
/// <summary>
|
|
/// Initializes a new instance of the <see cref="T:RGB.NET.Devices.Logitech.LogitechPerDeviceRGBDevice" /> class.
|
|
/// </summary>
|
|
/// <param name="info">The specific information provided by logitech for the per-device-lightable device</param>
|
|
internal LogitechPerDeviceRGBDevice(LogitechRGBDeviceInfo info)
|
|
: base(info)
|
|
{
|
|
this.PerDeviceDeviceInfo = info;
|
|
}
|
|
|
|
#endregion
|
|
|
|
#region Methods
|
|
|
|
/// <inheritdoc />
|
|
protected override void InitializeLayout()
|
|
{
|
|
base.InitializeLayout();
|
|
|
|
if (LedMapping.Count == 0)
|
|
InitializeLed(new LogitechLedId(this, LogitechLedIds.DEVICE), new Rectangle(0, 0, 1, 1));
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
protected override void UpdateLeds(IEnumerable<Led> ledsToUpdate)
|
|
{
|
|
Led led = ledsToUpdate.FirstOrDefault(x => x.Color.A > 0);
|
|
if (led == null) return;
|
|
|
|
_LogitechGSDK.LogiLedSetTargetDevice(LogitechDeviceCaps.DeviceRGB);
|
|
_LogitechGSDK.LogiLedSetLighting((int)Math.Round(led.Color.RPercent * 100),
|
|
(int)Math.Round(led.Color.GPercent * 100),
|
|
(int)Math.Round(led.Color.BPercent * 100));
|
|
}
|
|
|
|
#endregion
|
|
}
|
|
}
|