2013-11-24 16:10:48 +01:00
|
|
|
#pragma once
|
|
|
|
|
2013-11-26 21:38:24 +01:00
|
|
|
// Python includes
|
|
|
|
#include <Python.h>
|
|
|
|
|
2013-11-30 17:41:38 +01:00
|
|
|
// Qt includes
|
|
|
|
#include <QThread>
|
|
|
|
|
2013-11-28 14:38:07 +01:00
|
|
|
// Hyperion includes
|
|
|
|
#include <hyperion/ImageProcessor.h>
|
|
|
|
|
2013-11-26 21:38:24 +01:00
|
|
|
class Effect : public QThread
|
2013-11-24 16:10:48 +01:00
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
2014-02-26 18:10:17 +01:00
|
|
|
Effect(PyThreadState * mainThreadState, int priority, int timeout, const std::string & script, const Json::Value & args = Json::Value());
|
2013-11-24 16:10:48 +01:00
|
|
|
virtual ~Effect();
|
2013-11-26 21:38:24 +01:00
|
|
|
|
|
|
|
virtual void run();
|
|
|
|
|
|
|
|
int getPriority() const;
|
2016-04-24 17:07:31 +02:00
|
|
|
|
|
|
|
std::string getScript() const { return _script; }
|
|
|
|
|
|
|
|
int getTimeout() const {return _timeout; }
|
|
|
|
|
|
|
|
Json::Value getArgs() const { return _args; }
|
2013-11-26 21:38:24 +01:00
|
|
|
|
2013-11-30 15:54:47 +01:00
|
|
|
bool isAbortRequested() const;
|
|
|
|
|
2014-02-26 18:10:17 +01:00
|
|
|
/// This function registers the extension module in Python
|
|
|
|
static void registerHyperionExtensionModule();
|
|
|
|
|
2013-11-26 21:38:24 +01:00
|
|
|
public slots:
|
|
|
|
void abort();
|
|
|
|
|
|
|
|
signals:
|
|
|
|
void effectFinished(Effect * effect);
|
|
|
|
|
2013-12-08 17:45:26 +01:00
|
|
|
void setColors(int priority, const std::vector<ColorRgb> &ledColors, const int timeout_ms, bool clearEffects);
|
2013-11-29 23:22:49 +01:00
|
|
|
|
2013-11-26 21:38:24 +01:00
|
|
|
private slots:
|
|
|
|
void effectFinished();
|
|
|
|
|
2013-11-28 14:15:52 +01:00
|
|
|
private:
|
2013-11-30 17:41:38 +01:00
|
|
|
PyObject * json2python(const Json::Value & json) const;
|
|
|
|
|
2013-11-28 14:15:52 +01:00
|
|
|
// Wrapper methods for Python interpreter extra buildin methods
|
2014-02-26 18:10:17 +01:00
|
|
|
static PyMethodDef effectMethods[];
|
|
|
|
static PyObject* wrapSetColor(PyObject *self, PyObject *args);
|
2013-11-28 14:15:52 +01:00
|
|
|
static PyObject* wrapSetImage(PyObject *self, PyObject *args);
|
|
|
|
static PyObject* wrapAbort(PyObject *self, PyObject *args);
|
2014-02-26 18:10:17 +01:00
|
|
|
static Effect * getEffect();
|
|
|
|
|
|
|
|
#if PY_MAJOR_VERSION >= 3
|
|
|
|
static struct PyModuleDef moduleDef;
|
|
|
|
static PyObject* PyInit_hyperion();
|
|
|
|
#else
|
|
|
|
static void PyInit_hyperion();
|
|
|
|
#endif
|
2013-11-28 14:15:52 +01:00
|
|
|
|
2013-11-26 21:38:24 +01:00
|
|
|
private:
|
2014-02-26 18:10:17 +01:00
|
|
|
PyThreadState * _mainThreadState;
|
|
|
|
|
2013-11-26 21:38:24 +01:00
|
|
|
const int _priority;
|
|
|
|
|
|
|
|
const int _timeout;
|
2013-11-29 23:22:49 +01:00
|
|
|
|
2013-12-01 14:09:01 +01:00
|
|
|
const std::string _script;
|
2013-11-30 00:28:04 +01:00
|
|
|
|
2013-12-01 14:09:01 +01:00
|
|
|
const Json::Value _args;
|
2013-11-30 00:28:04 +01:00
|
|
|
|
2013-11-28 14:29:31 +01:00
|
|
|
int64_t _endTime;
|
2013-11-26 21:38:24 +01:00
|
|
|
|
|
|
|
PyThreadState * _interpreterThreadState;
|
|
|
|
|
|
|
|
bool _abortRequested;
|
2013-11-28 14:38:07 +01:00
|
|
|
|
|
|
|
/// The processor for translating images to led-values
|
|
|
|
ImageProcessor * _imageProcessor;
|
2013-12-08 12:46:33 +01:00
|
|
|
|
|
|
|
/// Buffer for colorData
|
|
|
|
std::vector<ColorRgb> _colors;
|
2013-11-24 16:10:48 +01:00
|
|
|
};
|
2016-06-23 13:48:49 +02:00
|
|
|
|