mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2023-10-10 13:36:59 +02:00
5ea3c752b5
* clean color adjustment * now a prio duration of "0" means infinity * implement dynamic 'just in time' initialization * implement new brightness handling * cahnge access level * i18n fix * - cleanup brightness stuff - update webserver, now with initial ssl support * - backlightThreshold is now 0-100 instead 0-1 - better performance for brightness - use piecewise linear instead of sqrt
76 lines
1.9 KiB
C++
76 lines
1.9 KiB
C++
// STL includes
|
|
#include <cmath>
|
|
#include <cstdint>
|
|
#include <algorithm>
|
|
|
|
// Utils includes
|
|
#include <utils/RgbChannelAdjustment.h>
|
|
|
|
RgbChannelAdjustment::RgbChannelAdjustment(QString channelName)
|
|
: _channelName(channelName)
|
|
, _log(Logger::getInstance(channelName))
|
|
, _brightness(0)
|
|
{
|
|
resetInitialized();
|
|
}
|
|
|
|
RgbChannelAdjustment::RgbChannelAdjustment(uint8_t adjustR, uint8_t adjustG, uint8_t adjustB, QString channelName)
|
|
: _channelName(channelName)
|
|
, _log(Logger::getInstance(channelName))
|
|
{
|
|
setAdjustment(adjustR, adjustG, adjustB);
|
|
}
|
|
|
|
RgbChannelAdjustment::~RgbChannelAdjustment()
|
|
{
|
|
}
|
|
|
|
void RgbChannelAdjustment::resetInitialized()
|
|
{
|
|
Debug(_log, "initialize mapping with %d,%d,%d", _adjust[RED], _adjust[GREEN], _adjust[BLUE]);
|
|
memset(_initialized, false, sizeof(_initialized));
|
|
}
|
|
|
|
void RgbChannelAdjustment::setAdjustment(uint8_t adjustR, uint8_t adjustG, uint8_t adjustB)
|
|
{
|
|
_adjust[RED] = adjustR;
|
|
_adjust[GREEN] = adjustG;
|
|
_adjust[BLUE] = adjustB;
|
|
resetInitialized();
|
|
}
|
|
|
|
uint8_t RgbChannelAdjustment::getAdjustmentR() const
|
|
{
|
|
return _adjust[RED];
|
|
}
|
|
|
|
uint8_t RgbChannelAdjustment::getAdjustmentG() const
|
|
{
|
|
return _adjust[GREEN];
|
|
}
|
|
|
|
uint8_t RgbChannelAdjustment::getAdjustmentB() const
|
|
{
|
|
return _adjust[BLUE];
|
|
}
|
|
|
|
void RgbChannelAdjustment::apply(uint8_t input, uint8_t brightness, uint8_t & red, uint8_t & green, uint8_t & blue)
|
|
{
|
|
if (_brightness != brightness)
|
|
{
|
|
_brightness = brightness;
|
|
resetInitialized();
|
|
}
|
|
|
|
if (!_initialized[input])
|
|
{
|
|
_mapping[RED ][input] = std::min( ((_brightness * input * _adjust[RED ]) / 65025), UINT8_MAX);
|
|
_mapping[GREEN][input] = std::min( ((_brightness * input * _adjust[GREEN]) / 65025), UINT8_MAX);
|
|
_mapping[BLUE ][input] = std::min( ((_brightness * input * _adjust[BLUE ]) / 65025), UINT8_MAX);
|
|
_initialized[input] = true;
|
|
}
|
|
red = _mapping[RED ][input];
|
|
green = _mapping[GREEN][input];
|
|
blue = _mapping[BLUE ][input];
|
|
}
|