mirror of
https://github.com/CalcProgrammer1/OpenRGB.git
synced 2026-01-19 04:27:51 -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
* Rework matrix_map_type from using pointers to vector to prevent memory leaks
* Rework KeyboardLayoutManager to return new matrix_map_type
* Add access mutex to RGBController API
* Add per-zone modes ot RGBController API
* Add JSON description functions to RGBController API
88 lines
2.5 KiB
C++
88 lines
2.5 KiB
C++
/*---------------------------------------------------------*\
|
|
| RGBController_E131.h |
|
|
| |
|
|
| RGBController for E1.31 devices |
|
|
| |
|
|
| Adam Honse (CalcProgrammer1) 18 Oct 2019 |
|
|
| |
|
|
| This file is part of the OpenRGB project |
|
|
| SPDX-License-Identifier: GPL-2.0-or-later |
|
|
\*---------------------------------------------------------*/
|
|
|
|
#pragma once
|
|
|
|
#include <chrono>
|
|
#include <thread>
|
|
#include <e131.h>
|
|
#include "RGBController.h"
|
|
|
|
typedef unsigned int e131_rgb_order;
|
|
|
|
enum
|
|
{
|
|
E131_RGB_ORDER_RGB,
|
|
E131_RGB_ORDER_RBG,
|
|
E131_RGB_ORDER_GRB,
|
|
E131_RGB_ORDER_GBR,
|
|
E131_RGB_ORDER_BRG,
|
|
E131_RGB_ORDER_BGR
|
|
};
|
|
|
|
enum
|
|
{
|
|
E131_MATRIX_ORDER_HORIZONTAL_TOP_LEFT,
|
|
E131_MATRIX_ORDER_HORIZONTAL_TOP_RIGHT,
|
|
E131_MATRIX_ORDER_HORIZONTAL_BOTTOM_LEFT,
|
|
E131_MATRIX_ORDER_HORIZONTAL_BOTTOM_RIGHT,
|
|
E131_MATRIX_ORDER_VERTICAL_TOP_LEFT,
|
|
E131_MATRIX_ORDER_VERTICAL_TOP_RIGHT,
|
|
E131_MATRIX_ORDER_VERTICAL_BOTTOM_LEFT,
|
|
E131_MATRIX_ORDER_VERTICAL_BOTTOM_RIGHT
|
|
};
|
|
|
|
typedef unsigned int e131_matrix_order;
|
|
|
|
struct E131Device
|
|
{
|
|
std::string name;
|
|
std::string ip;
|
|
unsigned int num_leds;
|
|
unsigned int start_universe;
|
|
unsigned int start_channel;
|
|
unsigned int keepalive_time;
|
|
e131_rgb_order rgb_order;
|
|
zone_type type;
|
|
unsigned int matrix_width;
|
|
unsigned int matrix_height;
|
|
unsigned int universe_size;
|
|
e131_matrix_order matrix_order;
|
|
};
|
|
|
|
class RGBController_E131 : public RGBController
|
|
{
|
|
public:
|
|
RGBController_E131(std::vector<E131Device> device_list);
|
|
~RGBController_E131();
|
|
|
|
void SetupZones();
|
|
|
|
void DeviceUpdateLEDs();
|
|
void DeviceUpdateZoneLEDs(int zone);
|
|
void DeviceUpdateSingleLED(int led);
|
|
|
|
void DeviceUpdateMode();
|
|
|
|
void KeepaliveThreadFunction();
|
|
|
|
private:
|
|
std::vector<E131Device> devices;
|
|
std::vector<e131_packet_t> packets;
|
|
std::vector<e131_addr_t> dest_addrs;
|
|
std::vector<unsigned int> universes;
|
|
int sockfd;
|
|
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;
|
|
};
|