mirror of
https://github.com/DarthAffe/RGB.NET.git
synced 2025-12-13 10:08:31 +00:00
Merge pull request #303 from DarthAffe/DeviceExceptionHandling
Added exception-handling to all UpdateQueues
This commit is contained in:
commit
1b4b92b44c
@ -178,7 +178,7 @@ public abstract class AbstractRGBDeviceProvider : IRGBDeviceProvider
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="ex">The exception to throw.</param>
|
/// <param name="ex">The exception to throw.</param>
|
||||||
/// <param name="isCritical">Indicates if the exception is critical for device provider to work correctly.</param>
|
/// <param name="isCritical">Indicates if the exception is critical for device provider to work correctly.</param>
|
||||||
protected virtual void Throw(Exception ex, bool isCritical = false)
|
public virtual void Throw(Exception ex, bool isCritical = false)
|
||||||
{
|
{
|
||||||
ExceptionEventArgs args = new(ex, isCritical, ThrowsExceptions);
|
ExceptionEventArgs args = new(ex, isCritical, ThrowsExceptions);
|
||||||
try { OnException(args); } catch { /* we don't want to throw due to bad event handlers */ }
|
try { OnException(args); } catch { /* we don't want to throw due to bad event handlers */ }
|
||||||
|
|||||||
@ -20,6 +20,10 @@ public interface IRGBDeviceProvider : IDisposable
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Indicates if exceptions in the device provider are thrown or silently ignored.
|
/// Indicates if exceptions in the device provider are thrown or silently ignored.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
/// <remarks>
|
||||||
|
/// This should only be set to <c>true</c> for debugging/development purposes.
|
||||||
|
/// Production code should use the <see cref="Exception"/>-Event to handle exceptions.
|
||||||
|
/// </remarks>
|
||||||
bool ThrowsExceptions { get; }
|
bool ThrowsExceptions { get; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
|||||||
@ -89,8 +89,9 @@ public class AsusUpdateQueue : UpdateQueue
|
|||||||
|
|
||||||
Device.Apply();
|
Device.Apply();
|
||||||
}
|
}
|
||||||
catch
|
catch (Exception ex)
|
||||||
{ /* "The server threw an exception." seems to be a thing here ... */
|
{
|
||||||
|
AsusDeviceProvider.Instance.Throw(ex, true);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@ -38,6 +38,8 @@ public class CoolerMasterUpdateQueue : UpdateQueue
|
|||||||
|
|
||||||
/// <inheritdoc />
|
/// <inheritdoc />
|
||||||
protected override void Update(in ReadOnlySpan<(object key, Color color)> dataSet)
|
protected override void Update(in ReadOnlySpan<(object key, Color color)> dataSet)
|
||||||
|
{
|
||||||
|
try
|
||||||
{
|
{
|
||||||
foreach ((object key, Color color) in dataSet)
|
foreach ((object key, Color color) in dataSet)
|
||||||
{
|
{
|
||||||
@ -47,6 +49,11 @@ public class CoolerMasterUpdateQueue : UpdateQueue
|
|||||||
|
|
||||||
_CoolerMasterSDK.SetAllLedColor(_deviceMatrix, _deviceIndex);
|
_CoolerMasterSDK.SetAllLedColor(_deviceMatrix, _deviceIndex);
|
||||||
}
|
}
|
||||||
|
catch (Exception ex)
|
||||||
|
{
|
||||||
|
CoolerMasterDeviceProvider.Instance.Throw(ex, true);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
#endregion
|
#endregion
|
||||||
}
|
}
|
||||||
@ -50,6 +50,26 @@ public class CorsairDeviceProvider : AbstractRGBDeviceProvider
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
public CorsairSessionDetails SessionDetails { get; private set; } = new();
|
public CorsairSessionDetails SessionDetails { get; private set; } = new();
|
||||||
|
|
||||||
|
private CorsairSessionState _sessionState = CorsairSessionState.Invalid;
|
||||||
|
public CorsairSessionState SessionState
|
||||||
|
{
|
||||||
|
get => _sessionState;
|
||||||
|
private set
|
||||||
|
{
|
||||||
|
_sessionState = value;
|
||||||
|
|
||||||
|
try { SessionStateChanged?.Invoke(this, SessionState); }
|
||||||
|
catch { /* catch faulty event-handlers*/ }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
#endregion
|
||||||
|
|
||||||
|
#region Events
|
||||||
|
|
||||||
|
// ReSharper disable once UnassignedField.Global
|
||||||
|
public EventHandler<CorsairSessionState>? SessionStateChanged;
|
||||||
|
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
#region Constructors
|
#region Constructors
|
||||||
@ -74,7 +94,7 @@ public class CorsairDeviceProvider : AbstractRGBDeviceProvider
|
|||||||
|
|
||||||
using ManualResetEventSlim waitEvent = new(false);
|
using ManualResetEventSlim waitEvent = new(false);
|
||||||
|
|
||||||
void OnSessionStateChanged(object? sender, CorsairSessionState state)
|
void OnInitializeSessionStateChanged(object? sender, CorsairSessionState state)
|
||||||
{
|
{
|
||||||
if (state == CorsairSessionState.Connected)
|
if (state == CorsairSessionState.Connected)
|
||||||
// ReSharper disable once AccessToDisposedClosure
|
// ReSharper disable once AccessToDisposedClosure
|
||||||
@ -84,6 +104,7 @@ public class CorsairDeviceProvider : AbstractRGBDeviceProvider
|
|||||||
try
|
try
|
||||||
{
|
{
|
||||||
_CUESDK.SessionStateChanged += OnSessionStateChanged;
|
_CUESDK.SessionStateChanged += OnSessionStateChanged;
|
||||||
|
_CUESDK.SessionStateChanged += OnInitializeSessionStateChanged;
|
||||||
|
|
||||||
CorsairError errorCode = _CUESDK.CorsairConnect();
|
CorsairError errorCode = _CUESDK.CorsairConnect();
|
||||||
if (errorCode != CorsairError.Success)
|
if (errorCode != CorsairError.Success)
|
||||||
@ -100,10 +121,12 @@ public class CorsairDeviceProvider : AbstractRGBDeviceProvider
|
|||||||
}
|
}
|
||||||
finally
|
finally
|
||||||
{
|
{
|
||||||
_CUESDK.SessionStateChanged -= OnSessionStateChanged;
|
_CUESDK.SessionStateChanged -= OnInitializeSessionStateChanged;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private void OnSessionStateChanged(object? sender, CorsairSessionState state) => SessionState = state;
|
||||||
|
|
||||||
/// <inheritdoc />
|
/// <inheritdoc />
|
||||||
protected override IEnumerable<IRGBDevice> LoadDevices()
|
protected override IEnumerable<IRGBDevice> LoadDevices()
|
||||||
{
|
{
|
||||||
|
|||||||
@ -39,6 +39,8 @@ public class CorsairDeviceUpdateQueue : UpdateQueue
|
|||||||
|
|
||||||
/// <inheritdoc />
|
/// <inheritdoc />
|
||||||
protected override unsafe void Update(in ReadOnlySpan<(object key, Color color)> dataSet)
|
protected override unsafe void Update(in ReadOnlySpan<(object key, Color color)> dataSet)
|
||||||
|
{
|
||||||
|
try
|
||||||
{
|
{
|
||||||
Span<_CorsairLedColor> colors = new((void*)_colorPtr, dataSet.Length);
|
Span<_CorsairLedColor> colors = new((void*)_colorPtr, dataSet.Length);
|
||||||
for (int i = 0; i < colors.Length; i++)
|
for (int i = 0; i < colors.Length; i++)
|
||||||
@ -52,6 +54,11 @@ public class CorsairDeviceUpdateQueue : UpdateQueue
|
|||||||
if (error != CorsairError.Success)
|
if (error != CorsairError.Success)
|
||||||
throw new RGBDeviceException($"Failed to update device '{_device.id}'. (ErrorCode: {error})");
|
throw new RGBDeviceException($"Failed to update device '{_device.id}'. (ErrorCode: {error})");
|
||||||
}
|
}
|
||||||
|
catch (Exception ex)
|
||||||
|
{
|
||||||
|
CorsairDeviceProvider.Instance.Throw(ex, true);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/// <inheritdoc />
|
/// <inheritdoc />
|
||||||
public override void Dispose()
|
public override void Dispose()
|
||||||
|
|||||||
@ -60,6 +60,8 @@ public class E131UpdateQueue : UpdateQueue
|
|||||||
|
|
||||||
/// <inheritdoc />
|
/// <inheritdoc />
|
||||||
protected override void Update(in ReadOnlySpan<(object key, Color color)> dataSet)
|
protected override void Update(in ReadOnlySpan<(object key, Color color)> dataSet)
|
||||||
|
{
|
||||||
|
try
|
||||||
{
|
{
|
||||||
DataPacket.SetSequenceNumber(GetNextSequenceNumber());
|
DataPacket.SetSequenceNumber(GetNextSequenceNumber());
|
||||||
|
|
||||||
@ -72,6 +74,11 @@ public class E131UpdateQueue : UpdateQueue
|
|||||||
|
|
||||||
_socket.Send(DataPacket, DataPacket.Length);
|
_socket.Send(DataPacket, DataPacket.Length);
|
||||||
}
|
}
|
||||||
|
catch (Exception ex)
|
||||||
|
{
|
||||||
|
DMXDeviceProvider.Instance.Throw(ex, true);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Increments the sequence number and wraps it if neded.
|
/// Increments the sequence number and wraps it if neded.
|
||||||
|
|||||||
@ -26,6 +26,8 @@ public class LogitechPerDeviceUpdateQueue : UpdateQueue
|
|||||||
|
|
||||||
/// <inheritdoc />
|
/// <inheritdoc />
|
||||||
protected override void Update(in ReadOnlySpan<(object key, Color color)> dataSet)
|
protected override void Update(in ReadOnlySpan<(object key, Color color)> dataSet)
|
||||||
|
{
|
||||||
|
try
|
||||||
{
|
{
|
||||||
Color color = dataSet[0].color;
|
Color color = dataSet[0].color;
|
||||||
|
|
||||||
@ -34,6 +36,11 @@ public class LogitechPerDeviceUpdateQueue : UpdateQueue
|
|||||||
(int)Math.Round(color.G * 100),
|
(int)Math.Round(color.G * 100),
|
||||||
(int)Math.Round(color.B * 100));
|
(int)Math.Round(color.B * 100));
|
||||||
}
|
}
|
||||||
|
catch (Exception ex)
|
||||||
|
{
|
||||||
|
LogitechDeviceProvider.Instance.Throw(ex, true);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
#endregion
|
#endregion
|
||||||
}
|
}
|
||||||
@ -26,6 +26,8 @@ public class LogitechPerKeyUpdateQueue : UpdateQueue
|
|||||||
|
|
||||||
/// <inheritdoc />
|
/// <inheritdoc />
|
||||||
protected override void Update(in ReadOnlySpan<(object key, Color color)> dataSet)
|
protected override void Update(in ReadOnlySpan<(object key, Color color)> dataSet)
|
||||||
|
{
|
||||||
|
try
|
||||||
{
|
{
|
||||||
_LogitechGSDK.LogiLedSetTargetDevice(LogitechDeviceCaps.PerKeyRGB);
|
_LogitechGSDK.LogiLedSetTargetDevice(LogitechDeviceCaps.PerKeyRGB);
|
||||||
|
|
||||||
@ -39,6 +41,11 @@ public class LogitechPerKeyUpdateQueue : UpdateQueue
|
|||||||
(int)MathF.Round(color.B * 100));
|
(int)MathF.Round(color.B * 100));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
catch (Exception ex)
|
||||||
|
{
|
||||||
|
LogitechDeviceProvider.Instance.Throw(ex, true);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
#endregion
|
#endregion
|
||||||
}
|
}
|
||||||
@ -35,10 +35,17 @@ public class MsiDeviceUpdateQueue : UpdateQueue
|
|||||||
|
|
||||||
/// <inheritdoc />
|
/// <inheritdoc />
|
||||||
protected override void Update(in ReadOnlySpan<(object key, Color color)> dataSet)
|
protected override void Update(in ReadOnlySpan<(object key, Color color)> dataSet)
|
||||||
|
{
|
||||||
|
try
|
||||||
{
|
{
|
||||||
foreach ((object key, Color color) in dataSet)
|
foreach ((object key, Color color) in dataSet)
|
||||||
_MsiSDK.SetLedColor(_deviceType, (int)key, color.GetR(), color.GetG(), color.GetB());
|
_MsiSDK.SetLedColor(_deviceType, (int)key, color.GetR(), color.GetG(), color.GetB());
|
||||||
}
|
}
|
||||||
|
catch (Exception ex)
|
||||||
|
{
|
||||||
|
MsiDeviceProvider.Instance.Throw(ex, true);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
#endregion
|
#endregion
|
||||||
}
|
}
|
||||||
@ -36,10 +36,17 @@ public abstract class MidiUpdateQueue : UpdateQueue
|
|||||||
|
|
||||||
/// <inheritdoc />
|
/// <inheritdoc />
|
||||||
protected override void Update(in ReadOnlySpan<(object key, Color color)> dataSet)
|
protected override void Update(in ReadOnlySpan<(object key, Color color)> dataSet)
|
||||||
|
{
|
||||||
|
try
|
||||||
{
|
{
|
||||||
foreach ((object key, Color color) in dataSet)
|
foreach ((object key, Color color) in dataSet)
|
||||||
SendMessage(CreateMessage(key, color));
|
SendMessage(CreateMessage(key, color));
|
||||||
}
|
}
|
||||||
|
catch (Exception ex)
|
||||||
|
{
|
||||||
|
NovationDeviceProvider.Instance.Throw(ex, true);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Sends the specified message to the device this queue is performing updates for.
|
/// Sends the specified message to the device this queue is performing updates for.
|
||||||
|
|||||||
@ -50,12 +50,19 @@ public class OpenRGBUpdateQueue : UpdateQueue
|
|||||||
|
|
||||||
/// <inheritdoc />
|
/// <inheritdoc />
|
||||||
protected override void Update(in ReadOnlySpan<(object key, Color color)> dataSet)
|
protected override void Update(in ReadOnlySpan<(object key, Color color)> dataSet)
|
||||||
|
{
|
||||||
|
try
|
||||||
{
|
{
|
||||||
foreach ((object key, Color color) in dataSet)
|
foreach ((object key, Color color) in dataSet)
|
||||||
_colors[(int)key] = new OpenRGBColor(color.GetR(), color.GetG(), color.GetB());
|
_colors[(int)key] = new OpenRGBColor(color.GetR(), color.GetG(), color.GetB());
|
||||||
|
|
||||||
_openRGB.UpdateLeds(_deviceid, _colors);
|
_openRGB.UpdateLeds(_deviceid, _colors);
|
||||||
}
|
}
|
||||||
|
catch (Exception ex)
|
||||||
|
{
|
||||||
|
OpenRGBDeviceProvider.Instance.Throw(ex, true);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
#endregion
|
#endregion
|
||||||
}
|
}
|
||||||
|
|||||||
@ -45,6 +45,8 @@ public class PicoPiBulkUpdateQueue : UpdateQueue
|
|||||||
|
|
||||||
/// <inheritdoc />
|
/// <inheritdoc />
|
||||||
protected override void Update(in ReadOnlySpan<(object key, Color color)> dataSet)
|
protected override void Update(in ReadOnlySpan<(object key, Color color)> dataSet)
|
||||||
|
{
|
||||||
|
try
|
||||||
{
|
{
|
||||||
Span<byte> buffer = _dataBuffer;
|
Span<byte> buffer = _dataBuffer;
|
||||||
foreach ((object key, Color color) in dataSet)
|
foreach ((object key, Color color) in dataSet)
|
||||||
@ -61,6 +63,11 @@ public class PicoPiBulkUpdateQueue : UpdateQueue
|
|||||||
|
|
||||||
_sdk.SendBulkUpdate(buffer, _channel);
|
_sdk.SendBulkUpdate(buffer, _channel);
|
||||||
}
|
}
|
||||||
|
catch (Exception ex)
|
||||||
|
{
|
||||||
|
PicoPiDeviceProvider.Instance.Throw(ex, true);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
#endregion
|
#endregion
|
||||||
}
|
}
|
||||||
@ -42,6 +42,8 @@ public class PicoPiHIDUpdateQueue : UpdateQueue
|
|||||||
|
|
||||||
/// <inheritdoc />
|
/// <inheritdoc />
|
||||||
protected override void Update(in ReadOnlySpan<(object key, Color color)> dataSet)
|
protected override void Update(in ReadOnlySpan<(object key, Color color)> dataSet)
|
||||||
|
{
|
||||||
|
try
|
||||||
{
|
{
|
||||||
Span<byte> buffer = _dataBuffer;
|
Span<byte> buffer = _dataBuffer;
|
||||||
foreach ((object key, Color color) in dataSet)
|
foreach ((object key, Color color) in dataSet)
|
||||||
@ -58,6 +60,11 @@ public class PicoPiHIDUpdateQueue : UpdateQueue
|
|||||||
|
|
||||||
_sdk.SendHidUpdate(buffer, _channel);
|
_sdk.SendHidUpdate(buffer, _channel);
|
||||||
}
|
}
|
||||||
|
catch (Exception ex)
|
||||||
|
{
|
||||||
|
PicoPiDeviceProvider.Instance.Throw(ex, true);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
#endregion
|
#endregion
|
||||||
}
|
}
|
||||||
@ -23,8 +23,7 @@ public abstract class RazerUpdateQueue : UpdateQueue
|
|||||||
/// <param name="updateTrigger">The update trigger used to update this queue.</param>
|
/// <param name="updateTrigger">The update trigger used to update this queue.</param>
|
||||||
protected RazerUpdateQueue(IDeviceUpdateTrigger updateTrigger)
|
protected RazerUpdateQueue(IDeviceUpdateTrigger updateTrigger)
|
||||||
: base(updateTrigger)
|
: base(updateTrigger)
|
||||||
{
|
{ }
|
||||||
}
|
|
||||||
|
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
@ -32,6 +31,8 @@ public abstract class RazerUpdateQueue : UpdateQueue
|
|||||||
|
|
||||||
/// <inheritdoc />
|
/// <inheritdoc />
|
||||||
protected override void Update(in ReadOnlySpan<(object key, Color color)> dataSet)
|
protected override void Update(in ReadOnlySpan<(object key, Color color)> dataSet)
|
||||||
|
{
|
||||||
|
try
|
||||||
{
|
{
|
||||||
IntPtr effectParams = CreateEffectParams(dataSet);
|
IntPtr effectParams = CreateEffectParams(dataSet);
|
||||||
Guid effectId = Guid.NewGuid();
|
Guid effectId = Guid.NewGuid();
|
||||||
@ -44,6 +45,11 @@ public abstract class RazerUpdateQueue : UpdateQueue
|
|||||||
|
|
||||||
_lastEffect = effectId;
|
_lastEffect = effectId;
|
||||||
}
|
}
|
||||||
|
catch (Exception ex)
|
||||||
|
{
|
||||||
|
RazerDeviceProvider.Instance.Throw(ex, true);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Creates the effect used to update this device.
|
/// Creates the effect used to update this device.
|
||||||
|
|||||||
@ -36,12 +36,19 @@ internal class SteelSeriesDeviceUpdateQueue : UpdateQueue
|
|||||||
#region Methods
|
#region Methods
|
||||||
|
|
||||||
protected override void OnUpdate(object? sender, CustomUpdateData customData)
|
protected override void OnUpdate(object? sender, CustomUpdateData customData)
|
||||||
|
{
|
||||||
|
try
|
||||||
{
|
{
|
||||||
if (customData[CustomUpdateDataIndex.HEARTBEAT] as bool? ?? false)
|
if (customData[CustomUpdateDataIndex.HEARTBEAT] as bool? ?? false)
|
||||||
SteelSeriesSDK.SendHeartbeat();
|
SteelSeriesSDK.SendHeartbeat();
|
||||||
else
|
else
|
||||||
base.OnUpdate(sender, customData);
|
base.OnUpdate(sender, customData);
|
||||||
}
|
}
|
||||||
|
catch (Exception ex)
|
||||||
|
{
|
||||||
|
SteelSeriesDeviceProvider.Instance.Throw(ex, true);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/// <inheritdoc />
|
/// <inheritdoc />
|
||||||
protected override void Update(in ReadOnlySpan<(object key, Color color)> dataSet)
|
protected override void Update(in ReadOnlySpan<(object key, Color color)> dataSet)
|
||||||
|
|||||||
@ -57,6 +57,8 @@ public abstract class SerialConnectionUpdateQueue<TData> : UpdateQueue
|
|||||||
|
|
||||||
/// <inheritdoc />
|
/// <inheritdoc />
|
||||||
protected override void Update(in ReadOnlySpan<(object key, Color color)> dataSet)
|
protected override void Update(in ReadOnlySpan<(object key, Color color)> dataSet)
|
||||||
|
{
|
||||||
|
try
|
||||||
{
|
{
|
||||||
foreach (TData command in GetCommands(dataSet.ToArray()))
|
foreach (TData command in GetCommands(dataSet.ToArray()))
|
||||||
{
|
{
|
||||||
@ -64,6 +66,11 @@ public abstract class SerialConnectionUpdateQueue<TData> : UpdateQueue
|
|||||||
SendCommand(command);
|
SendCommand(command);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
catch (Exception ex)
|
||||||
|
{
|
||||||
|
WS281XDeviceProvider.Instance.Throw(ex, true);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets the commands that need to be sent to the device to update the requested colors.
|
/// Gets the commands that need to be sent to the device to update the requested colors.
|
||||||
|
|||||||
@ -32,6 +32,8 @@ public class WootingUpdateQueue : UpdateQueue
|
|||||||
|
|
||||||
/// <inheritdoc />
|
/// <inheritdoc />
|
||||||
protected override void Update(in ReadOnlySpan<(object key, Color color)> dataSet)
|
protected override void Update(in ReadOnlySpan<(object key, Color color)> dataSet)
|
||||||
|
{
|
||||||
|
try
|
||||||
{
|
{
|
||||||
lock (_WootingSDK.SdkLock)
|
lock (_WootingSDK.SdkLock)
|
||||||
{
|
{
|
||||||
@ -46,6 +48,11 @@ public class WootingUpdateQueue : UpdateQueue
|
|||||||
_WootingSDK.ArrayUpdateKeyboard();
|
_WootingSDK.ArrayUpdateKeyboard();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
catch (Exception ex)
|
||||||
|
{
|
||||||
|
WootingDeviceProvider.Instance.Throw(ex, true);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
#endregion
|
#endregion
|
||||||
}
|
}
|
||||||
Loading…
x
Reference in New Issue
Block a user