2013-07-26 22:38:34 +02:00
|
|
|
#pragma once
|
|
|
|
|
2013-08-19 20:33:36 +02:00
|
|
|
// stl includes
|
|
|
|
#include <list>
|
|
|
|
|
2013-08-14 17:02:09 +02:00
|
|
|
// QT includes
|
|
|
|
#include <QObject>
|
|
|
|
#include <QTimer>
|
|
|
|
|
2013-07-26 22:38:34 +02:00
|
|
|
// hyperion-utils includes
|
2013-11-11 10:00:37 +01:00
|
|
|
#include <utils/Image.h>
|
2016-07-01 23:20:41 +02:00
|
|
|
#include <utils/ColorRgb.h>
|
|
|
|
#include <utils/Logger.h>
|
2013-07-26 22:38:34 +02:00
|
|
|
|
2013-08-13 11:10:45 +02:00
|
|
|
// Hyperion includes
|
2013-07-26 22:38:34 +02:00
|
|
|
#include <hyperion/LedString.h>
|
2013-08-13 11:10:45 +02:00
|
|
|
#include <hyperion/PriorityMuxer.h>
|
2015-12-22 10:09:47 +01:00
|
|
|
#include <hyperion/ColorTransform.h>
|
|
|
|
#include <hyperion/ColorCorrection.h>
|
2016-04-02 00:04:11 +02:00
|
|
|
#include <hyperion/ColorAdjustment.h>
|
2016-03-09 19:36:08 +01:00
|
|
|
#include <hyperion/MessageForwarder.h>
|
2013-08-13 11:10:45 +02:00
|
|
|
|
2013-12-01 14:09:01 +01:00
|
|
|
// Effect engine includes
|
|
|
|
#include <effectengine/EffectDefinition.h>
|
2016-04-24 17:07:31 +02:00
|
|
|
#include <effectengine/ActiveEffectDefinition.h>
|
2013-12-01 14:09:01 +01:00
|
|
|
|
2013-08-13 11:10:45 +02:00
|
|
|
// Forward class declaration
|
2013-12-17 19:50:15 +01:00
|
|
|
class LedDevice;
|
2013-08-23 18:24:10 +02:00
|
|
|
class ColorTransform;
|
2013-11-24 16:10:48 +01:00
|
|
|
class EffectEngine;
|
2013-08-23 18:24:10 +02:00
|
|
|
class HsvTransform;
|
2015-12-22 10:09:47 +01:00
|
|
|
class HslTransform;
|
2013-11-19 21:17:59 +01:00
|
|
|
class RgbChannelTransform;
|
2015-12-22 10:09:47 +01:00
|
|
|
class RgbChannelCorrection;
|
2016-04-02 00:04:11 +02:00
|
|
|
class RgbChannelAdjustment;
|
2013-11-20 09:25:49 +01:00
|
|
|
class MultiColorTransform;
|
2015-12-22 10:09:47 +01:00
|
|
|
class MultiColorCorrection;
|
2016-04-02 00:04:11 +02:00
|
|
|
class MultiColorAdjustment;
|
2013-09-06 21:26:58 +02:00
|
|
|
///
|
|
|
|
/// The main class of Hyperion. This gives other 'users' access to the attached LedDevice through
|
|
|
|
/// the priority muxer.
|
|
|
|
///
|
2013-08-14 17:02:09 +02:00
|
|
|
class Hyperion : public QObject
|
2013-07-26 22:38:34 +02:00
|
|
|
{
|
2013-08-14 17:02:09 +02:00
|
|
|
Q_OBJECT
|
2013-07-26 22:38:34 +02:00
|
|
|
public:
|
2013-09-06 21:26:58 +02:00
|
|
|
/// Type definition of the info structure used by the priority muxer
|
2013-08-19 20:33:36 +02:00
|
|
|
typedef PriorityMuxer::InputInfo InputInfo;
|
|
|
|
|
2013-09-06 21:26:58 +02:00
|
|
|
///
|
|
|
|
/// RGB-Color channel enumeration
|
|
|
|
///
|
2013-11-20 09:25:49 +01:00
|
|
|
enum RgbChannel
|
2013-08-19 19:57:35 +02:00
|
|
|
{
|
2013-08-21 21:50:17 +02:00
|
|
|
RED, GREEN, BLUE, INVALID
|
2013-08-19 19:57:35 +02:00
|
|
|
};
|
|
|
|
|
2013-09-06 21:26:58 +02:00
|
|
|
///
|
|
|
|
/// Enumeration of the possible color (color-channel) transforms
|
|
|
|
///
|
2013-08-19 19:57:35 +02:00
|
|
|
enum Transform
|
|
|
|
{
|
2013-08-21 21:50:17 +02:00
|
|
|
SATURATION_GAIN, VALUE_GAIN, THRESHOLD, GAMMA, BLACKLEVEL, WHITELEVEL
|
2013-08-19 19:57:35 +02:00
|
|
|
};
|
|
|
|
|
2013-09-06 21:26:58 +02:00
|
|
|
///
|
|
|
|
/// Destructor; cleans up resourcess
|
|
|
|
///
|
2013-07-26 22:38:34 +02:00
|
|
|
~Hyperion();
|
|
|
|
|
2016-06-17 01:25:40 +02:00
|
|
|
|
|
|
|
static Hyperion* initInstance(const Json::Value& jsonConfig, const std::string configFile);
|
|
|
|
static Hyperion* getInstance();
|
|
|
|
|
2013-09-06 21:26:58 +02:00
|
|
|
///
|
|
|
|
/// Returns the number of attached leds
|
|
|
|
///
|
2013-08-14 10:54:49 +02:00
|
|
|
unsigned getLedCount() const;
|
2016-05-30 22:39:12 +02:00
|
|
|
|
|
|
|
///
|
|
|
|
/// Returns the current priority
|
|
|
|
///
|
|
|
|
/// @return The current priority
|
|
|
|
///
|
|
|
|
int getCurrentPriority() const;
|
2013-11-29 23:22:49 +01:00
|
|
|
///
|
|
|
|
/// Returns a list of active priorities
|
|
|
|
///
|
|
|
|
/// @return The list with priorities
|
|
|
|
///
|
|
|
|
QList<int> getActivePriorities() const;
|
|
|
|
|
|
|
|
///
|
|
|
|
/// Returns the information of a specific priorrity channel
|
|
|
|
///
|
|
|
|
/// @param[in] priority The priority channel
|
|
|
|
///
|
|
|
|
/// @return The information of the given
|
|
|
|
///
|
|
|
|
/// @throw std::runtime_error when the priority channel does not exist
|
|
|
|
///
|
|
|
|
const InputInfo& getPriorityInfo(const int priority) const;
|
|
|
|
|
|
|
|
/// Get the list of available effects
|
|
|
|
/// @return The list of available effects
|
2013-12-01 14:09:01 +01:00
|
|
|
const std::list<EffectDefinition> &getEffects() const;
|
2016-04-24 17:07:31 +02:00
|
|
|
|
|
|
|
/// Get the list of active effects
|
|
|
|
/// @return The list of active effects
|
|
|
|
const std::list<ActiveEffectDefinition> &getActiveEffects();
|
2016-06-14 20:14:06 +02:00
|
|
|
|
|
|
|
///
|
|
|
|
const Json::Value& getJsonConfig() { return _jsonConfig; };
|
|
|
|
|
|
|
|
std::string getConfigFileName() { return _configFile; };
|
2013-11-29 23:22:49 +01:00
|
|
|
|
|
|
|
public slots:
|
2013-09-06 21:26:58 +02:00
|
|
|
///
|
|
|
|
/// Writes a single color to all the leds for the given time and priority
|
|
|
|
///
|
|
|
|
/// @param[in] priority The priority of the written color
|
|
|
|
/// @param[in] ledColor The color to write to the leds
|
|
|
|
/// @param[in] timeout_ms The time the leds are set to the given color [ms]
|
|
|
|
///
|
2013-12-08 17:45:26 +01:00
|
|
|
void setColor(int priority, const ColorRgb &ledColor, const int timeout_ms, bool clearEffects = true);
|
2013-08-18 13:33:56 +02:00
|
|
|
|
2013-09-06 21:26:58 +02:00
|
|
|
///
|
|
|
|
/// Writes the given colors to all leds for the given time and priority
|
|
|
|
///
|
|
|
|
/// @param[in] priority The priority of the written colors
|
|
|
|
/// @param[in] ledColors The colors to write to the leds
|
|
|
|
/// @param[in] timeout_ms The time the leds are set to the given colors [ms]
|
|
|
|
///
|
2013-12-08 17:45:26 +01:00
|
|
|
void setColors(int priority, const std::vector<ColorRgb> &ledColors, const int timeout_ms, bool clearEffects = true);
|
2013-08-18 13:33:56 +02:00
|
|
|
|
2013-09-06 21:26:58 +02:00
|
|
|
///
|
2013-11-22 11:48:10 +01:00
|
|
|
/// Returns the list with unique transform identifiers
|
|
|
|
/// @return The list with transform identifiers
|
2013-09-06 21:26:58 +02:00
|
|
|
///
|
2013-11-22 11:48:10 +01:00
|
|
|
const std::vector<std::string> & getTransformIds() const;
|
2015-12-22 10:09:47 +01:00
|
|
|
|
2016-03-10 18:08:34 +01:00
|
|
|
///
|
|
|
|
/// Returns the list with unique correction identifiers
|
|
|
|
/// @return The list with correction identifiers
|
|
|
|
///
|
|
|
|
const std::vector<std::string> & getTemperatureIds() const;
|
|
|
|
|
2016-04-02 00:04:11 +02:00
|
|
|
///
|
|
|
|
/// Returns the list with unique adjustment identifiers
|
|
|
|
/// @return The list with adjustment identifiers
|
|
|
|
///
|
|
|
|
const std::vector<std::string> & getAdjustmentIds() const;
|
|
|
|
|
2013-09-06 21:26:58 +02:00
|
|
|
///
|
2013-11-22 11:48:10 +01:00
|
|
|
/// Returns the ColorTransform with the given identifier
|
|
|
|
/// @return The transform with the given identifier (or nullptr if the identifier does not exist)
|
2013-09-06 21:26:58 +02:00
|
|
|
///
|
2013-11-22 11:48:10 +01:00
|
|
|
ColorTransform * getTransform(const std::string& id);
|
2015-12-22 10:09:47 +01:00
|
|
|
|
2016-03-10 18:08:34 +01:00
|
|
|
///
|
|
|
|
/// Returns the ColorCorrection with the given identifier
|
|
|
|
/// @return The correction with the given identifier (or nullptr if the identifier does not exist)
|
|
|
|
///
|
|
|
|
ColorCorrection * getTemperature(const std::string& id);
|
|
|
|
|
2016-04-02 00:04:11 +02:00
|
|
|
///
|
|
|
|
/// Returns the ColorAdjustment with the given identifier
|
|
|
|
/// @return The adjustment with the given identifier (or nullptr if the identifier does not exist)
|
|
|
|
///
|
|
|
|
ColorAdjustment * getAdjustment(const std::string& id);
|
|
|
|
|
2016-03-09 19:55:55 +01:00
|
|
|
///
|
|
|
|
/// Returns MessageForwarder Object
|
|
|
|
/// @return instance of message forwarder object
|
|
|
|
///
|
|
|
|
MessageForwarder * getForwarder();
|
2013-08-19 19:57:35 +02:00
|
|
|
|
2013-12-03 22:56:46 +01:00
|
|
|
/// Tell Hyperion that the transforms have changed and the leds need to be updated
|
|
|
|
void transformsUpdated();
|
2015-12-22 10:09:47 +01:00
|
|
|
|
|
|
|
/// Tell Hyperion that the corrections have changed and the leds need to be updated
|
|
|
|
void correctionsUpdated();
|
2016-03-10 18:08:34 +01:00
|
|
|
|
|
|
|
/// Tell Hyperion that the corrections have changed and the leds need to be updated
|
|
|
|
void temperaturesUpdated();
|
2013-08-19 19:57:35 +02:00
|
|
|
|
2016-04-02 00:04:11 +02:00
|
|
|
/// Tell Hyperion that the corrections have changed and the leds need to be updated
|
|
|
|
void adjustmentsUpdated();
|
|
|
|
|
2013-09-06 21:26:58 +02:00
|
|
|
///
|
|
|
|
/// Clears the given priority channel. This will switch the led-colors to the colors of the next
|
|
|
|
/// lower priority channel (or off if no more channels are set)
|
|
|
|
///
|
|
|
|
/// @param[in] priority The priority channel
|
|
|
|
///
|
2013-08-18 13:33:56 +02:00
|
|
|
void clear(int priority);
|
|
|
|
|
2013-09-06 21:26:58 +02:00
|
|
|
///
|
|
|
|
/// Clears all priority channels. This will switch the leds off until a new priority is written.
|
|
|
|
///
|
2013-08-18 13:33:56 +02:00
|
|
|
void clearall();
|
2013-07-26 22:38:34 +02:00
|
|
|
|
2013-11-24 16:10:48 +01:00
|
|
|
/// Run the specified effect on the given priority channel and optionally specify a timeout
|
|
|
|
/// @param effectName Name of the effec to run
|
|
|
|
/// @param priority The priority channel of the effect
|
|
|
|
/// @param timout The timeout of the effect (after the timout, the effect will be cleared)
|
|
|
|
int setEffect(const std::string & effectName, int priority, int timeout = -1);
|
|
|
|
|
2013-12-01 14:09:01 +01:00
|
|
|
/// Run the specified effect on the given priority channel and optionally specify a timeout
|
|
|
|
/// @param effectName Name of the effec to run
|
2013-12-01 16:35:45 +01:00
|
|
|
/// @param args arguments of the effect script
|
2013-12-01 14:09:01 +01:00
|
|
|
/// @param priority The priority channel of the effect
|
|
|
|
/// @param timout The timeout of the effect (after the timout, the effect will be cleared)
|
|
|
|
int setEffect(const std::string & effectName, const Json::Value & args, int priority, int timeout = -1);
|
|
|
|
|
2013-11-24 16:10:48 +01:00
|
|
|
public:
|
2016-06-17 01:25:40 +02:00
|
|
|
static Hyperion *_hyperion;
|
|
|
|
|
2013-11-04 20:52:57 +01:00
|
|
|
static ColorOrder createColorOrder(const Json::Value & deviceConfig);
|
2015-02-23 16:11:33 +01:00
|
|
|
/**
|
|
|
|
* Construct the 'led-string' with the integration area definition per led and the color
|
|
|
|
* ordering of the RGB channels
|
|
|
|
* @param ledsConfig The configuration of the led areas
|
|
|
|
* @param deviceOrder The default RGB channel ordering
|
|
|
|
* @return The constructed ledstring
|
|
|
|
*/
|
|
|
|
static LedString createLedString(const Json::Value & ledsConfig, const ColorOrder deviceOrder);
|
2013-11-20 09:25:49 +01:00
|
|
|
|
|
|
|
static MultiColorTransform * createLedColorsTransform(const unsigned ledCnt, const Json::Value & colorTransformConfig);
|
2015-12-22 10:09:47 +01:00
|
|
|
static MultiColorCorrection * createLedColorsTemperature(const unsigned ledCnt, const Json::Value & colorTemperatureConfig);
|
2016-04-02 00:04:11 +02:00
|
|
|
static MultiColorAdjustment * createLedColorsAdjustment(const unsigned ledCnt, const Json::Value & colorAdjustmentConfig);
|
2013-11-22 11:48:10 +01:00
|
|
|
static ColorTransform * createColorTransform(const Json::Value & transformConfig);
|
2015-12-22 10:09:47 +01:00
|
|
|
static ColorCorrection * createColorCorrection(const Json::Value & correctionConfig);
|
2016-04-02 00:04:11 +02:00
|
|
|
static ColorAdjustment * createColorAdjustment(const Json::Value & adjustmentConfig);
|
2013-08-24 11:51:52 +02:00
|
|
|
static HsvTransform * createHsvTransform(const Json::Value & hsvConfig);
|
2015-12-22 10:09:47 +01:00
|
|
|
static HslTransform * createHslTransform(const Json::Value & hslConfig);
|
2013-11-22 11:48:10 +01:00
|
|
|
static RgbChannelTransform * createRgbChannelTransform(const Json::Value& colorConfig);
|
2016-07-04 00:43:41 +02:00
|
|
|
static RgbChannelAdjustment * createRgbChannelCorrection(const Json::Value& colorConfig);
|
2016-04-02 00:04:11 +02:00
|
|
|
static RgbChannelAdjustment * createRgbChannelAdjustment(const Json::Value& colorConfig, const RgbChannel color);
|
2013-11-20 09:25:49 +01:00
|
|
|
|
2013-10-27 18:04:37 +01:00
|
|
|
static LedDevice * createColorSmoothing(const Json::Value & smoothingConfig, LedDevice * ledDevice);
|
2016-03-09 19:55:55 +01:00
|
|
|
static MessageForwarder * createMessageForwarder(const Json::Value & forwarderConfig);
|
2016-04-02 00:04:11 +02:00
|
|
|
|
2013-11-24 16:10:48 +01:00
|
|
|
signals:
|
|
|
|
/// Signal which is emitted when a priority channel is actively cleared
|
|
|
|
/// This signal will not be emitted when a priority channel time out
|
|
|
|
void channelCleared(int priority);
|
|
|
|
|
|
|
|
/// Signal which is emitted when all priority channels are actively cleared
|
|
|
|
/// This signal will not be emitted when a priority channel time out
|
|
|
|
void allChannelsCleared();
|
|
|
|
|
2013-08-14 17:02:09 +02:00
|
|
|
private slots:
|
2013-09-06 21:26:58 +02:00
|
|
|
///
|
|
|
|
/// Updates the priority muxer with the current time and (re)writes the led color with applied
|
|
|
|
/// transforms.
|
|
|
|
///
|
2013-08-14 17:02:09 +02:00
|
|
|
void update();
|
|
|
|
|
2013-07-26 22:38:34 +02:00
|
|
|
private:
|
2016-06-17 01:25:40 +02:00
|
|
|
|
|
|
|
///
|
|
|
|
/// Constructs the Hyperion instance based on the given Json configuration
|
|
|
|
///
|
|
|
|
/// @param[in] jsonConfig The Json configuration
|
|
|
|
///
|
|
|
|
Hyperion(const Json::Value& jsonConfig, const std::string configFile);
|
|
|
|
|
2013-09-06 21:26:58 +02:00
|
|
|
/// The specifiation of the led frame construction and picture integration
|
2013-08-18 13:33:56 +02:00
|
|
|
LedString _ledString;
|
2013-07-26 22:38:34 +02:00
|
|
|
|
2013-09-06 21:26:58 +02:00
|
|
|
/// The priority muxer
|
2013-08-18 13:33:56 +02:00
|
|
|
PriorityMuxer _muxer;
|
2013-07-26 22:38:34 +02:00
|
|
|
|
2016-04-02 00:04:11 +02:00
|
|
|
/// The transformation from raw colors to led colors
|
2013-11-20 09:25:49 +01:00
|
|
|
MultiColorTransform * _raw2ledTransform;
|
2015-12-22 10:09:47 +01:00
|
|
|
|
2016-04-02 00:04:11 +02:00
|
|
|
/// The temperature from raw colors to led colors
|
2015-12-22 10:09:47 +01:00
|
|
|
MultiColorCorrection * _raw2ledTemperature;
|
|
|
|
|
2016-04-02 00:04:11 +02:00
|
|
|
/// The adjustment from raw colors to led colors
|
|
|
|
MultiColorAdjustment * _raw2ledAdjustment;
|
|
|
|
|
2013-09-06 21:26:58 +02:00
|
|
|
/// The actual LedDevice
|
2013-10-27 18:04:37 +01:00
|
|
|
LedDevice * _device;
|
2013-08-14 17:02:09 +02:00
|
|
|
|
2013-11-24 16:10:48 +01:00
|
|
|
/// Effect engine
|
|
|
|
EffectEngine * _effectEngine;
|
2016-03-09 19:55:55 +01:00
|
|
|
|
2016-03-09 19:58:49 +01:00
|
|
|
// proto and json Message forwarder
|
2016-03-09 19:55:55 +01:00
|
|
|
MessageForwarder * _messageForwarder;
|
2013-11-24 16:10:48 +01:00
|
|
|
|
2016-06-14 20:14:06 +02:00
|
|
|
// json configuration
|
|
|
|
const Json::Value& _jsonConfig;
|
|
|
|
|
|
|
|
// the name of config file
|
|
|
|
std::string _configFile;
|
|
|
|
|
2013-09-06 21:26:58 +02:00
|
|
|
/// The timer for handling priority channel timeouts
|
2013-08-14 17:02:09 +02:00
|
|
|
QTimer _timer;
|
2016-07-01 23:20:41 +02:00
|
|
|
|
|
|
|
/// buffer for leds
|
|
|
|
std::vector<ColorRgb> _ledBuffer;
|
|
|
|
|
|
|
|
/// Logger instance
|
|
|
|
Logger * _log;
|
|
|
|
|
|
|
|
/// count of hardware leds
|
|
|
|
unsigned _hwLedCount;
|
2013-07-26 22:38:34 +02:00
|
|
|
};
|