mirror of
https://github.com/CalcProgrammer1/OpenRGB.git
synced 2025-12-24 07:47:49 -05:00
217 lines
8.7 KiB
C++
217 lines
8.7 KiB
C++
/*-----------------------------------------*\
|
|
| RGBController_LogitechLightspeed.cpp |
|
|
| |
|
|
| Generic RGB Interface for |
|
|
| Logitech Lightspeed Gaming Mice |
|
|
| |
|
|
| TheRogueZeta 8/5/2020 |
|
|
\*-----------------------------------------*/
|
|
|
|
#include "RGBController_LogitechLightspeed.h"
|
|
|
|
RGBController_LogitechLightspeed::RGBController_LogitechLightspeed(LogitechLightspeedController* logitech_ptr)
|
|
{
|
|
logitech = logitech_ptr;
|
|
bool connected = logitech->lightspeed->connected();
|
|
|
|
mode Off;
|
|
Off.name = "Off";
|
|
Off.value = LOGITECH_G_PRO_WIRELESS_MODE_OFF;
|
|
Off.flags = 0;
|
|
Off.color_mode = MODE_COLORS_NONE;
|
|
modes.push_back(Off);
|
|
|
|
if(connected)
|
|
{
|
|
name = logitech->lightspeed->device_name;
|
|
vendor = "Logitech";
|
|
description = "Logitech Wireless Lightspeed Device";
|
|
location = logitech->GetDeviceLocation();
|
|
serial = logitech->GetSerialString();
|
|
|
|
switch(logitech->lightspeed->logitech_device_type)
|
|
{
|
|
case LOGITECH_DEVICE_TYPE_KEYBOARD:
|
|
type = DEVICE_TYPE_KEYBOARD;
|
|
break;
|
|
|
|
case LOGITECH_DEVICE_TYPE_MOUSE:
|
|
type = DEVICE_TYPE_MOUSE;
|
|
break;
|
|
|
|
case LOGITECH_DEVICE_TYPE_MOUSEPAD:
|
|
type = DEVICE_TYPE_MOUSEMAT;
|
|
break;
|
|
|
|
case LOGITECH_DEVICE_TYPE_HEADSET:
|
|
type = DEVICE_TYPE_HEADSET;
|
|
break;
|
|
|
|
default:
|
|
type = DEVICE_TYPE_UNKNOWN;
|
|
LOG_INFO("Logitech device type not known: %i", logitech->lightspeed->logitech_device_type);
|
|
}
|
|
|
|
mode Direct;
|
|
Direct.name = "Direct";
|
|
Direct.value = 0xFF;
|
|
Direct.flags = MODE_FLAG_HAS_PER_LED_COLOR;
|
|
Direct.color_mode = MODE_COLORS_PER_LED;
|
|
modes.push_back(Direct);
|
|
|
|
mode Static;
|
|
Static.name = "Static";
|
|
Static.value = LOGITECH_G_PRO_WIRELESS_MODE_STATIC;
|
|
Static.flags = MODE_FLAG_HAS_PER_LED_COLOR | MODE_FLAG_HAS_BRIGHTNESS;
|
|
Static.color_mode = MODE_COLORS_PER_LED;
|
|
Static.brightness_min = LOGITECH_G_PRO_WIRELESS_BRIGHTNESS_MIN;
|
|
Static.brightness_max = LOGITECH_G_PRO_WIRELESS_BRIGHTNESS_MAX;
|
|
Static.brightness = LOGITECH_G_PRO_WIRELESS_BRIGHTNESS_MAX;
|
|
modes.push_back(Static);
|
|
|
|
mode Cycle;
|
|
Cycle.name = "Spectrum Cycle";
|
|
Cycle.value = LOGITECH_G_PRO_WIRELESS_MODE_CYCLE;
|
|
Cycle.flags = MODE_FLAG_HAS_SPEED | MODE_FLAG_HAS_BRIGHTNESS;
|
|
Cycle.color_mode = MODE_COLORS_NONE;
|
|
Cycle.brightness_min = LOGITECH_G_PRO_WIRELESS_BRIGHTNESS_MIN;
|
|
Cycle.brightness_max = LOGITECH_G_PRO_WIRELESS_BRIGHTNESS_MAX;
|
|
Cycle.brightness = LOGITECH_G_PRO_WIRELESS_BRIGHTNESS_MAX;
|
|
Cycle.speed_min = LOGITECH_G_PRO_WIRELESS_SPEED_SLOWEST;
|
|
Cycle.speed_max = LOGITECH_G_PRO_WIRELESS_SPEED_FASTEST;
|
|
Cycle.speed = LOGITECH_G_PRO_WIRELESS_SPEED_NORMAL;
|
|
modes.push_back(Cycle);
|
|
|
|
mode Breathing;
|
|
Breathing.name = "Breathing";
|
|
Breathing.value = LOGITECH_G_PRO_WIRELESS_MODE_BREATHING;
|
|
Breathing.flags = MODE_FLAG_HAS_PER_LED_COLOR | MODE_FLAG_HAS_SPEED | MODE_FLAG_HAS_BRIGHTNESS;
|
|
Breathing.color_mode = MODE_COLORS_PER_LED;
|
|
Breathing.brightness_min = LOGITECH_G_PRO_WIRELESS_BRIGHTNESS_MIN;
|
|
Breathing.brightness_max = LOGITECH_G_PRO_WIRELESS_BRIGHTNESS_MAX;
|
|
Breathing.brightness = LOGITECH_G_PRO_WIRELESS_BRIGHTNESS_MAX;
|
|
Breathing.speed_min = LOGITECH_G_PRO_WIRELESS_SPEED_SLOWEST;
|
|
Breathing.speed_max = LOGITECH_G_PRO_WIRELESS_SPEED_FASTEST;
|
|
Breathing.speed = LOGITECH_G_PRO_WIRELESS_SPEED_NORMAL;
|
|
modes.push_back(Breathing);
|
|
|
|
SetupZones();
|
|
}
|
|
else
|
|
{
|
|
name = "Idle Lightspeed Device";
|
|
vendor = "Logitech";
|
|
type = DEVICE_TYPE_UNKNOWN;
|
|
description = "Idle Logitech Wireless Lightspeed Device";
|
|
location = logitech->GetDeviceLocation();
|
|
serial = logitech->GetSerialString();
|
|
}
|
|
}
|
|
|
|
RGBController_LogitechLightspeed::~RGBController_LogitechLightspeed()
|
|
{
|
|
delete logitech;
|
|
}
|
|
|
|
void RGBController_LogitechLightspeed::SetupZones()
|
|
{
|
|
const std::string zone_string = "Zone";
|
|
const std::string led_string = "LED";
|
|
uint8_t led_count = logitech->lightspeed->getLED_count();
|
|
|
|
if(led_count > 0)
|
|
{
|
|
for(size_t i = 0; i < led_count; i++)
|
|
{
|
|
zone Lightspeed_logo_zone;
|
|
led Lightspeed_logo_led;
|
|
logitech_led new_led = logitech->lightspeed->getLED_info(i);
|
|
|
|
if(new_led.location < sizeof(logitech_led_locations) )
|
|
{
|
|
Lightspeed_logo_zone.name = logitech_led_locations[new_led.location];
|
|
Lightspeed_logo_zone.name.append(" ");
|
|
Lightspeed_logo_led.name = Lightspeed_logo_zone.name;
|
|
Lightspeed_logo_led.name.append(led_string);
|
|
Lightspeed_logo_zone.name.append(zone_string);
|
|
}
|
|
else
|
|
{
|
|
std::string name = " " + std::to_string(i);
|
|
Lightspeed_logo_zone.name = zone_string + name;
|
|
Lightspeed_logo_led.name = led_string + name;
|
|
}
|
|
|
|
Lightspeed_logo_zone.type = ZONE_TYPE_SINGLE;
|
|
Lightspeed_logo_zone.leds_min = 1;
|
|
Lightspeed_logo_zone.leds_max = 1;
|
|
Lightspeed_logo_zone.leds_count = 1;
|
|
Lightspeed_logo_zone.matrix_map = NULL;
|
|
zones.push_back(Lightspeed_logo_zone);
|
|
|
|
Lightspeed_logo_led.value = i;
|
|
leds.push_back(Lightspeed_logo_led);
|
|
}
|
|
}
|
|
|
|
SetupColors();
|
|
}
|
|
|
|
void RGBController_LogitechLightspeed::ResizeZone(int /*zone*/, int /*new_size*/)
|
|
{
|
|
/*---------------------------------------------------------*\
|
|
| This device does not support resizing zones |
|
|
\*---------------------------------------------------------*/
|
|
}
|
|
|
|
void RGBController_LogitechLightspeed::DeviceUpdateLEDs()
|
|
{
|
|
for(std::vector<led>::iterator led_index = leds.begin(); led_index != leds.end(); led_index++)
|
|
{
|
|
UpdateZoneLEDs(led_index->value);
|
|
}
|
|
}
|
|
|
|
void RGBController_LogitechLightspeed::UpdateZoneLEDs(int zone)
|
|
{
|
|
unsigned char red = RGBGetRValue(colors[zone]);
|
|
unsigned char grn = RGBGetGValue(colors[zone]);
|
|
unsigned char blu = RGBGetBValue(colors[zone]);
|
|
|
|
/*---------------------------------------------------------*\
|
|
| Workaround for G502 mode breathing / spectrum cycle swap |
|
|
\*---------------------------------------------------------*/
|
|
bool bright_cycle_swap = (pid == 0xC08B || pid == 0xC332);
|
|
|
|
/*---------------------------------------------------------*\
|
|
| Replace direct mode with static when sending to controller|
|
|
\*---------------------------------------------------------*/
|
|
unsigned char temp_mode = (modes[active_mode].value == 0xFF) ? LOGITECH_G_PRO_WIRELESS_MODE_STATIC : modes[active_mode].value;
|
|
|
|
logitech->SendMouseMode(temp_mode, modes[active_mode].speed, zone, red, grn, blu, modes[active_mode].brightness, bright_cycle_swap);
|
|
}
|
|
|
|
void RGBController_LogitechLightspeed::UpdateSingleLED(int led)
|
|
{
|
|
UpdateZoneLEDs(led);
|
|
}
|
|
|
|
void RGBController_LogitechLightspeed::SetCustomMode()
|
|
{
|
|
if(logitech->lightspeed->connected())
|
|
{
|
|
active_mode = 1;
|
|
}
|
|
}
|
|
|
|
void RGBController_LogitechLightspeed::DeviceUpdateMode()
|
|
{
|
|
/*---------------------------------------------------------*\
|
|
| If direct mode is true, then sent the packet to put the |
|
|
| mouse in direct mode. This code will only be called when |
|
|
| we change modes as to not spam the device. |
|
|
\*---------------------------------------------------------*/
|
|
logitech->lightspeed->setDirectMode(modes[active_mode].value == 0xFF);
|
|
DeviceUpdateLEDs();
|
|
}
|