mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2023-10-10 13:36:59 +02:00
cab3c2fdc9
* - add more drawing func to effect engine - make provider rs232 less noisy - json checks: remove utf8 conversion temporarly and make it compat with py3 again * fix compile prob
107 lines
2.7 KiB
C++
107 lines
2.7 KiB
C++
#pragma once
|
|
|
|
// Python includes
|
|
#include <Python.h>
|
|
|
|
// Qt includes
|
|
#include <QThread>
|
|
#include <QSize>
|
|
#include <QImage>
|
|
#include <QPainter>
|
|
|
|
// Hyperion includes
|
|
#include <hyperion/ImageProcessor.h>
|
|
#include <utils/Components.h>
|
|
|
|
class Effect : public QThread
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
Effect(PyThreadState * mainThreadState, int priority, int timeout, const QString & script, const QString & name, const QJsonObject & args = QJsonObject());
|
|
virtual ~Effect();
|
|
|
|
virtual void run();
|
|
|
|
int getPriority() const;
|
|
|
|
QString getScript() const { return _script; }
|
|
QString getName() const { return _name; }
|
|
|
|
int getTimeout() const {return _timeout; }
|
|
|
|
QJsonObject getArgs() const { return _args; }
|
|
|
|
bool isAbortRequested() const;
|
|
|
|
/// This function registers the extension module in Python
|
|
static void registerHyperionExtensionModule();
|
|
|
|
public slots:
|
|
void abort();
|
|
|
|
signals:
|
|
void effectFinished(Effect * effect);
|
|
|
|
void setColors(int priority, const std::vector<ColorRgb> &ledColors, const int timeout_ms, bool clearEffects, hyperion::Components component);
|
|
|
|
private slots:
|
|
void effectFinished();
|
|
|
|
private:
|
|
PyObject * json2python(const QJsonValue & jsonData) const;
|
|
|
|
// Wrapper methods for Python interpreter extra buildin methods
|
|
static PyMethodDef effectMethods[];
|
|
static PyObject* wrapSetColor (PyObject *self, PyObject *args);
|
|
static PyObject* wrapSetImage (PyObject *self, PyObject *args);
|
|
static PyObject* wrapAbort (PyObject *self, PyObject *args);
|
|
static PyObject* wrapImageShow (PyObject *self, PyObject *args);
|
|
static PyObject* wrapImageCanonicalGradient(PyObject *self, PyObject *args);
|
|
static PyObject* wrapImageRadialGradient (PyObject *self, PyObject *args);
|
|
static PyObject* wrapImageSolidFill (PyObject *self, PyObject *args);
|
|
static PyObject* wrapImageDrawLine (PyObject *self, PyObject *args);
|
|
static PyObject* wrapImageDrawRect (PyObject *self, PyObject *args);
|
|
static PyObject* wrapImageSetPixel (PyObject *self, PyObject *args);
|
|
static PyObject* wrapImageGetPixel (PyObject *self, PyObject *args);
|
|
|
|
static Effect * getEffect();
|
|
|
|
#if PY_MAJOR_VERSION >= 3
|
|
static struct PyModuleDef moduleDef;
|
|
static PyObject* PyInit_hyperion();
|
|
#else
|
|
static void PyInit_hyperion();
|
|
#endif
|
|
|
|
private:
|
|
PyThreadState * _mainThreadState;
|
|
|
|
const int _priority;
|
|
|
|
const int _timeout;
|
|
|
|
const QString _script;
|
|
const QString _name;
|
|
|
|
const QJsonObject _args;
|
|
|
|
int64_t _endTime;
|
|
|
|
PyThreadState * _interpreterThreadState;
|
|
|
|
bool _abortRequested;
|
|
|
|
/// The processor for translating images to led-values
|
|
ImageProcessor * _imageProcessor;
|
|
|
|
/// Buffer for colorData
|
|
std::vector<ColorRgb> _colors;
|
|
|
|
QSize _imageSize;
|
|
|
|
QImage * _image;
|
|
QPainter * _painter;
|
|
};
|
|
|