2013-11-24 16:10:48 +01:00
|
|
|
#pragma once
|
|
|
|
|
2013-12-01 14:09:01 +01:00
|
|
|
// Qt includes
|
|
|
|
#include <QObject>
|
|
|
|
|
2013-11-30 17:41:38 +01:00
|
|
|
// Json includes
|
|
|
|
#include <json/value.h>
|
|
|
|
|
|
|
|
// 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>
|
|
|
|
|
2013-11-26 21:38:24 +01:00
|
|
|
// pre-declarioation
|
|
|
|
class Effect;
|
2013-11-29 23:22:49 +01:00
|
|
|
typedef struct _ts PyThreadState;
|
2013-11-26 21:38:24 +01:00
|
|
|
|
2013-11-24 16:10:48 +01:00
|
|
|
class EffectEngine : public QObject
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
2013-11-30 12:42:08 +01:00
|
|
|
EffectEngine(Hyperion * hyperion, const Json::Value & jsonEffectConfig);
|
2013-11-24 16:10:48 +01:00
|
|
|
virtual ~EffectEngine();
|
|
|
|
|
2013-12-01 14:09:01 +01:00
|
|
|
const std::list<EffectDefinition> & getEffects() const;
|
2013-11-24 16:10:48 +01:00
|
|
|
|
2013-12-11 21:58:59 +01:00
|
|
|
static bool loadEffectDefinition(const std::string & path, const std::string & effectConfigFile, EffectDefinition &effectDefinition);
|
|
|
|
|
2013-11-24 16:10:48 +01:00
|
|
|
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);
|
|
|
|
|
2013-12-01 14:09:01 +01:00
|
|
|
/// 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);
|
|
|
|
|
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:
|
|
|
|
void effectFinished(Effect * effect);
|
|
|
|
|
2013-12-13 22:41:24 +01:00
|
|
|
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);
|
|
|
|
|
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;
|
2013-11-29 23:22:49 +01:00
|
|
|
|
|
|
|
PyThreadState * _mainThreadState;
|
2013-11-24 16:10:48 +01:00
|
|
|
};
|