1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135
|
/*
Q Light Controller
dmx4linux.cpp
Copyright (c) Heikki Junnila
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0.txt
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
#include <QStringList>
#include <QString>
#include <QDebug>
#include <QFile>
#include "dmx4linux.h"
/*****************************************************************************
* Initialization
*****************************************************************************/
DMX4Linux::~DMX4Linux()
{
if (m_file.isOpen() == true)
m_file.close();
}
void DMX4Linux::init()
{
m_file.setFileName("/dev/dmx");
}
QString DMX4Linux::name()
{
return QString("DMX4Linux");
}
int DMX4Linux::capabilities() const
{
return QLCIOPlugin::Output;
}
/*****************************************************************************
* Open/close
*****************************************************************************/
bool DMX4Linux::openOutput(quint32 output, quint32 universe)
{
Q_UNUSED(universe)
if (output != 0)
return false;
m_file.unsetError();
if (m_file.open(QIODevice::WriteOnly | QIODevice::Unbuffered) == false)
{
qWarning() << "DMX4Linux output is not available:"
<< m_file.errorString();
return false;
}
return true;
}
void DMX4Linux::closeOutput(quint32 output, quint32 universe)
{
Q_UNUSED(universe)
if (output != 0)
return;
m_file.close();
m_file.unsetError();
}
QStringList DMX4Linux::outputs()
{
QStringList list;
if (m_file.exists() == true)
list << QString("DMX4Linux");
return list;
}
QString DMX4Linux::pluginInfo()
{
QString str;
str += QString("<HTML>");
str += QString("<HEAD>");
str += QString("<TITLE>%1</TITLE>").arg(name());
str += QString("</HEAD>");
str += QString("<BODY>");
str += QString("<P>");
str += QString("<H3>%1</H3>").arg(name());
str += tr("This plugin provides DMX output for devices supported by "
"the DMX4Linux driver suite.");
str += QString("</P>");
return str;
}
QString DMX4Linux::outputInfo(quint32 output)
{
QString str;
if (output != QLCIOPlugin::invalidLine() && output == 0)
{
str += QString("<H3>%1</H3>").arg(outputs()[output]);
}
str += QString("</BODY>");
str += QString("</HTML>");
return str;
}
void DMX4Linux::writeUniverse(quint32 universe, quint32 output, const QByteArray &data, bool dataChanged)
{
Q_UNUSED(universe)
Q_UNUSED(dataChanged)
if (output != 0 || m_file.isOpen() == false)
return;
m_file.seek(0);
if (m_file.write(data) == -1)
qWarning() << "DMX4Linux: Unable to write:" << m_file.errorString();
}
|