mirror of
https://github.com/CalcProgrammer1/OpenRGB.git
synced 2025-12-26 08:47:50 -05:00
159 lines
4.7 KiB
C++
159 lines
4.7 KiB
C++
/*-----------------------------------------*\
|
|
| RGBController_SteelSeriesApex.cpp |
|
|
| |
|
|
| Generic RGB Interface for SteelSeries |
|
|
| Apex 7 Keyboard |
|
|
| |
|
|
| Eric Samuelson (edbgon) 7/5/2020 |
|
|
\*-----------------------------------------*/
|
|
|
|
#include "RGBControllerKeyNames.h"
|
|
#include "RGBController_SteelSeriesApex.h"
|
|
#include "SteelSeriesApexRegions.h"
|
|
|
|
static const char* zone_names[] =
|
|
{
|
|
ZONE_EN_KEYBOARD
|
|
};
|
|
|
|
static zone_type zone_types[] =
|
|
{
|
|
ZONE_TYPE_MATRIX
|
|
};
|
|
|
|
static const unsigned int zone_sizes[] =
|
|
{
|
|
sizeof(led_names)/sizeof(char*),
|
|
};
|
|
|
|
/**------------------------------------------------------------------*\
|
|
@name Steel Series APEX
|
|
@category Keyboard
|
|
@type USB
|
|
@save :x:
|
|
@direct :white_check_mark:
|
|
@effects :x:
|
|
@detectors DetectSteelSeriesApex,DetectSteelSeriesApexM
|
|
@comment
|
|
\*-------------------------------------------------------------------*/
|
|
|
|
RGBController_SteelSeriesApex::RGBController_SteelSeriesApex(SteelSeriesApexBaseController* controller_ptr)
|
|
{
|
|
controller = controller_ptr;
|
|
|
|
name = "SteelSeries Apex RGB Keyboard";
|
|
vendor = "SteelSeries";
|
|
type = DEVICE_TYPE_KEYBOARD;
|
|
description = "SteelSeries Apex RGB Device";
|
|
location = controller->GetDeviceLocation();
|
|
serial = controller->GetSerialString();
|
|
version = controller->GetVersionString();
|
|
|
|
proto_type = controller->proto_type;
|
|
|
|
mode Direct;
|
|
Direct.name = "Direct";
|
|
Direct.value = 0x00;
|
|
Direct.flags = MODE_FLAG_HAS_PER_LED_COLOR;
|
|
Direct.color_mode = MODE_COLORS_PER_LED;
|
|
modes.push_back(Direct);
|
|
|
|
SetupZones();
|
|
}
|
|
|
|
RGBController_SteelSeriesApex::~RGBController_SteelSeriesApex()
|
|
{
|
|
/*---------------------------------------------------------*\
|
|
| Delete the matrix map |
|
|
\*---------------------------------------------------------*/
|
|
for(unsigned int zone_index = 0; zone_index < zones.size(); zone_index++)
|
|
{
|
|
if(zones[zone_index].matrix_map != NULL)
|
|
{
|
|
free(zones[zone_index].matrix_map->map);
|
|
delete zones[zone_index].matrix_map;
|
|
}
|
|
}
|
|
|
|
delete controller;
|
|
}
|
|
|
|
void RGBController_SteelSeriesApex::SetupZones()
|
|
{
|
|
/*---------------------------------------------------------*\
|
|
| Set up zones |
|
|
\*---------------------------------------------------------*/
|
|
|
|
/*---------------------------------------------------------*\
|
|
| The first 5 chars are the SKU which we need to determine |
|
|
| the region. |
|
|
\*---------------------------------------------------------*/
|
|
|
|
std::string sku = serial.substr(0, 5);
|
|
|
|
unsigned int total_led_count = 0;
|
|
|
|
for(unsigned int zone_idx = 0; zone_idx < 1; zone_idx++)
|
|
{
|
|
zone new_zone;
|
|
new_zone.name = zone_names[zone_idx];
|
|
new_zone.type = zone_types[zone_idx];
|
|
|
|
if(zone_types[zone_idx] == ZONE_TYPE_MATRIX)
|
|
{
|
|
new_zone.matrix_map = new matrix_map_type;
|
|
new_zone.matrix_map->map = (unsigned int *) malloc(matrix_mapsize*sizeof(unsigned int));
|
|
|
|
if((proto_type == APEX) || (proto_type == APEX_M))
|
|
{
|
|
SetSkuRegion(*new_zone.matrix_map, sku);
|
|
}
|
|
}
|
|
else
|
|
{
|
|
new_zone.matrix_map = NULL;
|
|
}
|
|
|
|
if((proto_type == APEX) || (proto_type == APEX_M))
|
|
{
|
|
new_zone.leds_min = zone_sizes[zone_idx];
|
|
new_zone.leds_max = zone_sizes[zone_idx];
|
|
new_zone.leds_count = zone_sizes[zone_idx];
|
|
total_led_count += zone_sizes[zone_idx];
|
|
}
|
|
zones.push_back(new_zone);
|
|
};
|
|
|
|
SetSkuLedNames(leds, sku, total_led_count);
|
|
SetupColors();
|
|
}
|
|
|
|
void RGBController_SteelSeriesApex::ResizeZone(int /*zone*/, int /*new_size*/)
|
|
{
|
|
/*---------------------------------------------------------*\
|
|
| This device does not support resizing zones |
|
|
\*---------------------------------------------------------*/
|
|
}
|
|
|
|
void RGBController_SteelSeriesApex::DeviceUpdateLEDs()
|
|
{
|
|
last_update_time = std::chrono::steady_clock::now();
|
|
controller->SetLEDsDirect(colors);
|
|
}
|
|
|
|
void RGBController_SteelSeriesApex::UpdateZoneLEDs(int /*zone*/)
|
|
{
|
|
DeviceUpdateLEDs();
|
|
}
|
|
|
|
void RGBController_SteelSeriesApex::UpdateSingleLED(int /*led*/)
|
|
{
|
|
DeviceUpdateLEDs();
|
|
}
|
|
|
|
void RGBController_SteelSeriesApex::DeviceUpdateMode()
|
|
{
|
|
std::vector<RGBColor> temp_colors;
|
|
controller->SetMode(modes[active_mode].value, temp_colors);
|
|
}
|