mirror of
https://github.com/CalcProgrammer1/OpenRGB.git
synced 2025-12-31 11:17:52 -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
92 lines
2.5 KiB
C++
92 lines
2.5 KiB
C++
/*---------------------------------------------------------*\
|
|
| RGBController_MSIRGB.cpp |
|
|
| |
|
|
| RGBController for MSI-RGB motherboard |
|
|
| |
|
|
| Adam Honse (CalcProgrammer1) 14 Feb 2020 |
|
|
| |
|
|
| This file is part of the OpenRGB project |
|
|
| SPDX-License-Identifier: GPL-2.0-or-later |
|
|
\*---------------------------------------------------------*/
|
|
|
|
#include "RGBController_MSIRGB.h"
|
|
|
|
/**------------------------------------------------------------------*\
|
|
@name MSI RGB
|
|
@category Motherboard
|
|
@type SuperIO
|
|
@save :x:
|
|
@direct :white_check_mark:
|
|
@effects :x:
|
|
@detectors DetectMSIRGBControllers
|
|
@comment
|
|
\*-------------------------------------------------------------------*/
|
|
|
|
RGBController_MSIRGB::RGBController_MSIRGB(MSIRGBController* controller_ptr)
|
|
{
|
|
controller = controller_ptr;
|
|
|
|
name = controller->GetDeviceName();
|
|
vendor = "MSI";
|
|
type = DEVICE_TYPE_MOTHERBOARD;
|
|
description = "MSI-RGB Device";
|
|
location = controller->GetDeviceLocation();
|
|
|
|
mode Direct;
|
|
Direct.name = "Direct";
|
|
Direct.value = 0;
|
|
Direct.flags = MODE_FLAG_HAS_PER_LED_COLOR;
|
|
Direct.color_mode = MODE_COLORS_PER_LED;
|
|
modes.push_back(Direct);
|
|
|
|
SetupZones();
|
|
}
|
|
|
|
RGBController_MSIRGB::~RGBController_MSIRGB()
|
|
{
|
|
delete controller;
|
|
}
|
|
|
|
void RGBController_MSIRGB::SetupZones()
|
|
{
|
|
zone msi_zone;
|
|
msi_zone.name = "MSI Zone";
|
|
msi_zone.type = ZONE_TYPE_SINGLE;
|
|
msi_zone.leds_min = 1;
|
|
msi_zone.leds_max = 1;
|
|
msi_zone.leds_count = 1;
|
|
msi_zone.matrix_map = NULL;
|
|
zones.push_back(msi_zone);
|
|
|
|
led msi_led;
|
|
msi_led.name = "MSI LED";
|
|
leds.push_back(msi_led);
|
|
|
|
SetupColors();
|
|
}
|
|
|
|
void RGBController_MSIRGB::DeviceUpdateLEDs()
|
|
{
|
|
RGBColor color = colors[0];
|
|
unsigned char red = RGBGetRValue(color);
|
|
unsigned char grn = RGBGetGValue(color);
|
|
unsigned char blu = RGBGetBValue(color);
|
|
|
|
controller->SetColor(red, grn, blu);
|
|
}
|
|
|
|
void RGBController_MSIRGB::DeviceUpdateZoneLEDs(int /*zone*/)
|
|
{
|
|
DeviceUpdateLEDs();
|
|
}
|
|
|
|
void RGBController_MSIRGB::DeviceUpdateSingleLED(int /*led*/)
|
|
{
|
|
DeviceUpdateLEDs();
|
|
}
|
|
|
|
void RGBController_MSIRGB::DeviceUpdateMode()
|
|
{
|
|
|
|
}
|