mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2025-04-09 14:33:28 +02:00
* Removed all CVS tags. * Removed 'const char *name' parameter from all QObject contructors.
67 lines
1.9 KiB
C++
67 lines
1.9 KiB
C++
// switcher.h
|
|
//
|
|
// Abstract base class for Rivendell Switcher/GPIO drivers.
|
|
//
|
|
// (C) Copyright 2002-2007,2010,2016 Fred Gleason <fredg@paravelsystems.com>
|
|
//
|
|
// This program is free software; you can redistribute it and/or modify
|
|
// it under the terms of the GNU General Public License version 2 as
|
|
// published by the Free Software Foundation.
|
|
//
|
|
// This program is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU General Public License for more details.
|
|
//
|
|
// You should have received a copy of the GNU General Public
|
|
// License along with this program; if not, write to the Free Software
|
|
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
//
|
|
|
|
#ifndef SWITCHER_H
|
|
#define SWITCHER_H
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <qobject.h>
|
|
|
|
#include <rdmatrix.h>
|
|
#include <rdmacro.h>
|
|
|
|
class Switcher : public QObject
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
Switcher(RDMatrix *matrix,QObject *parent=0);
|
|
~Switcher();
|
|
QString stationName() const;
|
|
int matrixNumber() const;
|
|
virtual RDMatrix::Type type()=0;
|
|
virtual unsigned gpiQuantity()=0;
|
|
virtual unsigned gpoQuantity()=0;
|
|
virtual bool primaryTtyActive()=0;
|
|
virtual bool secondaryTtyActive()=0;
|
|
virtual void processCommand(RDMacro *cmd)=0;
|
|
virtual void sendGpi();
|
|
virtual void sendGpo();
|
|
|
|
signals:
|
|
void rmlEcho(RDMacro *cmd);
|
|
void gpiChanged(int matrix,int line,bool state);
|
|
void gpoChanged(int matrix,int line,bool state);
|
|
void gpiState(int matrix,unsigned line,bool state);
|
|
void gpoState(int matrix,unsigned line,bool state);
|
|
|
|
protected:
|
|
void executeMacroCart(unsigned cartnum);
|
|
void logBytes(uint8_t *data,int len);
|
|
void insertGpioEntry(bool is_gpo,int line);
|
|
|
|
private:
|
|
QString switcher_station_name;
|
|
int switcher_matrix_number;
|
|
};
|
|
|
|
|
|
#endif // SWITCHER_H
|