2013-11-24 16:10:48 +01:00
|
|
|
#pragma once
|
|
|
|
|
2013-12-01 14:09:01 +01:00
|
|
|
// Qt includes
|
|
|
|
#include <QObject>
|
2016-09-13 11:51:16 +02:00
|
|
|
#include <QString>
|
2016-10-09 22:22:17 +02:00
|
|
|
#include <QJsonObject>
|
|
|
|
#include <QJsonValue>
|
|
|
|
#include <QJsonDocument>
|
|
|
|
#include <QJsonArray>
|
2013-11-30 17:41:38 +01:00
|
|
|
|
|
|
|
// Hyperion includes
|
2013-11-24 16:10:48 +01:00
|
|
|
#include <hyperion/Hyperion.h>
|
|
|
|
|
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>
|
2016-10-24 23:52:53 +02:00
|
|
|
#include <effectengine/EffectSchema.h>
|
2016-06-23 13:48:49 +02:00
|
|
|
#include <utils/Logger.h>
|
2013-12-01 14:09:01 +01:00
|
|
|
|
2018-12-31 15:48:29 +01:00
|
|
|
// pre-declaration
|
2013-11-26 21:38:24 +01:00
|
|
|
class Effect;
|
2018-12-31 15:48:29 +01:00
|
|
|
class EffectFileHandler;
|
2013-11-26 21:38:24 +01:00
|
|
|
|
2013-11-24 16:10:48 +01:00
|
|
|
class EffectEngine : public QObject
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
2018-12-31 15:48:29 +01:00
|
|
|
EffectEngine(Hyperion * hyperion);
|
2013-11-24 16:10:48 +01:00
|
|
|
virtual ~EffectEngine();
|
|
|
|
|
2018-12-31 15:48:29 +01:00
|
|
|
const std::list<EffectDefinition> & getEffects() const { return _availableEffects; };
|
2016-11-20 18:41:10 +01:00
|
|
|
|
2016-04-24 17:07:31 +02:00
|
|
|
const std::list<ActiveEffectDefinition> & getActiveEffects();
|
2013-11-24 16:10:48 +01:00
|
|
|
|
2018-12-31 15:48:29 +01:00
|
|
|
///
|
|
|
|
/// Get available schemas from EffectFileHandler
|
|
|
|
/// @return all schemas
|
|
|
|
///
|
|
|
|
const std::list<EffectSchema> & getEffectSchemas();
|
|
|
|
|
|
|
|
///
|
|
|
|
/// @brief Save an effect with EffectFileHandler
|
|
|
|
/// @param obj The effect args
|
|
|
|
/// @param[out] resultMsg The feedback message
|
|
|
|
/// @return True on success else false
|
|
|
|
///
|
|
|
|
const bool saveEffect(const QJsonObject& obj, QString& resultMsg);
|
|
|
|
|
|
|
|
///
|
|
|
|
/// @brief Delete an effect by name.
|
|
|
|
/// @param[in] effectName The effect name to delete
|
|
|
|
/// @param[out] resultMsg The message on error
|
|
|
|
/// @return True on success else false
|
|
|
|
///
|
|
|
|
const bool deleteEffect(const QString& effectName, QString& resultMsg);
|
2013-12-11 21:58:59 +01:00
|
|
|
|
2018-12-27 23:11:32 +01:00
|
|
|
///
|
|
|
|
/// @brief Get all init data of the running effects and stop them
|
|
|
|
///
|
|
|
|
void cacheRunningEffects();
|
|
|
|
|
|
|
|
///
|
|
|
|
/// @brief Start all cached effects, origin and smooth cfg is default
|
|
|
|
///
|
|
|
|
void startCachedEffects();
|
|
|
|
|
|
|
|
signals:
|
|
|
|
/// Emit when the effect list has been updated
|
|
|
|
void effectListUpdated();
|
|
|
|
|
2013-11-24 16:10:48 +01:00
|
|
|
public slots:
|
|
|
|
/// Run the specified effect on the given priority channel and optionally specify a timeout
|
2017-03-01 15:23:53 +01:00
|
|
|
int runEffect(const QString &effectName, int priority, int timeout = -1, const QString &origin="System");
|
2013-11-24 16:10:48 +01:00
|
|
|
|
2013-12-01 14:09:01 +01:00
|
|
|
/// Run the specified effect on the given priority channel and optionally specify a timeout
|
2019-01-06 19:49:56 +01:00
|
|
|
int runEffect(const QString &effectName
|
|
|
|
, const QJsonObject &args
|
|
|
|
, int priority
|
|
|
|
, int timeout = -1
|
|
|
|
, const QString &pythonScript = ""
|
|
|
|
, const QString &origin = "System"
|
|
|
|
, unsigned smoothCfg=0
|
|
|
|
, const QString &imageData = ""
|
|
|
|
);
|
2013-12-01 14:09:01 +01:00
|
|
|
|
2013-11-24 16:10:48 +01:00
|
|
|
/// Clear any effect running on the provided channel
|
|
|
|
void channelCleared(int priority);
|
|
|
|
|
|
|
|
/// Clear all effects
|
|
|
|
void allChannelsCleared();
|
|
|
|
|
2013-11-26 21:38:24 +01:00
|
|
|
private slots:
|
2017-10-12 11:55:03 +02:00
|
|
|
void effectFinished();
|
2013-11-26 21:38:24 +01:00
|
|
|
|
2018-12-31 15:48:29 +01:00
|
|
|
///
|
|
|
|
/// @brief is called whenever the EffectFileHandler emits updated effect list
|
|
|
|
///
|
|
|
|
void handleUpdatedEffectList();
|
2016-11-20 18:41:10 +01:00
|
|
|
|
2018-12-31 15:48:29 +01:00
|
|
|
private:
|
2013-12-13 22:41:24 +01:00
|
|
|
/// Run the specified effect on the given priority channel and optionally specify a timeout
|
2019-01-06 19:49:56 +01:00
|
|
|
int runEffectScript(const QString &script
|
|
|
|
,const QString &name
|
|
|
|
, const QJsonObject &args
|
|
|
|
, int priority
|
|
|
|
, int timeout = -1
|
|
|
|
, const QString &origin="System"
|
|
|
|
, unsigned smoothCfg=0
|
|
|
|
, const QString &imageData = ""
|
|
|
|
);
|
2013-12-13 22:41:24 +01:00
|
|
|
|
2013-11-24 16:10:48 +01:00
|
|
|
private:
|
|
|
|
Hyperion * _hyperion;
|
|
|
|
|
2013-12-01 14:09:01 +01:00
|
|
|
std::list<EffectDefinition> _availableEffects;
|
2013-11-26 21:38:24 +01:00
|
|
|
|
|
|
|
std::list<Effect *> _activeEffects;
|
2016-06-23 13:48:49 +02:00
|
|
|
|
2016-04-24 17:07:31 +02:00
|
|
|
std::list<ActiveEffectDefinition> _availableActiveEffects;
|
2017-10-12 11:55:03 +02:00
|
|
|
|
2018-12-27 23:11:32 +01:00
|
|
|
std::list<ActiveEffectDefinition> _cachedActiveEffects;
|
|
|
|
|
2016-06-23 13:48:49 +02:00
|
|
|
Logger * _log;
|
2018-12-31 15:48:29 +01:00
|
|
|
|
|
|
|
// The global effect file handler
|
|
|
|
EffectFileHandler* _effectFileHandler;
|
2013-11-24 16:10:48 +01:00
|
|
|
};
|