mirror of
https://github.com/CalcProgrammer1/OpenRGB.git
synced 2026-04-04 14:14:17 -04:00
* Add zone flags to indicate if fields are manually configurable and if they have been manually configured * Add flags field to segment type * Add segment flags for group start and group member * Add color mode support flags to zone (RGB, RBG, GRB, GBR, BRG, BGR) * Add color mode enum to zone * Update zone and segment description functions to support new fields * Rename the effects-only configurable size flag * Remove zone type and matrix map configuration from E1.31 manual configuration, use zone editor instead * Rework DeviceResizeZone to DeviceConfigureZone * Rework most ARGB controllers to allow zone customizations * Rework DRGBController to define devices in DRGBDevices list (similar to RazerDevices) * Rework NollieController to define devices in NollieDevices list (similar to RazerDevices)
40 lines
1.4 KiB
C++
Executable File
40 lines
1.4 KiB
C++
Executable File
/*---------------------------------------------------------*\
|
|
| RGBController_ASRockPolychromeUSB.h |
|
|
| |
|
|
| RGBController for ASRock Polychrome USB motherboards |
|
|
| |
|
|
| Ed Kambulow (dredvard) 20 Dec 2020 |
|
|
| Shady Nawara (ShadyNawara) 16 Jan 2023 |
|
|
| |
|
|
| This file is part of the OpenRGB project |
|
|
| SPDX-License-Identifier: GPL-2.0-or-later |
|
|
\*---------------------------------------------------------*/
|
|
|
|
#pragma once
|
|
|
|
#include "RGBController.h"
|
|
#include "ASRockPolychromeUSBController.h"
|
|
|
|
class RGBController_PolychromeUSB : public RGBController
|
|
{
|
|
public:
|
|
RGBController_PolychromeUSB(PolychromeUSBController* controller_ptr);
|
|
~RGBController_PolychromeUSB();
|
|
|
|
void SetupZones();
|
|
|
|
void DeviceConfigureZone(int zone_idx);
|
|
|
|
void DeviceUpdateLEDs();
|
|
void DeviceUpdateZoneLEDs(int zone);
|
|
void DeviceUpdateSingleLED(int led);
|
|
|
|
void DeviceUpdateMode();
|
|
|
|
private:
|
|
PolychromeUSBController* controller;
|
|
std::vector<PolychromeZoneInfo> zones_info;
|
|
|
|
unsigned char GetDeviceMode(unsigned char zone);
|
|
};
|