mirror of
https://github.com/CalcProgrammer1/OpenRGB.git
synced 2025-12-31 03:07:49 -05:00
* Not yet functional Commit amended for code style and cherry-pick cleanup by Adam Honse <calcprogrammer1@gmail.com>
81 lines
3.1 KiB
C++
81 lines
3.1 KiB
C++
#include "Detector.h"
|
|
#include "CMMP750Controller.h"
|
|
#include "CMARGBcontroller.h"
|
|
#include "RGBController.h"
|
|
#include "RGBController_CMMP750Controller.h"
|
|
#include <hidapi/hidapi.h>
|
|
|
|
#define COOLERMASTER_VID 0x2516
|
|
|
|
#define COOLERMASTER_MP750_XL_PID 0x0109
|
|
#define COOLERMASTER_MP750_MEDIUM_PID 0x0105
|
|
#define COOLERMASTER_ARGB_PID 0x1011
|
|
|
|
#define COOLERMASTER_NUM_DEVICES (sizeof(cm_pids) / sizeof(cm_pids[ 0 ]))
|
|
|
|
enum
|
|
{
|
|
CM_PID = 0,
|
|
CM_INTERFACE = 1
|
|
};
|
|
|
|
static const unsigned int cm_pids[][4] =
|
|
{ // PID, Interface Type
|
|
{ COOLERMASTER_MP750_XL_PID, 0x00, DEVICE_TYPE_MOUSEMAT }, //Coolermaster MP750 (Extra Large)
|
|
{ COOLERMASTER_MP750_MEDIUM_PID, 0x00, DEVICE_TYPE_MOUSEMAT }, //Coolermaster MP750 (Medium)
|
|
{ COOLERMASTER_ARGB_PID, 0x01, DEVICE_TYPE_LEDSTRIP } //Coolermaster ARGB Controller
|
|
};
|
|
|
|
/******************************************************************************************\
|
|
* *
|
|
* DetectCoolerMasterControllers *
|
|
* *
|
|
* Tests the USB address to see if any CoolerMaster controllers exists there. *
|
|
* *
|
|
\******************************************************************************************/
|
|
|
|
void DetectCoolerMasterControllers(std::vector<RGBController*>& rgb_controllers)
|
|
{
|
|
hid_device_info* info;
|
|
|
|
//Look for the passed in cm_pids
|
|
hid_init();
|
|
info = hid_enumerate(COOLERMASTER_VID, 0x0);
|
|
|
|
while(info)
|
|
{
|
|
hid_device* dev = NULL;
|
|
if(info->vendor_id == COOLERMASTER_VID)
|
|
{
|
|
for(unsigned int cm_pid_idx = 0; cm_pid_idx < COOLERMASTER_NUM_DEVICES; cm_pid_idx++)
|
|
{
|
|
if((info->product_id == cm_pids[cm_pid_idx][CM_PID])
|
|
&&(info->interface_number == cm_pids[cm_pid_idx][CM_INTERFACE]))
|
|
{
|
|
dev = hid_open_path(info->path);
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
|
|
if(dev)
|
|
{
|
|
if (dev_type == DEVICE_TYPE_MOUSEMAT)
|
|
{
|
|
CMMP750Controller* controller = new CMMP750Controller(dev, info->manufacturer_string, info->product_string, info->path);
|
|
RGBController_CMMP750Controller* rgb_controller = new RGBController_CMMP750Controller(controller);
|
|
rgb_controllers.push_back(rgb_controller);
|
|
}
|
|
else if(dev_type == DEVICE_TYPE_LEDSTRIP)
|
|
{
|
|
//Add controllers here
|
|
}
|
|
}
|
|
info = info->next;
|
|
}
|
|
hid_free_enumeration(info);
|
|
|
|
} /* DetectCoolerMasterControllers() */
|
|
|
|
REGISTER_DETECTOR("Cooler Master", DetectCoolerMasterControllers);
|