Update Redragon code, split mouse and keyboard into their own controllers, and get mouse control working

This commit is contained in:
Adam Honse 2020-03-25 20:44:59 -05:00
parent 7c221416cc
commit ad85efcb14
8 changed files with 383 additions and 152 deletions

View file

@ -1,5 +1,7 @@
#include "RedragonController.h"
#include "RedragonK556Controller.h"
#include "RedragonM711Controller.h"
#include "RGBController.h"
#include "RGBController_RedragonM711.h"
#include "RGBController_Dummy.h"
#include <vector>
#include <hidapi/hidapi.h>
@ -81,16 +83,28 @@ void DetectRedragonControllers(std::vector<RGBController*>& rgb_controllers)
if( dev )
{
RedragonController* controller = new RedragonController(dev);
switch(device_list[device_idx].type)
{
case DEVICE_TYPE_KEYBOARD:
{
RedragonK556Controller* controller = new RedragonK556Controller(dev);
RGBController_Dummy* rgb_controller = new RGBController_Dummy();
//if(controller->GetDeviceType() != DEVICE_TYPE_UNKNOWN)
//{
RGBController_Dummy* rgb_controller = new RGBController_Dummy();
rgb_controller->name = device_list[device_idx].name;
rgb_controllers.push_back(rgb_controller);
}
break;
rgb_controller->name = device_list[device_idx].name;
rgb_controllers.push_back(rgb_controller);
//}
case DEVICE_TYPE_MOUSE:
{
RedragonM711Controller* controller = new RedragonM711Controller(dev);
RGBController_RedragonM711* rgb_controller = new RGBController_RedragonM711(controller);
rgb_controllers.push_back(rgb_controller);
}
break;
}
}
}
}