1
0
mirror of https://github.com/DarthAffe/CUE.NET.git synced 2025-12-12 16:58:29 +00:00

Fixed use before initialize

This commit is contained in:
Darth Affe 2016-09-11 12:47:47 +02:00
parent 1eba5c66be
commit 072f0c24ed
7 changed files with 24 additions and 17 deletions

View File

@ -171,19 +171,20 @@ namespace CUE.NET
if (!info.CapsMask.HasFlag(CorsairDeviceCaps.Lighting))
continue; // Everything that doesn't support lighting control is useless
ICueDevice device;
switch (info.Type)
{
case CorsairDeviceType.Keyboard:
devices.Add(KeyboardSDK = new CorsairKeyboard(new CorsairKeyboardDeviceInfo(nativeDeviceInfo)));
device = KeyboardSDK = new CorsairKeyboard(new CorsairKeyboardDeviceInfo(nativeDeviceInfo));
break;
case CorsairDeviceType.Mouse:
devices.Add(MouseSDK = new CorsairMouse(new CorsairMouseDeviceInfo(nativeDeviceInfo)));
device = MouseSDK = new CorsairMouse(new CorsairMouseDeviceInfo(nativeDeviceInfo));
break;
case CorsairDeviceType.Headset:
devices.Add(HeadsetSDK = new CorsairHeadset(new CorsairHeadsetDeviceInfo(nativeDeviceInfo)));
device = HeadsetSDK = new CorsairHeadset(new CorsairHeadsetDeviceInfo(nativeDeviceInfo));
break;
case CorsairDeviceType.Mousemat:
devices.Add(MousematSDK = new CorsairMousemat(new CorsairMousematDeviceInfo(nativeDeviceInfo)));
device = MousematSDK = new CorsairMousemat(new CorsairMousematDeviceInfo(nativeDeviceInfo));
break;
// ReSharper disable once RedundantCaseLabel
case CorsairDeviceType.Unknown:
@ -191,6 +192,9 @@ namespace CUE.NET
throw new WrapperException("Unknown Device-Type");
}
device.Initialize();
devices.Add(device);
error = LastError;
if (error != CorsairError.Success)
Throw(error);

View File

@ -140,8 +140,6 @@ namespace CUE.NET.Devices.Generic
{
this.DeviceInfo = info;
// ReSharper disable once VirtualMemberCallInConstructor - I know, but I need this ...
InitializeLeds();
DeviceRectangle = RectangleHelper.CreateRectangleFromRectangles((this).Select(x => x.LedRectangle));
}
@ -152,9 +150,9 @@ namespace CUE.NET.Devices.Generic
#region Initialize
/// <summary>
/// Initializes the LEDs of the device.
/// Initializes the device.
/// </summary>
protected abstract void InitializeLeds();
public abstract void Initialize();
/// <summary>
/// Initializes the LED-Object with the specified id.

View File

@ -39,9 +39,9 @@ namespace CUE.NET.Devices.Headset
#region Methods
/// <summary>
/// Initializes the LEDs of the device.
/// Initializes the the headset.
/// </summary>
protected override void InitializeLeds()
public override void Initialize()
{
InitializeLed(CorsairHeadsetLedId.LeftLogo, new RectangleF(0, 0, 1, 1));
InitializeLed(CorsairHeadsetLedId.RightLogo, new RectangleF(1, 0, 1, 1));

View File

@ -11,7 +11,7 @@ using CUE.NET.Groups;
namespace CUE.NET.Devices
{
#region EventHandler
/// <summary>
/// Represents the event-handler of the Exception-event.
/// </summary>
@ -134,6 +134,11 @@ namespace CUE.NET.Devices
#region Methods
/// <summary>
/// Initializes the device.
/// </summary>
void Initialize();
/// <summary>
/// Perform an update for all dirty keys, or all keys if flushLeds is set to true.
/// </summary>

View File

@ -42,9 +42,9 @@ namespace CUE.NET.Devices.Keyboard
#region Methods
/// <summary>
/// Initializes the LEDs of the device.
/// Initializes the keyboard.
/// </summary>
protected override void InitializeLeds()
public override void Initialize()
{
_CorsairLedPositions nativeLedPositions = (_CorsairLedPositions)Marshal.PtrToStructure(_CUESDK.CorsairGetLedPositions(), typeof(_CorsairLedPositions));
int structSize = Marshal.SizeOf(typeof(_CorsairLedPosition));

View File

@ -40,9 +40,9 @@ namespace CUE.NET.Devices.Mouse
#region Methods
/// <summary>
/// Initializes the LEDs of the device.
/// Initializes the mouse.
/// </summary>
protected override void InitializeLeds()
public override void Initialize()
{
switch (MouseDeviceInfo.PhysicalLayout)
{

View File

@ -45,9 +45,9 @@ namespace CUE.NET.Devices.Mousemat
#region Methods
/// <summary>
/// Initializes the LEDs of the device.
/// Initializes the mousemat.
/// </summary>
protected override void InitializeLeds()
public override void Initialize()
{
int deviceCount = _CUESDK.CorsairGetDeviceCount();