mirror of
https://github.com/CalcProgrammer1/OpenRGB.git
synced 2025-12-27 01:07:49 -05:00
* Reorganize and clean up RGBController API functions
* Add functions to get protected RGBController member values
* Make NetworkClient, ProfileManager, and ResourceManager friend classes so they can access protected members
* Protected previously-public RGBController members
* Information strings (name, vendor, description, version, serial location)
* Device type
* Active mode
* Flags
* LEDs vector
* LED alternate names vector
* Modes vector
* Colors vector
* Zones vector
* Add CONTROLLER_FLAG_HIDDEN to allow plugins to hide controllers from control GUI
* Add update reason codes to RGBController update callback and signal updates on more RGBController events
* Add loop zone types and segmented zone type
* Add matrix map field to segments
143 lines
5.5 KiB
C++
143 lines
5.5 KiB
C++
/*---------------------------------------------------------*\
|
|
| RGBController_LogitechGLightsync1zone.cpp |
|
|
| |
|
|
| RGBController for single zone Logitech Lightsync |
|
|
| |
|
|
| TheRogueZeta 21 Apr 2021 |
|
|
| |
|
|
| This file is part of the OpenRGB project |
|
|
| SPDX-License-Identifier: GPL-2.0-or-later |
|
|
\*---------------------------------------------------------*/
|
|
|
|
#include "RGBController_LogitechGLightsync1zone.h"
|
|
|
|
/**------------------------------------------------------------------*\
|
|
@name Logitech Lightsync Mouse (1 Zone)
|
|
@category Mouse
|
|
@type USB
|
|
@save :robot:
|
|
@direct :white_check_mark:
|
|
@effects :white_check_mark:
|
|
@detectors DetectLogitechMouseG203, DetectLogitechMouseGPRO
|
|
@comment
|
|
\*-------------------------------------------------------------------*/
|
|
|
|
RGBController_LogitechGLightsync1zone::RGBController_LogitechGLightsync1zone(LogitechGLightsyncController* controller_ptr)
|
|
{
|
|
controller = controller_ptr;
|
|
|
|
name = controller->GetNameString();
|
|
vendor = "Logitech";
|
|
type = DEVICE_TYPE_MOUSE;
|
|
description = "Logitech G Lightsync Mouse Single Zone";
|
|
location = controller->GetDeviceLocation();
|
|
serial = controller->GetSerialString();
|
|
|
|
mode Off;
|
|
Off.name = "Off";
|
|
Off.value = LOGITECH_G_LIGHTSYNC_MODE_OFF;
|
|
Off.flags = 0;
|
|
Off.color_mode = MODE_COLORS_NONE;
|
|
modes.push_back(Off);
|
|
|
|
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_LIGHTSYNC_MODE_STATIC;
|
|
Static.flags = MODE_FLAG_HAS_PER_LED_COLOR;
|
|
Static.color_mode = MODE_COLORS_PER_LED;
|
|
modes.push_back(Static);
|
|
|
|
mode Cycle;
|
|
Cycle.name = "Spectrum Cycle";
|
|
Cycle.value = LOGITECH_G_LIGHTSYNC_MODE_CYCLE;
|
|
Cycle.flags = MODE_FLAG_HAS_SPEED | MODE_FLAG_HAS_BRIGHTNESS;
|
|
Cycle.color_mode = MODE_COLORS_NONE;
|
|
Cycle.speed_min = LOGITECH_G_LIGHTSYNC_SPEED_SLOWEST;
|
|
Cycle.speed_max = LOGITECH_G_LIGHTSYNC_SPEED_FASTEST;
|
|
Cycle.speed = LOGITECH_G_LIGHTSYNC_SPEED_NORMAL;
|
|
Cycle.brightness_min = 0;
|
|
Cycle.brightness_max = 100;
|
|
Cycle.brightness = 100;
|
|
modes.push_back(Cycle);
|
|
|
|
mode Breathing;
|
|
Breathing.name = "Breathing";
|
|
Breathing.value = LOGITECH_G_LIGHTSYNC_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.speed_min = LOGITECH_G_LIGHTSYNC_SPEED_SLOWEST;
|
|
Breathing.speed_max = LOGITECH_G_LIGHTSYNC_SPEED_FASTEST;
|
|
Breathing.speed = LOGITECH_G_LIGHTSYNC_SPEED_NORMAL;
|
|
Breathing.brightness_min = 0;
|
|
Breathing.brightness_max = 100;
|
|
Breathing.brightness = 100;
|
|
modes.push_back(Breathing);
|
|
|
|
SetupZones();
|
|
}
|
|
|
|
RGBController_LogitechGLightsync1zone::~RGBController_LogitechGLightsync1zone()
|
|
{
|
|
delete controller;
|
|
}
|
|
|
|
void RGBController_LogitechGLightsync1zone::SetupZones()
|
|
{
|
|
zone GLightsync_logo_zone;
|
|
GLightsync_logo_zone.name = "Logo";
|
|
GLightsync_logo_zone.type = ZONE_TYPE_SINGLE;
|
|
GLightsync_logo_zone.leds_min = 1;
|
|
GLightsync_logo_zone.leds_max = 1;
|
|
GLightsync_logo_zone.leds_count = 1;
|
|
GLightsync_logo_zone.matrix_map = NULL;
|
|
zones.push_back(GLightsync_logo_zone);
|
|
|
|
led GLightsync_logo_led;
|
|
GLightsync_logo_led.name = "Logo";
|
|
leds.push_back(GLightsync_logo_led);
|
|
|
|
SetupColors();
|
|
}
|
|
|
|
void RGBController_LogitechGLightsync1zone::DeviceUpdateLEDs()
|
|
{
|
|
DeviceUpdateZoneLEDs(0);
|
|
}
|
|
|
|
void RGBController_LogitechGLightsync1zone::DeviceUpdateZoneLEDs(int zone)
|
|
{
|
|
unsigned char red = RGBGetRValue(colors[zone]);
|
|
unsigned char grn = RGBGetGValue(colors[zone]);
|
|
unsigned char blu = RGBGetBValue(colors[zone]);
|
|
|
|
/*---------------------------------------------------------*\
|
|
| Replace direct mode with static when sending to controller|
|
|
\*---------------------------------------------------------*/
|
|
unsigned char temp_mode = (modes[active_mode].value != 0xFF) ? modes[active_mode].value : LOGITECH_G_LIGHTSYNC_MODE_STATIC;
|
|
|
|
controller->UpdateMouseLED(temp_mode, modes[active_mode].speed, zone, red, grn, blu, modes[active_mode].brightness);
|
|
}
|
|
|
|
void RGBController_LogitechGLightsync1zone::DeviceUpdateSingleLED(int led)
|
|
{
|
|
DeviceUpdateZoneLEDs(led);
|
|
}
|
|
|
|
void RGBController_LogitechGLightsync1zone::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. |
|
|
\*---------------------------------------------------------*/
|
|
controller->SetDirectMode(modes[active_mode].value == 0xFF);
|
|
DeviceUpdateLEDs();
|
|
}
|