mirror of
https://github.com/CalcProgrammer1/OpenRGB.git
synced 2026-01-04 13:17: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
53 lines
1.7 KiB
C++
53 lines
1.7 KiB
C++
/*---------------------------------------------------------*\
|
|
| RGBController_DMX.h |
|
|
| |
|
|
| RGBController for DMX devices |
|
|
| |
|
|
| Adam Honse (CalcProgrammer1) 30 Apr 2023 |
|
|
| |
|
|
| This file is part of the OpenRGB project |
|
|
| SPDX-License-Identifier: GPL-2.0-or-later |
|
|
\*---------------------------------------------------------*/
|
|
|
|
#pragma once
|
|
|
|
#include <chrono>
|
|
#include <thread>
|
|
#include "RGBController.h"
|
|
#include "serial_port.h"
|
|
struct DMXDevice
|
|
{
|
|
std::string name;
|
|
std::string port;
|
|
unsigned int keepalive_time;
|
|
unsigned int red_channel;
|
|
unsigned int green_channel;
|
|
unsigned int blue_channel;
|
|
unsigned int brightness_channel;
|
|
};
|
|
|
|
class RGBController_DMX : public RGBController
|
|
{
|
|
public:
|
|
RGBController_DMX(std::vector<DMXDevice> device_list);
|
|
~RGBController_DMX();
|
|
|
|
void SetupZones();
|
|
|
|
void DeviceUpdateLEDs();
|
|
void DeviceUpdateZoneLEDs(int zone);
|
|
void DeviceUpdateSingleLED(int led);
|
|
|
|
void DeviceUpdateMode();
|
|
|
|
void KeepaliveThreadFunction();
|
|
|
|
private:
|
|
std::vector<DMXDevice> devices;
|
|
serial_port * port;
|
|
std::thread * keepalive_thread;
|
|
std::atomic<bool> keepalive_thread_run;
|
|
std::chrono::milliseconds keepalive_delay;
|
|
std::chrono::time_point<std::chrono::steady_clock> last_update_time;
|
|
};
|