mirror of
https://github.com/DarthAffe/RGB.NET.git
synced 2025-12-13 10:08:31 +00:00
Removed unused Roccat-project
This commit is contained in:
parent
ecff7afec9
commit
5842922922
@ -1,163 +0,0 @@
|
|||||||
// ReSharper disable UnusedMethodReturnValue.Global
|
|
||||||
// ReSharper disable UnusedMember.Global
|
|
||||||
|
|
||||||
using System;
|
|
||||||
using System.Collections.Generic;
|
|
||||||
using System.IO;
|
|
||||||
using System.Linq;
|
|
||||||
using System.Runtime.InteropServices;
|
|
||||||
using RGB.NET.Core;
|
|
||||||
|
|
||||||
namespace RGB.NET.Devices.Roccat.Native
|
|
||||||
{
|
|
||||||
// ReSharper disable once InconsistentNaming
|
|
||||||
internal static class _RoccatSDK
|
|
||||||
{
|
|
||||||
#region Libary Management
|
|
||||||
|
|
||||||
private static IntPtr _dllHandle = IntPtr.Zero;
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Gets the loaded architecture (x64/x86).
|
|
||||||
/// </summary>
|
|
||||||
internal static string LoadedArchitecture { get; private set; }
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Reloads the SDK.
|
|
||||||
/// </summary>
|
|
||||||
internal static void Reload()
|
|
||||||
{
|
|
||||||
UnloadRoccatSDK();
|
|
||||||
LoadRoccatSDK();
|
|
||||||
}
|
|
||||||
|
|
||||||
private static void LoadRoccatSDK()
|
|
||||||
{
|
|
||||||
if (_dllHandle != IntPtr.Zero) return;
|
|
||||||
|
|
||||||
// HACK: Load library at runtime to support both, x86 and x64 with one managed dll
|
|
||||||
List<string> possiblePathList = Environment.Is64BitProcess ? RoccatDeviceProvider.PossibleX64NativePaths : RoccatDeviceProvider.PossibleX86NativePaths;
|
|
||||||
string dllPath = possiblePathList.FirstOrDefault(File.Exists);
|
|
||||||
if (dllPath == null) throw new RGBDeviceException($"Can't find the CUE-SDK at one of the expected locations:\r\n '{string.Join("\r\n", possiblePathList.Select(Path.GetFullPath))}'");
|
|
||||||
|
|
||||||
_dllHandle = LoadLibrary(dllPath);
|
|
||||||
|
|
||||||
_initSDKPointer = (InitSDKPointer)Marshal.GetDelegateForFunctionPointer(GetProcAddress(_dllHandle, "InitSDK"), typeof(InitSDKPointer));
|
|
||||||
_unloadSDKPointer = (UnloadSDKPointer)Marshal.GetDelegateForFunctionPointer(GetProcAddress(_dllHandle, "UnloadSDK"), typeof(UnloadSDKPointer));
|
|
||||||
_initRyosTalkPointer = (InitRyosTalkPointer)Marshal.GetDelegateForFunctionPointer(GetProcAddress(_dllHandle, "init_ryos_talk"), typeof(InitRyosTalkPointer));
|
|
||||||
_restoreLedRGBPointer = (RestoreLedRGBPointer)Marshal.GetDelegateForFunctionPointer(GetProcAddress(_dllHandle, "RestoreLEDRGB"), typeof(RestoreLedRGBPointer));
|
|
||||||
_setRyosKbSDKModePointer = (SetRyosKbSDKModePointer)Marshal.GetDelegateForFunctionPointer(GetProcAddress(_dllHandle, "set_ryos_kb_SDKmode"), typeof(SetRyosKbSDKModePointer));
|
|
||||||
_turnOffAllLedsPointer = (TurnOffAllLedsPointer)Marshal.GetDelegateForFunctionPointer(GetProcAddress(_dllHandle, "turn_off_all_LEDS"), typeof(TurnOffAllLedsPointer));
|
|
||||||
_turnOnAllLedsPointer = (TurnOnAllLedsPointer)Marshal.GetDelegateForFunctionPointer(GetProcAddress(_dllHandle, "turn_on_all_LEDS"), typeof(TurnOnAllLedsPointer));
|
|
||||||
_setLedOnPointer = (SetLedOnPointer)Marshal.GetDelegateForFunctionPointer(GetProcAddress(_dllHandle, "set_LED_on"), typeof(SetLedOnPointer));
|
|
||||||
_setLedOffPointer = (SetLedOffPointer)Marshal.GetDelegateForFunctionPointer(GetProcAddress(_dllHandle, "set_LED_off"), typeof(SetLedOffPointer));
|
|
||||||
_setAllLedsPointer = (SetAllLedsPointer)Marshal.GetDelegateForFunctionPointer(GetProcAddress(_dllHandle, "Set_all_LEDS"), typeof(SetAllLedsPointer));
|
|
||||||
_allKeyblinkingPointer = (AllKeyblinkingPointer)Marshal.GetDelegateForFunctionPointer(GetProcAddress(_dllHandle, "All_Key_Blinking"), typeof(AllKeyblinkingPointer));
|
|
||||||
_setLedRGBPointer = (SetLedRGBPointer)Marshal.GetDelegateForFunctionPointer(GetProcAddress(_dllHandle, "Set_LED_RGB"), typeof(SetLedRGBPointer));
|
|
||||||
_setAllLedSfxPointer = (SetAllLedSfxPointer)Marshal.GetDelegateForFunctionPointer(GetProcAddress(_dllHandle, "Set_all_LEDSFX"), typeof(SetAllLedSfxPointer));
|
|
||||||
}
|
|
||||||
|
|
||||||
internal static void UnloadRoccatSDK()
|
|
||||||
{
|
|
||||||
if (_dllHandle == IntPtr.Zero) return;
|
|
||||||
|
|
||||||
// ReSharper disable once EmptyEmbeddedStatement - DarthAffe 20.02.2016: We might need to reduce the internal reference counter more than once to set the library free
|
|
||||||
while (FreeLibrary(_dllHandle)) ;
|
|
||||||
_dllHandle = IntPtr.Zero;
|
|
||||||
}
|
|
||||||
|
|
||||||
[DllImport("kernel32.dll")]
|
|
||||||
private static extern IntPtr LoadLibrary(string dllToLoad);
|
|
||||||
|
|
||||||
[DllImport("kernel32.dll")]
|
|
||||||
private static extern bool FreeLibrary(IntPtr dllHandle);
|
|
||||||
|
|
||||||
[DllImport("kernel32.dll")]
|
|
||||||
private static extern IntPtr GetProcAddress(IntPtr dllHandle, string name);
|
|
||||||
|
|
||||||
#endregion
|
|
||||||
|
|
||||||
#region SDK-METHODS
|
|
||||||
|
|
||||||
#region Pointers
|
|
||||||
|
|
||||||
private static InitSDKPointer _initSDKPointer;
|
|
||||||
private static UnloadSDKPointer _unloadSDKPointer;
|
|
||||||
private static InitRyosTalkPointer _initRyosTalkPointer;
|
|
||||||
private static RestoreLedRGBPointer _restoreLedRGBPointer;
|
|
||||||
private static SetRyosKbSDKModePointer _setRyosKbSDKModePointer;
|
|
||||||
private static TurnOffAllLedsPointer _turnOffAllLedsPointer;
|
|
||||||
private static TurnOnAllLedsPointer _turnOnAllLedsPointer;
|
|
||||||
private static SetLedOnPointer _setLedOnPointer;
|
|
||||||
private static SetLedOffPointer _setLedOffPointer;
|
|
||||||
private static SetAllLedsPointer _setAllLedsPointer;
|
|
||||||
private static AllKeyblinkingPointer _allKeyblinkingPointer;
|
|
||||||
private static SetLedRGBPointer _setLedRGBPointer;
|
|
||||||
private static SetAllLedSfxPointer _setAllLedSfxPointer;
|
|
||||||
|
|
||||||
#endregion
|
|
||||||
|
|
||||||
#region Delegates
|
|
||||||
|
|
||||||
[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
|
|
||||||
private delegate IntPtr InitSDKPointer();
|
|
||||||
|
|
||||||
[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
|
|
||||||
private delegate void UnloadSDKPointer(IntPtr handle);
|
|
||||||
|
|
||||||
[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
|
|
||||||
private delegate bool InitRyosTalkPointer(IntPtr handle);
|
|
||||||
|
|
||||||
[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
|
|
||||||
private delegate void RestoreLedRGBPointer(IntPtr handle);
|
|
||||||
|
|
||||||
[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
|
|
||||||
private delegate bool SetRyosKbSDKModePointer(IntPtr handle, bool state);
|
|
||||||
|
|
||||||
[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
|
|
||||||
private delegate void TurnOffAllLedsPointer(IntPtr handle);
|
|
||||||
|
|
||||||
[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
|
|
||||||
private delegate void TurnOnAllLedsPointer(IntPtr handle);
|
|
||||||
|
|
||||||
[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
|
|
||||||
private delegate void SetLedOnPointer(IntPtr handle, byte position);
|
|
||||||
|
|
||||||
[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
|
|
||||||
private delegate void SetLedOffPointer(IntPtr handle, byte position);
|
|
||||||
|
|
||||||
[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
|
|
||||||
private delegate void SetAllLedsPointer(IntPtr handle, byte led, byte country);
|
|
||||||
|
|
||||||
[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
|
|
||||||
private delegate void AllKeyblinkingPointer(IntPtr handle, int delayTime, int loopTime);
|
|
||||||
|
|
||||||
[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
|
|
||||||
private delegate void SetLedRGBPointer(IntPtr handle, byte zone, byte effect, byte speed, byte r, byte g, byte b);
|
|
||||||
|
|
||||||
[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
|
|
||||||
private delegate void SetAllLedSfxPointer(IntPtr handle, byte ledOnOff, byte r, byte g, byte b, byte layout);
|
|
||||||
|
|
||||||
#endregion
|
|
||||||
|
|
||||||
// ReSharper disable EventExceptionNotDocumented
|
|
||||||
|
|
||||||
internal static IntPtr InitSDK() => _initSDKPointer();
|
|
||||||
internal static void UnloadSDK(IntPtr handle) => _unloadSDKPointer(handle);
|
|
||||||
internal static bool InitRyosTalk(IntPtr handle) => _initRyosTalkPointer(handle);
|
|
||||||
internal static void RestoreLedRGB(IntPtr handle) => _restoreLedRGBPointer(handle);
|
|
||||||
internal static bool SetRyosKbSDKMode(IntPtr handle, bool state) => _setRyosKbSDKModePointer(handle, state);
|
|
||||||
internal static void TurnOffAllLeds(IntPtr handle) => _turnOffAllLedsPointer(handle);
|
|
||||||
internal static void TurnOnAllLeds(IntPtr handle) => _turnOnAllLedsPointer(handle);
|
|
||||||
internal static void SetLedOn(IntPtr handle, byte position) => _setLedOnPointer(handle, position);
|
|
||||||
internal static void SetLedOff(IntPtr handle, byte position) => _setLedOffPointer(handle, position);
|
|
||||||
internal static void SetAllLeds(IntPtr handle, byte led, byte country) => _setAllLedsPointer(handle, led, country);
|
|
||||||
internal static void AllKeyblinking(IntPtr handle, int delayTime, int loopTime) => _allKeyblinkingPointer(handle, delayTime, loopTime);
|
|
||||||
internal static void SetLedRGB(IntPtr handle, byte zone, byte effect, byte speed, byte r, byte g, byte b) => _setLedRGBPointer(handle, zone, effect, speed, r, g, b);
|
|
||||||
internal static void SetAllLedSfx(IntPtr handle, byte ledOnOff, byte r, byte g, byte b, byte layout) => _setAllLedSfxPointer(handle, ledOnOff, r, g, b, layout);
|
|
||||||
|
|
||||||
// ReSharper restore EventExceptionNotDocumented
|
|
||||||
|
|
||||||
#endregion
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@ -1,56 +0,0 @@
|
|||||||
<Project Sdk="Microsoft.NET.Sdk">
|
|
||||||
<PropertyGroup>
|
|
||||||
<TargetFrameworks>net6.0</TargetFrameworks>
|
|
||||||
<LangVersion>latest</LangVersion>
|
|
||||||
<Nullable>enable</Nullable>
|
|
||||||
|
|
||||||
<Authors>Darth Affe</Authors>
|
|
||||||
<Company>Wyrez</Company>
|
|
||||||
<Language>en-US</Language>
|
|
||||||
<NeutralLanguage>en-US</NeutralLanguage>
|
|
||||||
<Title>RGB.NET.Devices.Roccat</Title>
|
|
||||||
<AssemblyName>RGB.NET.Devices.Roccat</AssemblyName>
|
|
||||||
<AssemblyTitle>RGB.NET.Devices.Roccat</AssemblyTitle>
|
|
||||||
<PackageId>RGB.NET.Devices.Roccat</PackageId>
|
|
||||||
<RootNamespace>RGB.NET.Devices.Roccat</RootNamespace>
|
|
||||||
<Description>Roccat-Device-Implementations of RGB.NET</Description>
|
|
||||||
<Summary>Roccat-Device-Implementations of RGB.NET, a C# (.NET) library for accessing various RGB-peripherals</Summary>
|
|
||||||
<Copyright>Copyright © Darth Affe 2020</Copyright>
|
|
||||||
<PackageCopyright>Copyright © Darth Affe 2020</PackageCopyright>
|
|
||||||
<PackageIconUrl>http://lib.arge.be/icon.png</PackageIconUrl>
|
|
||||||
<PackageProjectUrl>https://github.com/DarthAffe/RGB.NET</PackageProjectUrl>
|
|
||||||
<PackageLicenseUrl>https://raw.githubusercontent.com/DarthAffe/RGB.NET/master/LICENSE</PackageLicenseUrl>
|
|
||||||
<RepositoryType>Github</RepositoryType>
|
|
||||||
<RepositoryUrl>https://github.com/DarthAffe/RGB.NET</RepositoryUrl>
|
|
||||||
<GeneratePackageOnBuild>False</GeneratePackageOnBuild>
|
|
||||||
|
|
||||||
<PackageReleaseNotes></PackageReleaseNotes>
|
|
||||||
|
|
||||||
<Version>0.0.1</Version>
|
|
||||||
<AssemblyVersion>0.0.1</AssemblyVersion>
|
|
||||||
<FileVersion>0.0.1</FileVersion>
|
|
||||||
|
|
||||||
<OutputPath>..\bin\</OutputPath>
|
|
||||||
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
|
||||||
<IncludeSource>True</IncludeSource>
|
|
||||||
<IncludeSymbols>True</IncludeSymbols>
|
|
||||||
</PropertyGroup>
|
|
||||||
|
|
||||||
<PropertyGroup Condition="'$(Configuration)'=='Debug'">
|
|
||||||
<DefineConstants>$(DefineConstants);TRACE;DEBUG</DefineConstants>
|
|
||||||
<DebugSymbols>true</DebugSymbols>
|
|
||||||
<DebugType>full</DebugType>
|
|
||||||
<Optimize>false</Optimize>
|
|
||||||
</PropertyGroup>
|
|
||||||
|
|
||||||
<PropertyGroup Condition="'$(Configuration)' == 'Release'">
|
|
||||||
<DebugType>pdbonly</DebugType>
|
|
||||||
<Optimize>true</Optimize>
|
|
||||||
<NoWarn>$(NoWarn);CS1591;CS1572;CS1573</NoWarn>
|
|
||||||
<DefineConstants>$(DefineConstants);RELEASE</DefineConstants>
|
|
||||||
</PropertyGroup>
|
|
||||||
|
|
||||||
<ItemGroup>
|
|
||||||
<ProjectReference Include="..\RGB.NET.Core\RGB.NET.Core.csproj" />
|
|
||||||
</ItemGroup>
|
|
||||||
</Project>
|
|
||||||
@ -1,124 +0,0 @@
|
|||||||
using System;
|
|
||||||
using System.Collections.Generic;
|
|
||||||
using System.Collections.ObjectModel;
|
|
||||||
using RGB.NET.Core;
|
|
||||||
using RGB.NET.Devices.Roccat.Native;
|
|
||||||
|
|
||||||
namespace RGB.NET.Devices.Roccat
|
|
||||||
{
|
|
||||||
/// <inheritdoc />
|
|
||||||
/// <summary>
|
|
||||||
/// Represents a device provider responsible for roccat (TalkFX)devices.
|
|
||||||
/// </summary>
|
|
||||||
public class RoccatDeviceProvider : IRGBDeviceProvider
|
|
||||||
{
|
|
||||||
#region Properties & Fields
|
|
||||||
|
|
||||||
private static RoccatDeviceProvider _instance;
|
|
||||||
/// <summary>
|
|
||||||
/// Gets the singleton <see cref="RoccatDeviceProvider"/> instance.
|
|
||||||
/// </summary>
|
|
||||||
public static RoccatDeviceProvider Instance => _instance ?? new RoccatDeviceProvider();
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Gets a modifiable list of paths used to find the native SDK-dlls for x86 applications.
|
|
||||||
/// The first match will be used.
|
|
||||||
/// </summary>
|
|
||||||
public static List<string> PossibleX86NativePaths { get; } = new List<string> { "x86/RoccatTalkSDKWrapper.dll" };
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Gets a modifiable list of paths used to find the native SDK-dlls for x64 applications.
|
|
||||||
/// The first match will be used.
|
|
||||||
/// </summary>
|
|
||||||
public static List<string> PossibleX64NativePaths { get; } = new List<string> { "x64/RoccatTalkSDKWrapper.dll" };
|
|
||||||
|
|
||||||
/// <inheritdoc />
|
|
||||||
/// <summary>
|
|
||||||
/// Indicates if the SDK is initialized and ready to use.
|
|
||||||
/// </summary>
|
|
||||||
public bool IsInitialized { get; private set; }
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Gets the loaded architecture (x64/x86).
|
|
||||||
/// </summary>
|
|
||||||
public string LoadedArchitecture => _RoccatSDK.LoadedArchitecture;
|
|
||||||
|
|
||||||
/// <inheritdoc />
|
|
||||||
/// <summary>
|
|
||||||
/// Gets whether the application has exclusive access to the SDK or not.
|
|
||||||
/// </summary>
|
|
||||||
public bool HasExclusiveAccess { get; private set; }
|
|
||||||
|
|
||||||
/// <inheritdoc />
|
|
||||||
public IEnumerable<IRGBDevice> Devices { get; private set; }
|
|
||||||
|
|
||||||
private IntPtr _sdkHandle;
|
|
||||||
|
|
||||||
#endregion
|
|
||||||
|
|
||||||
#region Constructors
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Initializes a new instance of the <see cref="RoccatDeviceProvider"/> class.
|
|
||||||
/// </summary>
|
|
||||||
/// <exception cref="InvalidOperationException">Thrown if this constructor is called even if there is already an instance of this class.</exception>
|
|
||||||
public RoccatDeviceProvider()
|
|
||||||
{
|
|
||||||
if (_instance != null) throw new InvalidOperationException($"There can be only one instance of type {nameof(RoccatDeviceProvider)}");
|
|
||||||
_instance = this;
|
|
||||||
}
|
|
||||||
|
|
||||||
#endregion
|
|
||||||
|
|
||||||
#region Methods
|
|
||||||
|
|
||||||
/// <inheritdoc />
|
|
||||||
/// <exception cref="RGBDeviceException">Thrown if the SDK is already initialized or if the SDK is not compatible to CUE.</exception>
|
|
||||||
public bool Initialize(RGBDeviceType loadFilter = RGBDeviceType.All, bool exclusiveAccessIfPossible = false, bool throwExceptions = false)
|
|
||||||
{
|
|
||||||
IsInitialized = false;
|
|
||||||
|
|
||||||
try
|
|
||||||
{
|
|
||||||
_sdkHandle = _RoccatSDK.InitSDK();
|
|
||||||
|
|
||||||
IList<IRGBDevice> devices = new List<IRGBDevice>();
|
|
||||||
|
|
||||||
Devices = new ReadOnlyCollection<IRGBDevice>(devices);
|
|
||||||
IsInitialized = true;
|
|
||||||
}
|
|
||||||
catch
|
|
||||||
{
|
|
||||||
if (throwExceptions) throw;
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <inheritdoc />
|
|
||||||
public void ResetDevices()
|
|
||||||
{ }
|
|
||||||
|
|
||||||
/// <inheritdoc />
|
|
||||||
public void Dispose()
|
|
||||||
{
|
|
||||||
if (_sdkHandle != IntPtr.Zero)
|
|
||||||
{
|
|
||||||
try { _RoccatSDK.RestoreLedRGB(_sdkHandle); }
|
|
||||||
catch { /* We tried our best */}
|
|
||||||
|
|
||||||
try { _RoccatSDK.SetRyosKbSDKMode(_sdkHandle, false); }
|
|
||||||
catch { /* We tried our best */}
|
|
||||||
|
|
||||||
try { _RoccatSDK.UnloadSDK(_sdkHandle); }
|
|
||||||
catch { /* We tried our best */}
|
|
||||||
}
|
|
||||||
|
|
||||||
try { _RoccatSDK.UnloadRoccatSDK(); }
|
|
||||||
catch { /* at least we tried */ }
|
|
||||||
}
|
|
||||||
|
|
||||||
#endregion
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@ -1,24 +0,0 @@
|
|||||||
using RGB.NET.Core;
|
|
||||||
|
|
||||||
namespace RGB.NET.Devices.Roccat
|
|
||||||
{
|
|
||||||
/// <summary>
|
|
||||||
/// Represents a device provider loaded used to dynamically load roccat devices into an application.
|
|
||||||
/// </summary>
|
|
||||||
public class RoccatDeviceProviderLoader : IRGBDeviceProviderLoader
|
|
||||||
{
|
|
||||||
#region Properties & Fields
|
|
||||||
|
|
||||||
/// <inheritdoc />
|
|
||||||
public bool RequiresInitialization => false;
|
|
||||||
|
|
||||||
#endregion
|
|
||||||
|
|
||||||
#region Methods
|
|
||||||
|
|
||||||
/// <inheritdoc />
|
|
||||||
public IRGBDeviceProvider GetDeviceProvider() => RoccatDeviceProvider.Instance;
|
|
||||||
|
|
||||||
#endregion
|
|
||||||
}
|
|
||||||
}
|
|
||||||
Loading…
x
Reference in New Issue
Block a user