mirror of
https://github.com/CalcProgrammer1/OpenRGB.git
synced 2025-12-26 00:37:46 -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
104 lines
3.3 KiB
C++
104 lines
3.3 KiB
C++
/*---------------------------------------------------------*\
|
|
| RGBController_LogitechX56.cpp |
|
|
| |
|
|
| RGBController for Logitech X56 |
|
|
| |
|
|
| Edbgon 11 Jun 2021 |
|
|
| |
|
|
| This file is part of the OpenRGB project |
|
|
| SPDX-License-Identifier: GPL-2.0-or-later |
|
|
\*---------------------------------------------------------*/
|
|
|
|
#include "RGBController_LogitechX56.h"
|
|
|
|
/**------------------------------------------------------------------*\
|
|
@name Logitech X56
|
|
@category Gamepad
|
|
@type USB
|
|
@save :white_check_mark:
|
|
@direct :white_check_mark:
|
|
@effects :x:
|
|
@detectors DetectLogitechX56
|
|
@comment
|
|
\*-------------------------------------------------------------------*/
|
|
|
|
RGBController_LogitechX56::RGBController_LogitechX56(LogitechX56Controller* controller_ptr)
|
|
{
|
|
controller = controller_ptr;
|
|
|
|
name = controller->GetDeviceName();
|
|
vendor = "Logitech";
|
|
type = DEVICE_TYPE_GAMEPAD;
|
|
description = "Logitech X56 Device";
|
|
location = controller->GetDeviceLocation();
|
|
serial = controller->GetSerialString();
|
|
|
|
mode Direct;
|
|
Direct.name = "Direct";
|
|
Direct.flags = MODE_FLAG_HAS_PER_LED_COLOR | MODE_FLAG_MANUAL_SAVE | MODE_FLAG_HAS_BRIGHTNESS;
|
|
Direct.color_mode = MODE_COLORS_PER_LED;
|
|
Direct.brightness_min = 0x00;
|
|
Direct.brightness_max = 0x64;
|
|
Direct.brightness = 0x64;
|
|
modes.push_back(Direct);
|
|
|
|
SetupZones();
|
|
}
|
|
|
|
RGBController_LogitechX56::~RGBController_LogitechX56()
|
|
{
|
|
delete controller;
|
|
}
|
|
|
|
void RGBController_LogitechX56::SetupZones()
|
|
{
|
|
/*---------------------------------------------------------*\
|
|
| Each device has only one zone and LED |
|
|
\*---------------------------------------------------------*/
|
|
zone x56_zone;
|
|
x56_zone.name = "X56";
|
|
x56_zone.type = ZONE_TYPE_SINGLE;
|
|
x56_zone.leds_min = 1;
|
|
x56_zone.leds_max = 1;
|
|
x56_zone.leds_count = 1;
|
|
x56_zone.matrix_map = NULL;
|
|
zones.push_back(x56_zone);
|
|
|
|
led x56_led;
|
|
x56_led.name = "X56";
|
|
leds.push_back(x56_led);
|
|
|
|
SetupColors();
|
|
}
|
|
|
|
void RGBController_LogitechX56::DeviceUpdateLEDs()
|
|
{
|
|
controller->SetColor(colors[0], modes[active_mode].brightness);
|
|
}
|
|
|
|
void RGBController_LogitechX56::DeviceUpdateZoneLEDs(int /*zone*/)
|
|
{
|
|
/*---------------------------------------------------------*\
|
|
| Packet expects both LEDs |
|
|
\*---------------------------------------------------------*/
|
|
DeviceUpdateLEDs();
|
|
}
|
|
|
|
void RGBController_LogitechX56::DeviceUpdateSingleLED(int /*led*/)
|
|
{
|
|
/*---------------------------------------------------------*\
|
|
| Packet expects both LEDs |
|
|
\*---------------------------------------------------------*/
|
|
DeviceUpdateLEDs();
|
|
}
|
|
|
|
void RGBController_LogitechX56::DeviceUpdateMode()
|
|
{
|
|
DeviceUpdateLEDs();
|
|
}
|
|
|
|
void RGBController_LogitechX56::DeviceSaveMode()
|
|
{
|
|
controller->Save();
|
|
}
|