Zone and Segment type updates

* 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)
This commit is contained in:
Adam Honse
2026-02-22 23:31:00 -06:00
parent db3351691a
commit 3b7fd1ac02
114 changed files with 3991 additions and 2970 deletions

View File

@@ -22,6 +22,21 @@ NollieController::NollieController(hid_device* dev_handle, const char* path, uns
name = dev_name;
usb_vid = vid;
usb_pid = pid;
/*-----------------------------------------------------*\
| Loop through all known devices to look for a PID |
| match |
\*-----------------------------------------------------*/
for(unsigned int i = 0; i < NOLLIE_NUM_DEVICES; i++)
{
if((nollie_device_list[i]->vid == vid) && (nollie_device_list[i]->pid == pid))
{
/*---------------------------------------------*\
| Set device index |
\*---------------------------------------------*/
device_index = i;
}
}
}
std::string NollieController::GetLocationString()
@@ -57,7 +72,46 @@ unsigned short NollieController::GetUSBVID()
return(usb_vid);
}
void NollieController::InitChLEDs(int *led_num_list,int ch_num)
unsigned short NollieController::GetNumChannels()
{
return(nollie_device_list[device_index]->channels);
}
unsigned short NollieController::GetLEDsPerChannel()
{
return(nollie_device_list[device_index]->leds_per_channel);
}
const int* NollieController::GetChannelIndex()
{
return(nollie_device_list[device_index]->channel_index);
}
std::string NollieController::GetChannelName(unsigned short channel)
{
std::string channel_name;
if(channel > 27 )
{
channel_name = "Channel EXT " + std::to_string(channel + 1 - 28);
}
else if(channel > 21 )
{
channel_name = "Channel GPU " + std::to_string(channel + 1 - 22);
}
else if(channel > 15 )
{
channel_name = "Channel ATX " + std::to_string(channel + 1 - 16);
}
else
{
channel_name = "Channel " + std::to_string(channel + 1);
}
return(channel_name);
}
void NollieController::InitChLEDs(unsigned int *led_num_list,int ch_num)
{
unsigned char usb_buf[65];
memset(usb_buf, 0x00, sizeof(usb_buf));