mirror of
https://github.com/CalcProgrammer1/OpenRGB.git
synced 2026-01-17 11:37:49 -05:00
83 lines
3.1 KiB
C++
83 lines
3.1 KiB
C++
/*-------------------------------------------------------------------*\
|
|
| XPGSpectrixS40GControllerDetect.cpp |
|
|
| |
|
|
| Driver for XPG's Spectrix S40G NVMe |
|
|
| |
|
|
| NicolasNewman 25th Mar 2021 |
|
|
| |
|
|
\*-------------------------------------------------------------------*/
|
|
|
|
#include "Detector.h"
|
|
#include "XPGSpectrixS40GController.h"
|
|
#include "RGBController.h"
|
|
#include "RGBController_XPGSpectrixS40G.h"
|
|
#include <vector>
|
|
#include <hidapi/hidapi.h>
|
|
|
|
#ifdef _WIN32
|
|
#define DEVBUFSIZE (128 * 1024)
|
|
#include <windows.h>
|
|
#include <fileapi.h>
|
|
#else
|
|
// TODO
|
|
#endif
|
|
|
|
/******************************************************************************************\
|
|
* *
|
|
* DetectXPGSpectrixS40GControllers *
|
|
* *
|
|
* Tests for the existance of a file descriptor matching *
|
|
* SCSI#Disk&Ven_NVMe&Prod_XPG_SPECTRIX_S40# on Windows machines *
|
|
* *
|
|
\******************************************************************************************/
|
|
|
|
#ifdef _WIN32
|
|
int Search(wchar_t *dev_name) {
|
|
wchar_t buff[DEVBUFSIZE] = L"";
|
|
int wchar_count;
|
|
|
|
wchar_count = QueryDosDeviceW(NULL, buff, DEVBUFSIZE);
|
|
if (wchar_count == 0) {
|
|
return 0;
|
|
}
|
|
for (int i = 0; i < wchar_count; i++) {
|
|
if (wcsstr(buff + i, L"SCSI#Disk&Ven_NVMe&Prod_XPG_SPECTRIX_S40#")) {
|
|
wcsncpy(dev_name, buff + i, MAX_PATH);
|
|
(dev_name)[MAX_PATH - 1] = '\0';
|
|
return 1;
|
|
}
|
|
i += wcslen(buff + i);
|
|
}
|
|
return 0;
|
|
}
|
|
#else
|
|
int Search() {
|
|
return 0;
|
|
}
|
|
#endif /* Search() */
|
|
|
|
|
|
void DetectSpectrixS40GControllers(std::vector<RGBController*>& rgb_controllers)
|
|
{
|
|
XPGSpectrixS40GController* new_xpg_s40g;
|
|
RGBController_XPGSpectrixS40G* new_controller;
|
|
#ifdef _WIN32
|
|
// https://docs.microsoft.com/en-us/windows-hardware/drivers/install/identifiers-for-scsi-devices
|
|
wchar_t dev_name[MAX_PATH];
|
|
if (Search(dev_name)) {
|
|
new_xpg_s40g = new XPGSpectrixS40GController(0x67);
|
|
int result = new_xpg_s40g->SetHandle(dev_name);
|
|
if (result) {
|
|
new_controller = new RGBController_XPGSpectrixS40G(new_xpg_s40g);
|
|
rgb_controllers.push_back(new_controller);
|
|
} else {
|
|
delete new_xpg_s40g;
|
|
}
|
|
}
|
|
#else
|
|
// TODO
|
|
#endif
|
|
} /* DetectSpectrixS40GControllers() */
|
|
|
|
REGISTER_DETECTOR("XPG Spectrix S40G NVMe", DetectSpectrixS40GControllers);
|