mirror of
https://github.com/CalcProgrammer1/OpenRGB.git
synced 2026-02-20 08:17:41 -05:00
275 lines
7.4 KiB
C++
275 lines
7.4 KiB
C++
/*-----------------------------------------*\
|
|
| AsusAuraTUFKeyboardController.cpp |
|
|
| |
|
|
| Driver for ASUS Aura RGB USB |
|
|
| lighting controller |
|
|
| |
|
|
| Mola19 03/03/2021 |
|
|
\*-----------------------------------------*/
|
|
|
|
#include "AsusAuraTUFKeyboardController.h"
|
|
|
|
#include <cstring>
|
|
#include <string>
|
|
#include <vector>
|
|
#include <math.h>
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
#include <cmath>
|
|
|
|
AuraTUFKeyboardController::AuraTUFKeyboardController(hid_device* dev_handle, const char* path)
|
|
{
|
|
dev = dev_handle;
|
|
location = path;
|
|
}
|
|
|
|
AuraTUFKeyboardController::~AuraTUFKeyboardController()
|
|
{
|
|
hid_close(dev);
|
|
}
|
|
|
|
std::string AuraTUFKeyboardController::GetDeviceLocation()
|
|
{
|
|
return("HID: " + location);
|
|
}
|
|
|
|
std::string AuraTUFKeyboardController::GetSerialString()
|
|
{
|
|
wchar_t serial_string[128];
|
|
int ret = hid_get_serial_number_string(dev, serial_string, 128);
|
|
|
|
if(ret != 0)
|
|
{
|
|
return("");
|
|
}
|
|
|
|
std::wstring return_wstring = serial_string;
|
|
std::string return_string(return_wstring.begin(), return_wstring.end());
|
|
|
|
return(return_string);
|
|
}
|
|
|
|
std::string AuraTUFKeyboardController::GetVersion()
|
|
{
|
|
unsigned char usb_buf[65];
|
|
memset(usb_buf, 0x00, sizeof(usb_buf));
|
|
usb_buf[0x00] = 0x00;
|
|
usb_buf[0x01] = 0x12;
|
|
usb_buf[0x02] = 0x00;
|
|
|
|
hid_write(dev, usb_buf, 65);
|
|
|
|
unsigned char usb_buf_out[65];
|
|
hid_read(dev, usb_buf_out, 65);
|
|
|
|
char version[9];
|
|
snprintf(version, 9, "%02X.%02X.%02X", usb_buf_out[5], usb_buf_out[6], usb_buf_out[7]);
|
|
return std::string(version);
|
|
}
|
|
|
|
int AuraTUFKeyboardController::GetLayout()
|
|
{
|
|
unsigned char usb_buf[65];
|
|
memset(usb_buf, 0x00, sizeof(usb_buf));
|
|
usb_buf[0x00] = 0x00;
|
|
usb_buf[0x01] = 0x12;
|
|
usb_buf[0x02] = 0x12;
|
|
|
|
hid_write(dev, usb_buf, 65);
|
|
|
|
unsigned char usb_buf_out[65];
|
|
hid_read(dev, usb_buf_out, 65);
|
|
|
|
return(usb_buf_out[4] * 100 + usb_buf_out[5]);
|
|
}
|
|
|
|
void AuraTUFKeyboardController::SaveMode()
|
|
{
|
|
unsigned char usb_save_buf[65];
|
|
|
|
memset(usb_save_buf, 0x00, sizeof(usb_save_buf));
|
|
|
|
usb_save_buf[0x00] = 0x00;
|
|
usb_save_buf[0x01] = 0x50;
|
|
usb_save_buf[0x02] = 0x55;
|
|
|
|
hid_write(dev, usb_save_buf, 65);
|
|
}
|
|
|
|
void AuraTUFKeyboardController::UpdateSingleLed
|
|
(
|
|
int led,
|
|
unsigned char red,
|
|
unsigned char green,
|
|
unsigned char blue
|
|
)
|
|
{
|
|
/*-----------------------------------------------------*\
|
|
| Set up message packet for single LED |
|
|
\*-----------------------------------------------------*/
|
|
unsigned char usb_buf[65];
|
|
|
|
memset(usb_buf, 0x00, sizeof(usb_buf));
|
|
|
|
usb_buf[0] = 0x00;
|
|
usb_buf[1] = 0xc0;
|
|
usb_buf[2] = 0x81;
|
|
usb_buf[3] = 0x01;
|
|
usb_buf[4] = 0x00;
|
|
|
|
/*-----------------------------------------------------*\
|
|
| Convert LED index |
|
|
\*-----------------------------------------------------*/
|
|
usb_buf[5] = floor(led/6)*8 + led%6;
|
|
usb_buf[6] = red;
|
|
usb_buf[7] = green;
|
|
usb_buf[8] = blue;
|
|
|
|
hid_write(dev, usb_buf, 65);
|
|
}
|
|
|
|
void AuraTUFKeyboardController::UpdateLeds
|
|
(
|
|
std::vector<RGBColor> colors
|
|
)
|
|
{
|
|
/*-----------------------------------------------------*\
|
|
| Loop over every column (optimisation needed) |
|
|
\*-----------------------------------------------------*/
|
|
for(unsigned int i = 0; i < 192; i += 16)
|
|
{
|
|
unsigned char usb_buf[69];
|
|
|
|
memset(usb_buf, 0x00, sizeof(usb_buf));
|
|
|
|
usb_buf[0] = 0x00;
|
|
usb_buf[1] = 0xc0;
|
|
usb_buf[2] = 0x81;
|
|
usb_buf[3] = (138 - i / 16 * 12);
|
|
usb_buf[4] = 0x00;
|
|
|
|
for(unsigned int n = 0; n < 6; n++)
|
|
{
|
|
usb_buf[n * 4 + 5] = i + n;
|
|
usb_buf[n * 4 + 6] = RGBGetRValue(colors[i/16*12+n]);
|
|
usb_buf[n * 4 + 7] = RGBGetGValue(colors[i/16*12+n]);
|
|
usb_buf[n * 4 + 8] = RGBGetBValue(colors[i/16*12+n]);
|
|
}
|
|
|
|
for(unsigned int n = 6; n < 8; n++)
|
|
{
|
|
usb_buf[n * 4 + 5] = i + n;
|
|
usb_buf[n * 4 + 6] = 0;
|
|
usb_buf[n * 4 + 7] = 0;
|
|
usb_buf[n * 4 + 8] = 0;
|
|
}
|
|
|
|
if(i != 176)
|
|
{
|
|
for(unsigned int n = 8; n < 14; n++)
|
|
{
|
|
usb_buf[n * 4 + 5] = i + n;
|
|
usb_buf[n * 4 + 6] = RGBGetRValue(colors[i/16*12+n-2]);
|
|
usb_buf[n * 4 + 7] = RGBGetGValue(colors[i/16*12+n-2]);
|
|
usb_buf[n * 4 + 8] = RGBGetBValue(colors[i/16*12+n-2]);
|
|
}
|
|
|
|
for(unsigned int n = 14; n < 16; n++)
|
|
{
|
|
usb_buf[n * 4 + 5] = i + n;
|
|
usb_buf[n * 4 + 6] = 0;
|
|
usb_buf[n * 4 + 7] = 0;
|
|
usb_buf[n * 4 + 8] = 0;
|
|
}
|
|
}
|
|
|
|
hid_write(dev, usb_buf, 69);
|
|
}
|
|
}
|
|
|
|
void AuraTUFKeyboardController::UpdateDevice
|
|
(
|
|
unsigned char mode,
|
|
std::vector<RGBColor> colors,
|
|
unsigned char dir,
|
|
unsigned char color_mode,
|
|
unsigned char speed,
|
|
unsigned char brightness
|
|
)
|
|
{
|
|
unsigned char usb_buf[65];
|
|
|
|
memset(usb_buf, 0x00, sizeof(usb_buf));
|
|
|
|
usb_buf[0x00] = 0x00;
|
|
usb_buf[0x01] = 0x51;
|
|
usb_buf[0x02] = 0x2C;
|
|
usb_buf[0x03] = mode;
|
|
usb_buf[0x04] = 0x00;
|
|
usb_buf[0x05] = speed;
|
|
usb_buf[0x06] = brightness;
|
|
usb_buf[0x07] = color_mode;
|
|
usb_buf[0x08] = dir;
|
|
usb_buf[0x09] = 0x02;
|
|
|
|
if(mode == 4 || mode == 5)
|
|
{
|
|
/*-----------------------------------------------------*\
|
|
| If mode is Rainbow or Ripple |
|
|
\*-----------------------------------------------------*/
|
|
usb_buf[0x0A] = colors.size();
|
|
|
|
/*-----------------------------------------------------*\
|
|
| Loop over every color given |
|
|
\*-----------------------------------------------------*/
|
|
for(unsigned int i = 0; i / 4 < colors.size(); i += 4)
|
|
{
|
|
if(colors[i / 4])
|
|
{
|
|
usb_buf[11 + i] = 100/(double)colors.size()*(i/4+1);
|
|
usb_buf[12 + i] = RGBGetRValue(colors[i/4]);
|
|
usb_buf[13 + i] = RGBGetGValue(colors[i/4]);
|
|
usb_buf[14 + i] = RGBGetBValue(colors[i/4]);
|
|
}
|
|
}
|
|
}
|
|
else
|
|
{
|
|
/*-----------------------------------------------------*\
|
|
| Loop over Color1, Color2 and Background if there |
|
|
\*-----------------------------------------------------*/
|
|
for(unsigned int i = 0; i / 3 != colors.size(); i += 3)
|
|
{
|
|
if(colors[i / 3])
|
|
{
|
|
usb_buf[10 + i] = RGBGetRValue(colors[i/3]);
|
|
usb_buf[11 + i] = RGBGetGValue(colors[i/3]);
|
|
usb_buf[12 + i] = RGBGetBValue(colors[i/3]);
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
/*-----------------------------------------------------*\
|
|
| Send packet |
|
|
\*-----------------------------------------------------*/
|
|
hid_write(dev, usb_buf, 65);
|
|
}
|
|
|
|
void AuraTUFKeyboardController::AwaitResponse()
|
|
{
|
|
unsigned char usb_buf_out[65];
|
|
hid_read(dev, usb_buf_out, 65);
|
|
}
|
|
|
|
void AuraTUFKeyboardController::ClearResponses()
|
|
{
|
|
int result = 1;
|
|
unsigned char usb_buf_flush[65];
|
|
while(result > 0)
|
|
{
|
|
result = hid_read_timeout(dev, usb_buf_flush, 65, 0);
|
|
}
|
|
}
|
|
|