mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2023-10-10 13:36:59 +02:00
e0d405034f
Former-commit-id: b6aec954ba0e79ba5697ea8cc305eb9f7d29f332
60 lines
1.6 KiB
C++
60 lines
1.6 KiB
C++
#pragma once
|
|
|
|
// Qt includes
|
|
#include <QObject>
|
|
|
|
// Json includes
|
|
#include <json/value.h>
|
|
|
|
// Hyperion includes
|
|
#include <hyperion/Hyperion.h>
|
|
|
|
// Effect engine includes
|
|
#include <effectengine/EffectDefinition.h>
|
|
|
|
// pre-declarioation
|
|
class Effect;
|
|
typedef struct _ts PyThreadState;
|
|
|
|
class EffectEngine : public QObject
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
EffectEngine(Hyperion * hyperion, const Json::Value & jsonEffectConfig);
|
|
virtual ~EffectEngine();
|
|
|
|
const std::list<EffectDefinition> & getEffects() const;
|
|
|
|
static bool loadEffectDefinition(const std::string & path, const std::string & effectConfigFile, EffectDefinition &effectDefinition);
|
|
|
|
public slots:
|
|
/// Run the specified effect on the given priority channel and optionally specify a timeout
|
|
int runEffect(const std::string &effectName, int priority, int timeout = -1);
|
|
|
|
/// Run the specified effect on the given priority channel and optionally specify a timeout
|
|
int runEffect(const std::string &effectName, const Json::Value & args, int priority, int timeout = -1);
|
|
|
|
/// Clear any effect running on the provided channel
|
|
void channelCleared(int priority);
|
|
|
|
/// Clear all effects
|
|
void allChannelsCleared();
|
|
|
|
private slots:
|
|
void effectFinished(Effect * effect);
|
|
|
|
private:
|
|
/// Run the specified effect on the given priority channel and optionally specify a timeout
|
|
int runEffectScript(const std::string &script, const Json::Value & args, int priority, int timeout = -1);
|
|
|
|
private:
|
|
Hyperion * _hyperion;
|
|
|
|
std::list<EffectDefinition> _availableEffects;
|
|
|
|
std::list<Effect *> _activeEffects;
|
|
|
|
PyThreadState * _mainThreadState;
|
|
};
|