mirror of
https://github.com/DarthAffe/CUE.NET.git
synced 2025-12-13 00:58:31 +00:00
87 lines
2.3 KiB
C#
87 lines
2.3 KiB
C#
// ReSharper disable MemberCanBePrivate.Global
|
|
// ReSharper disable UnusedAutoPropertyAccessor.Global
|
|
// ReSharper disable AutoPropertyCanBeMadeGetOnly.Global
|
|
|
|
using System.Drawing;
|
|
using CUE.NET.Helper;
|
|
|
|
namespace CUE.NET.Devices.Generic
|
|
{
|
|
/// <summary>
|
|
/// Represents a single LED of a CUE-device.
|
|
/// </summary>
|
|
public class CorsairLed
|
|
{
|
|
#region Properties & Fields
|
|
|
|
/// <summary>
|
|
/// Indicates whether the LED has changed an internal state.
|
|
/// </summary>
|
|
public bool IsDirty => RequestedColor != _color;
|
|
|
|
/// <summary>
|
|
/// Indicate whether the Color of the LED was set since the last update.
|
|
/// </summary>
|
|
public bool IsUpdated { get; private set; }
|
|
|
|
/// <summary>
|
|
/// Gets the Color the LED should be set to on the next update.
|
|
/// </summary>
|
|
public Color RequestedColor { get; private set; } = Color.Transparent;
|
|
|
|
private Color _color = Color.Transparent;
|
|
/// <summary>
|
|
/// Gets the current color of the LED. Sets the <see cref="RequestedColor" /> for the next update and mark the LED as <see cref="IsUpdated" />.
|
|
/// </summary>
|
|
public Color Color
|
|
{
|
|
get { return _color; }
|
|
set
|
|
{
|
|
if (!IsLocked)
|
|
{
|
|
RequestedColor = RequestedColor.Blend(value);
|
|
IsUpdated = true;
|
|
}
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets or sets if the color of this LED can be changed.
|
|
/// </summary>
|
|
public bool IsLocked { get; set; } = false;
|
|
|
|
#endregion
|
|
|
|
#region Constructors
|
|
|
|
internal CorsairLed() { }
|
|
|
|
#endregion
|
|
|
|
#region Methods
|
|
|
|
/// <summary>
|
|
/// Updates the LED to the requested color.
|
|
/// </summary>
|
|
internal void Update()
|
|
{
|
|
_color = RequestedColor;
|
|
IsUpdated = false;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Resets the LED back to default
|
|
/// </summary>
|
|
internal void Reset()
|
|
{
|
|
_color = Color.Transparent;
|
|
RequestedColor = Color.Transparent;
|
|
IsUpdated = false;
|
|
IsLocked = false;
|
|
}
|
|
|
|
#endregion
|
|
}
|
|
}
|