hyperion.ng/include/xbmcvideochecker/XBMCVideoChecker.h

138 lines
3.8 KiB
C
Raw Normal View History

2013-08-23 20:44:53 +02:00
#pragma once
// system includes
#include <cstdint>
#include <string>
// QT includes
#include <QTimer>
#include <QString>
#include <QTcpSocket>
#include <QByteArray>
2013-08-23 20:44:53 +02:00
// Hyperion includes
#include <hyperion/Hyperion.h>
// Utils includes
#include <utils/GrabbingMode.h>
#include <utils/VideoMode.h>
2013-09-09 04:54:13 +02:00
///
2013-08-31 14:36:54 +02:00
/// This class will check if XBMC is playing something. When it does not, this class will send all black data to Hyperion.
/// This allows grabbed screen data to be overriden while in the XBMC menus.
///
/// Note: The json TCP server needs to be enabled manually in XBMC in System/Settings/Network/Services
2013-09-09 04:54:13 +02:00
///
2013-08-23 20:44:53 +02:00
class XBMCVideoChecker : public QObject
{
Q_OBJECT
public:
2013-09-09 04:54:13 +02:00
///
/// Constructor
///
/// @param address Network address of the XBMC instance
2013-08-31 14:36:54 +02:00
/// @param port Port number to use (XBMC default = 9090)
/// @param grabVideo Whether or not to grab when the XBMC video player is playing
/// @param grabPhoto Whether or not to grab when the XBMC photo player is playing
/// @param grabAudio Whether or not to grab when the XBMC audio player is playing
/// @param grabMenu Whether or not to grab when nothing is playing (in XBMC menu)
/// @param grabScreensaver Whether or not to grab when the XBMC screensaver is activated
/// @param enable3DDetection Wheter or not to enable the detection of 3D movies playing
2013-09-09 04:54:13 +02:00
///
XBMCVideoChecker(const std::string & address, uint16_t port, bool grabVideo, bool grabPhoto, bool grabAudio, bool grabMenu, bool grabScreensaver, bool enable3DDetection);
2013-08-23 20:44:53 +02:00
2013-09-09 04:54:13 +02:00
///
/// Start polling XBMC
///
2013-08-23 20:44:53 +02:00
void start();
signals:
/// Signal emitted when the grabbing mode changes
void grabbingMode(GrabbingMode grabbingMode);
/// Signal emitted when a 3D movie is detected
void videoMode(VideoMode videoMode);
2013-08-23 20:44:53 +02:00
private slots:
2013-09-09 04:54:13 +02:00
/// Receive a reply from XBMC
void receiveReply();
2013-08-23 20:44:53 +02:00
/// Called when connected to XBMC
void connected();
/// Called when disconnected from XBMC
void disconnected();
/// reconnect to XBMC
void reconnect();
/// Called when a connection error was encountered
void connectionError(QAbstractSocket::SocketError error);
private:
/// Set the grabbing mode
void setGrabbingMode(GrabbingMode grabbingMode);
void setScreensaverMode(bool isOnScreensaver);
/// Set the video mode
void setVideoMode(VideoMode videoMode);
2013-08-23 20:44:53 +02:00
private:
2013-09-09 04:54:13 +02:00
/// The network address of the XBMC instance
const QString _address;
2013-09-09 04:54:13 +02:00
/// The port number of XBMC
const uint16_t _port;
2013-08-23 20:44:53 +02:00
/// The JSON-RPC message to check the active player
const QString _activePlayerRequest;
/// The JSON-RPC message to check the currently playing file
const QString _currentPlayingItemRequest;
/// The JSON-RPC message to check the screensaver
const QString _checkScreensaverRequest;
2013-08-23 20:44:53 +02:00
/// The JSON-RPC message to check the active stereoscopicmode
const QString _getStereoscopicMode;
/// The JSON-RPC message to check the xbmc version
const QString _getXbmcVersion;
2013-09-09 04:54:13 +02:00
/// The QT TCP Socket with connection to XBMC
QTcpSocket _socket;
2013-08-23 20:44:53 +02:00
/// Flag indicating whether or not to grab when the XBMC video player is playing
const bool _grabVideo;
/// Flag indicating whether or not to grab when the XBMC photo player is playing
const bool _grabPhoto;
/// Flag indicating whether or not to grab when the XBMC audio player is playing
const bool _grabAudio;
/// Flag indicating whether or not to grab when XBMC is playing nothing (in menu)
const bool _grabMenu;
/// Flag indicating whether or not to grab when the XBMC screensaver is activated
const bool _grabScreensaver;
/// Flag indicating wheter or not to enable the detection of 3D movies playing
const bool _enable3DDetection;
/// Flag indicating if XBMC is on screensaver
bool _previousScreensaverMode;
/// Previous emitted grab mode
GrabbingMode _previousGrabbingMode;
2013-08-23 20:44:53 +02:00
/// Previous emitted video mode
VideoMode _previousVideoMode;
/// XBMC version number
int _xbmcVersion;
2013-08-23 20:44:53 +02:00
};