mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2023-10-10 13:36:59 +02:00
efc2046ab5
* LedDevice - Address clang findings * Fix Windows Warnings * Ensure newInput is initialised * Clean-up unused elements for Plaform Capture * Fix initialization problem and spellings * Address clang findings and spelling corrections * LedDevice clean-ups * Cleanups * Align that getLedCount is int * Have "display" as default for Grabbers * Fix config during start-up for missing elements * Framegrabber Clean-up - Remove non supported grabbers from selection, filter valid options * Typo * Framegrabber.json - Fix property numbering * Preselect active Grabbertype * Sort Grabbernames * Align options with selected element * Fix deletion of pointer to incomplete type 'BonjourBrowserWrapper' * Address macOS compile warnings * Have default layout = 1 LED only to avoid errors as in #673 * Address lgtm findings * Address finding that params passed to LedDevice discovery were not considered * Cleanups after merging with latest master * Update Changelog * Address lgtm findings * Fix comment * Test Fix * Fix Python Warning * Handle Dummy Device assignment correctly * Address delete called on non-final 'commandline::Option' that has virtual functions but non-virtual destructor * Correct that QTimer.start accepts only int * Have Release Python GIL & reset threat state chnage downward compatible * Correct format specifier * LedDevice - add assertions * Readonly DB - Fix merge issue * Smoothing - Fix wrong defaults * LedDevice - correct assertion * Show smoothing config set# in debug and related values. * Suppress error on windows, if default file is "/dev/null" * CMAKE - Allow to define QT_BASE_DIR dynamically via environment-variable * Ignore Visual Studio specific files Co-authored-by: Paulchen Panther <16664240+Paulchen-Panther@users.noreply.github.com>
74 lines
2.2 KiB
C++
74 lines
2.2 KiB
C++
#pragma once
|
|
|
|
#include <utils/Logger.h>
|
|
#include <hyperion/Hyperion.h>
|
|
#include <utils/settings.h>
|
|
|
|
///
|
|
/// @brief Handle the background Effect settings, reacts on runtime to settings changes
|
|
///
|
|
class BGEffectHandler : public QObject
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
BGEffectHandler(Hyperion* hyperion)
|
|
: QObject(hyperion)
|
|
, _hyperion(hyperion)
|
|
{
|
|
// listen for config changes
|
|
connect(_hyperion, &Hyperion::settingsChanged, this, &BGEffectHandler::handleSettingsUpdate);
|
|
|
|
// initialization
|
|
handleSettingsUpdate(settings::BGEFFECT, _hyperion->getSetting(settings::BGEFFECT));
|
|
}
|
|
|
|
private slots:
|
|
///
|
|
/// @brief Handle settings update from Hyperion Settingsmanager emit or this constructor
|
|
/// @param type settingType from enum
|
|
/// @param config configuration object
|
|
///
|
|
void handleSettingsUpdate(settings::type type, const QJsonDocument& config)
|
|
{
|
|
if(type == settings::BGEFFECT)
|
|
{
|
|
const QJsonObject& BGEffectConfig = config.object();
|
|
|
|
#define BGCONFIG_ARRAY bgColorConfig.toArray()
|
|
// clear background priority
|
|
_hyperion->clear(254);
|
|
// initial background effect/color
|
|
if (BGEffectConfig["enable"].toBool(true))
|
|
{
|
|
const QString bgTypeConfig = BGEffectConfig["type"].toString("effect");
|
|
const QString bgEffectConfig = BGEffectConfig["effect"].toString("Warm mood blobs");
|
|
const QJsonValue bgColorConfig = BGEffectConfig["color"];
|
|
if (bgTypeConfig.contains("color"))
|
|
{
|
|
std::vector<ColorRgb> bg_color = {
|
|
ColorRgb {
|
|
static_cast<uint8_t>(BGCONFIG_ARRAY.at(0).toInt(0)),
|
|
static_cast<uint8_t>(BGCONFIG_ARRAY.at(1).toInt(0)),
|
|
static_cast<uint8_t>(BGCONFIG_ARRAY.at(2).toInt(0))
|
|
}
|
|
};
|
|
_hyperion->setColor(254, bg_color);
|
|
Info(Logger::getInstance("HYPERION"),"Initial background color set (%d %d %d)",bg_color.at(0).red, bg_color.at(0).green, bg_color.at(0).blue);
|
|
}
|
|
else
|
|
{
|
|
int result = _hyperion->setEffect(bgEffectConfig, 254);
|
|
Info(Logger::getInstance("HYPERION"),"Initial background effect '%s' %s", QSTRING_CSTR(bgEffectConfig), ((result == 0) ? "started" : "failed"));
|
|
}
|
|
}
|
|
|
|
#undef BGCONFIG_ARRAY
|
|
}
|
|
}
|
|
|
|
private:
|
|
/// Hyperion instance pointer
|
|
Hyperion* _hyperion;
|
|
};
|