2016-05-30 22:38:40 +02:00
|
|
|
#include <unistd.h>
|
2013-08-22 22:06:13 +02:00
|
|
|
|
2013-08-13 11:10:45 +02:00
|
|
|
#include <QCoreApplication>
|
2013-08-24 11:51:52 +02:00
|
|
|
#include <QResource>
|
2014-01-28 22:27:02 +01:00
|
|
|
#include <QLocale>
|
2016-05-24 19:56:43 +02:00
|
|
|
#include <QFile>
|
2016-06-17 01:25:40 +02:00
|
|
|
#include <QHostInfo>
|
2013-08-13 11:10:45 +02:00
|
|
|
|
2013-11-19 23:02:41 +01:00
|
|
|
#include "HyperionConfig.h"
|
|
|
|
|
2013-08-14 10:54:49 +02:00
|
|
|
#include <utils/jsonschema/JsonFactory.h>
|
2016-06-17 01:25:40 +02:00
|
|
|
#include <utils/Logger.h>
|
2013-08-14 10:54:49 +02:00
|
|
|
|
|
|
|
#include <hyperion/Hyperion.h>
|
2013-11-24 16:10:48 +01:00
|
|
|
#include <effectengine/EffectEngine.h>
|
2016-05-31 22:55:11 +02:00
|
|
|
#include <bonjour/bonjourserviceregister.h>
|
|
|
|
#include <bonjour/bonjourrecord.h>
|
2013-08-17 15:39:29 +02:00
|
|
|
#include <jsonserver/JsonServer.h>
|
2016-06-12 22:27:24 +02:00
|
|
|
#include <protoserver/ProtoServer.h>
|
|
|
|
#include <boblightserver/BoblightServer.h>
|
2016-05-30 22:38:40 +02:00
|
|
|
|
2016-06-17 01:25:40 +02:00
|
|
|
#include "hyperiond.h"
|
2013-11-08 22:18:10 +01:00
|
|
|
|
2013-08-22 22:06:13 +02:00
|
|
|
|
2016-06-17 01:25:40 +02:00
|
|
|
void startBootsequence()
|
2013-08-24 11:51:52 +02:00
|
|
|
{
|
2016-06-17 01:25:40 +02:00
|
|
|
Hyperion *hyperion = Hyperion::getInstance();
|
|
|
|
const Json::Value &config = hyperion->getJsonConfig();
|
2013-08-24 11:51:52 +02:00
|
|
|
|
2013-10-13 14:48:59 +02:00
|
|
|
// create boot sequence if the configuration is present
|
|
|
|
if (config.isMember("bootsequence"))
|
2013-08-25 18:20:19 +02:00
|
|
|
{
|
2013-12-13 15:55:34 +01:00
|
|
|
const Json::Value effectConfig = config["bootsequence"];
|
|
|
|
|
|
|
|
// Get the parameters for the bootsequence
|
|
|
|
const std::string effectName = effectConfig["effect"].asString();
|
|
|
|
const unsigned duration_ms = effectConfig["duration_ms"].asUInt();
|
2016-05-23 11:01:52 +02:00
|
|
|
const int priority = (duration_ms != 0) ? 0 : effectConfig.get("priority",990).asInt();
|
|
|
|
const int bootcolor_priority = (priority > 990) ? priority+1 : 990;
|
2015-08-20 09:51:44 +02:00
|
|
|
|
2016-03-12 19:21:47 +01:00
|
|
|
// clear the leds
|
|
|
|
ColorRgb boot_color = ColorRgb::BLACK;
|
2016-06-17 01:25:40 +02:00
|
|
|
hyperion->setColor(bootcolor_priority, boot_color, 0, false);
|
2016-01-31 22:38:30 +01:00
|
|
|
|
2016-03-12 19:21:47 +01:00
|
|
|
// start boot effect
|
|
|
|
if ( ! effectName.empty() )
|
2016-01-31 22:38:30 +01:00
|
|
|
{
|
2016-03-12 19:21:47 +01:00
|
|
|
int result;
|
2016-03-23 17:40:34 +01:00
|
|
|
std::cout << "INFO: Boot sequence '" << effectName << "' ";
|
2016-03-12 19:21:47 +01:00
|
|
|
if (effectConfig.isMember("args"))
|
2014-09-22 20:19:58 +02:00
|
|
|
{
|
2016-03-12 19:21:47 +01:00
|
|
|
std::cout << " (with user defined arguments) ";
|
|
|
|
const Json::Value effectConfigArgs = effectConfig["args"];
|
2016-06-17 01:25:40 +02:00
|
|
|
result = hyperion->setEffect(effectName, effectConfigArgs, priority, duration_ms);
|
2014-09-22 20:19:58 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2016-06-17 01:25:40 +02:00
|
|
|
result = hyperion->setEffect(effectName, priority, duration_ms);
|
2014-09-22 20:19:58 +02:00
|
|
|
}
|
2016-03-12 19:21:47 +01:00
|
|
|
std::cout << ((result == 0) ? "started" : "failed") << std::endl;
|
2013-12-13 19:59:01 +01:00
|
|
|
}
|
2016-03-12 19:21:47 +01:00
|
|
|
|
|
|
|
// static color
|
|
|
|
if ( ! effectConfig["color"].isNull() && effectConfig["color"].isArray() && effectConfig["color"].size() == 3 )
|
2013-12-13 19:59:01 +01:00
|
|
|
{
|
2016-03-12 19:21:47 +01:00
|
|
|
boot_color = {
|
|
|
|
(uint8_t)effectConfig["color"][0].asUInt(),
|
|
|
|
(uint8_t)effectConfig["color"][1].asUInt(),
|
|
|
|
(uint8_t)effectConfig["color"][2].asUInt()
|
|
|
|
};
|
2013-10-16 18:04:43 +02:00
|
|
|
}
|
2016-03-12 19:21:47 +01:00
|
|
|
|
2016-06-17 01:25:40 +02:00
|
|
|
hyperion->setColor(bootcolor_priority, boot_color, 0, false);
|
2013-08-25 18:20:19 +02:00
|
|
|
}
|
2016-05-30 22:38:40 +02:00
|
|
|
}
|
2013-08-23 18:24:10 +02:00
|
|
|
|
2016-05-30 22:38:40 +02:00
|
|
|
|
|
|
|
// create XBMC video checker if the configuration is present
|
2016-06-17 01:25:40 +02:00
|
|
|
XBMCVideoChecker* createXBMCVideoChecker()
|
2016-05-30 22:38:40 +02:00
|
|
|
{
|
2016-06-17 01:25:40 +02:00
|
|
|
XBMCVideoChecker* xbmcVideoChecker = nullptr;
|
|
|
|
const Json::Value &config = Hyperion::getInstance()->getJsonConfig();
|
2013-10-13 14:48:59 +02:00
|
|
|
if (config.isMember("xbmcVideoChecker"))
|
|
|
|
{
|
|
|
|
const Json::Value & videoCheckerConfig = config["xbmcVideoChecker"];
|
2016-06-17 01:25:40 +02:00
|
|
|
xbmcVideoChecker = XBMCVideoChecker::initInstance(
|
2013-09-24 21:45:27 +02:00
|
|
|
videoCheckerConfig["xbmcAddress"].asString(),
|
|
|
|
videoCheckerConfig["xbmcTcpPort"].asUInt(),
|
|
|
|
videoCheckerConfig["grabVideo"].asBool(),
|
|
|
|
videoCheckerConfig["grabPictures"].asBool(),
|
|
|
|
videoCheckerConfig["grabAudio"].asBool(),
|
2013-12-21 14:32:30 +01:00
|
|
|
videoCheckerConfig["grabMenu"].asBool(),
|
2016-06-07 12:34:50 +02:00
|
|
|
videoCheckerConfig.get("grabPause", true).asBool(),
|
2013-12-21 14:32:30 +01:00
|
|
|
videoCheckerConfig.get("grabScreensaver", true).asBool(),
|
|
|
|
videoCheckerConfig.get("enable3DDetection", true).asBool());
|
2013-10-13 14:48:59 +02:00
|
|
|
|
|
|
|
xbmcVideoChecker->start();
|
2016-06-17 01:25:40 +02:00
|
|
|
Info(Logger::getInstance("MAIN"), "Kodi checker created and started");
|
2013-08-24 11:51:52 +02:00
|
|
|
}
|
2016-06-17 01:25:40 +02:00
|
|
|
return xbmcVideoChecker;
|
2016-05-30 22:38:40 +02:00
|
|
|
}
|
2013-08-23 20:44:53 +02:00
|
|
|
|
2016-06-17 01:25:40 +02:00
|
|
|
void startNetworkServices(JsonServer* &jsonServer, ProtoServer* &protoServer, BoblightServer* &boblightServer)
|
2016-05-30 22:38:40 +02:00
|
|
|
{
|
2016-06-17 01:25:40 +02:00
|
|
|
Hyperion *hyperion = Hyperion::getInstance();
|
|
|
|
XBMCVideoChecker* xbmcVideoChecker = XBMCVideoChecker::getInstance();
|
|
|
|
const Json::Value &config = hyperion->getJsonConfig();
|
|
|
|
|
2016-02-16 15:41:40 +01:00
|
|
|
// Create Json server if configuration is present
|
2016-06-08 11:53:01 +02:00
|
|
|
unsigned int jsonPort = 19444;
|
2016-02-16 15:41:40 +01:00
|
|
|
if (config.isMember("jsonServer"))
|
|
|
|
{
|
|
|
|
const Json::Value & jsonServerConfig = config["jsonServer"];
|
2016-06-08 11:53:01 +02:00
|
|
|
//jsonEnable = jsonServerConfig.get("enable", true).asBool();
|
2016-06-14 20:14:06 +02:00
|
|
|
jsonPort = jsonServerConfig.get("port", jsonPort).asUInt();
|
2016-02-16 15:41:40 +01:00
|
|
|
}
|
|
|
|
|
2016-06-17 01:25:40 +02:00
|
|
|
jsonServer = new JsonServer(hyperion, jsonPort );
|
|
|
|
Info(Logger::getInstance("MAIN"), "Json server created and started on port %d", jsonServer->getPort());
|
2016-06-08 11:53:01 +02:00
|
|
|
|
2016-02-16 15:41:40 +01:00
|
|
|
// Create Proto server if configuration is present
|
2016-06-08 11:53:01 +02:00
|
|
|
unsigned int protoPort = 19445;
|
2016-02-16 15:41:40 +01:00
|
|
|
if (config.isMember("protoServer"))
|
|
|
|
{
|
|
|
|
const Json::Value & protoServerConfig = config["protoServer"];
|
2016-06-08 11:53:01 +02:00
|
|
|
//protoEnable = protoServerConfig.get("enable", true).asBool();
|
2016-06-14 20:14:06 +02:00
|
|
|
protoPort = protoServerConfig.get("port", protoPort).asUInt();
|
2016-06-08 11:53:01 +02:00
|
|
|
}
|
|
|
|
|
2016-06-17 01:25:40 +02:00
|
|
|
protoServer = new ProtoServer(hyperion, protoPort );
|
2016-06-08 11:53:01 +02:00
|
|
|
if (xbmcVideoChecker != nullptr)
|
|
|
|
{
|
|
|
|
QObject::connect(xbmcVideoChecker, SIGNAL(grabbingMode(GrabbingMode)), protoServer, SIGNAL(grabbingMode(GrabbingMode)));
|
|
|
|
QObject::connect(xbmcVideoChecker, SIGNAL(videoMode(VideoMode)), protoServer, SIGNAL(videoMode(VideoMode)));
|
|
|
|
}
|
2016-06-17 01:25:40 +02:00
|
|
|
Info(Logger::getInstance("MAIN"), "Proto server created and started on port %d", protoServer->getPort());
|
2016-06-04 19:26:34 +02:00
|
|
|
|
2016-06-08 11:53:01 +02:00
|
|
|
const Json::Value & deviceConfig = config["device"];
|
|
|
|
const std::string deviceName = deviceConfig.get("name", "").asString();
|
|
|
|
|
|
|
|
const std::string hostname = QHostInfo::localHostName().toStdString();
|
2016-06-14 20:14:06 +02:00
|
|
|
|
|
|
|
std::string mDNSDescr_json = hostname;
|
|
|
|
std::string mDNSService_json = "_hyperiond_json._tcp";
|
|
|
|
if (config.isMember("jsonServer"))
|
|
|
|
{
|
|
|
|
const Json::Value & jsonServerConfig = config["jsonServer"];
|
|
|
|
mDNSDescr_json = jsonServerConfig.get("mDNSDescr", mDNSDescr_json).asString();
|
|
|
|
mDNSService_json = jsonServerConfig.get("mDNSService", mDNSService_json).asString();
|
|
|
|
}
|
|
|
|
|
|
|
|
BonjourServiceRegister *bonjourRegister_json = new BonjourServiceRegister();
|
|
|
|
bonjourRegister_json->registerService(BonjourRecord((deviceName + " @ " + mDNSDescr_json).c_str(), mDNSService_json.c_str(),
|
|
|
|
QString()), jsonServer->getPort() );
|
2016-06-17 01:25:40 +02:00
|
|
|
Info(Logger::getInstance("MAIN"), "Json mDNS responder started");
|
2016-06-08 11:53:01 +02:00
|
|
|
|
2016-06-14 20:14:06 +02:00
|
|
|
std::string mDNSDescr_proto = hostname;
|
|
|
|
std::string mDNSService_proto = "_hyperiond_proto._tcp";
|
|
|
|
if (config.isMember("protoServer"))
|
|
|
|
{
|
|
|
|
const Json::Value & protoServerConfig = config["protoServer"];
|
|
|
|
mDNSDescr_proto = protoServerConfig.get("mDNSDescr", mDNSDescr_proto).asString();
|
|
|
|
mDNSService_proto = protoServerConfig.get("mDNSService", mDNSService_proto).asString();
|
|
|
|
}
|
|
|
|
|
|
|
|
BonjourServiceRegister *bonjourRegister_proto = new BonjourServiceRegister();
|
|
|
|
bonjourRegister_proto->registerService(BonjourRecord((deviceName + " @ " + mDNSDescr_proto).c_str(), mDNSService_proto.c_str(),
|
|
|
|
QString()), protoServer->getPort() );
|
2016-06-17 01:25:40 +02:00
|
|
|
Info(Logger::getInstance("MAIN"), "Proto mDNS responder started");
|
2016-02-16 15:41:40 +01:00
|
|
|
|
|
|
|
// Create Boblight server if configuration is present
|
|
|
|
if (config.isMember("boblightServer"))
|
|
|
|
{
|
|
|
|
const Json::Value & boblightServerConfig = config["boblightServer"];
|
2016-06-17 01:25:40 +02:00
|
|
|
boblightServer = new BoblightServer(hyperion, boblightServerConfig.get("priority",900).asInt(), boblightServerConfig["port"].asUInt());
|
|
|
|
Info(Logger::getInstance("MAIN"), "Boblight server created and started on port %d", boblightServer->getPort());
|
2016-02-16 15:41:40 +01:00
|
|
|
}
|
2016-05-30 22:38:40 +02:00
|
|
|
}
|
2016-02-16 15:41:40 +01:00
|
|
|
|
2016-06-17 01:25:40 +02:00
|
|
|
DispmanxWrapper* createGrabberDispmanx(ProtoServer* &protoServer)
|
2016-05-30 22:38:40 +02:00
|
|
|
{
|
2016-06-17 01:25:40 +02:00
|
|
|
DispmanxWrapper* dispmanx = nullptr;
|
|
|
|
#ifdef ENABLE_DISPMANX
|
|
|
|
XBMCVideoChecker* xbmcVideoChecker = XBMCVideoChecker::getInstance();
|
|
|
|
const Json::Value &config = Hyperion::getInstance()->getJsonConfig();
|
|
|
|
|
2013-10-13 14:48:59 +02:00
|
|
|
// Construct and start the frame-grabber if the configuration is present
|
|
|
|
if (config.isMember("framegrabber"))
|
|
|
|
{
|
|
|
|
const Json::Value & frameGrabberConfig = config["framegrabber"];
|
|
|
|
dispmanx = new DispmanxWrapper(
|
2013-08-25 18:20:19 +02:00
|
|
|
frameGrabberConfig["width"].asUInt(),
|
|
|
|
frameGrabberConfig["height"].asUInt(),
|
|
|
|
frameGrabberConfig["frequency_Hz"].asUInt(),
|
2016-06-17 01:25:40 +02:00
|
|
|
frameGrabberConfig.get("priority",900).asInt());
|
2016-05-18 11:26:25 +02:00
|
|
|
dispmanx->setCropping(
|
|
|
|
frameGrabberConfig.get("cropLeft", 0).asInt(),
|
|
|
|
frameGrabberConfig.get("cropRight", 0).asInt(),
|
|
|
|
frameGrabberConfig.get("cropTop", 0).asInt(),
|
|
|
|
frameGrabberConfig.get("cropBottom", 0).asInt());
|
2013-08-13 11:10:45 +02:00
|
|
|
|
2013-10-13 14:48:59 +02:00
|
|
|
if (xbmcVideoChecker != nullptr)
|
|
|
|
{
|
|
|
|
QObject::connect(xbmcVideoChecker, SIGNAL(grabbingMode(GrabbingMode)), dispmanx, SLOT(setGrabbingMode(GrabbingMode)));
|
2013-12-21 14:32:30 +01:00
|
|
|
QObject::connect(xbmcVideoChecker, SIGNAL(videoMode(VideoMode)), dispmanx, SLOT(setVideoMode(VideoMode)));
|
2013-10-13 14:48:59 +02:00
|
|
|
}
|
|
|
|
|
2016-02-17 00:44:06 +01:00
|
|
|
QObject::connect(dispmanx, SIGNAL(emitImage(int, const Image<ColorRgb>&, const int)), protoServer, SLOT(sendImageToProtoSlaves(int, const Image<ColorRgb>&, const int)) );
|
|
|
|
|
2013-10-13 14:48:59 +02:00
|
|
|
dispmanx->start();
|
2016-06-17 01:25:40 +02:00
|
|
|
Info(Logger::getInstance("MAIN"), "Frame grabber created and started");
|
2013-10-13 14:48:59 +02:00
|
|
|
}
|
2015-01-18 00:04:45 +01:00
|
|
|
#endif
|
2016-06-17 01:25:40 +02:00
|
|
|
return dispmanx;
|
|
|
|
}
|
2013-10-13 14:48:59 +02:00
|
|
|
|
2016-06-17 01:25:40 +02:00
|
|
|
|
|
|
|
V4L2Wrapper* createGrabberV4L2(ProtoServer* &protoServer )
|
2016-05-30 22:38:40 +02:00
|
|
|
{
|
2014-02-21 22:30:34 +01:00
|
|
|
// construct and start the v4l2 grabber if the configuration is present
|
2016-06-17 01:25:40 +02:00
|
|
|
V4L2Wrapper* v4l2Grabber = nullptr;
|
|
|
|
#ifdef ENABLE_V4L2
|
|
|
|
const Json::Value &config = Hyperion::getInstance()->getJsonConfig();
|
2014-02-21 22:30:34 +01:00
|
|
|
if (config.isMember("grabber-v4l2"))
|
|
|
|
{
|
|
|
|
const Json::Value & grabberConfig = config["grabber-v4l2"];
|
2014-02-23 22:39:23 +01:00
|
|
|
v4l2Grabber = new V4L2Wrapper(
|
2014-02-21 22:30:34 +01:00
|
|
|
grabberConfig.get("device", "/dev/video0").asString(),
|
|
|
|
grabberConfig.get("input", 0).asInt(),
|
2014-02-23 22:39:23 +01:00
|
|
|
parseVideoStandard(grabberConfig.get("standard", "no-change").asString()),
|
2014-03-31 17:36:36 +02:00
|
|
|
parsePixelFormat(grabberConfig.get("pixelFormat", "no-change").asString()),
|
2014-02-21 22:30:34 +01:00
|
|
|
grabberConfig.get("width", -1).asInt(),
|
|
|
|
grabberConfig.get("height", -1).asInt(),
|
|
|
|
grabberConfig.get("frameDecimation", 2).asInt(),
|
|
|
|
grabberConfig.get("sizeDecimation", 8).asInt(),
|
2014-03-04 22:04:15 +01:00
|
|
|
grabberConfig.get("redSignalThreshold", 0.0).asDouble(),
|
|
|
|
grabberConfig.get("greenSignalThreshold", 0.0).asDouble(),
|
|
|
|
grabberConfig.get("blueSignalThreshold", 0.0).asDouble(),
|
2016-03-08 17:31:56 +01:00
|
|
|
grabberConfig.get("priority", 900).asInt());
|
2014-02-23 21:36:39 +01:00
|
|
|
v4l2Grabber->set3D(parse3DMode(grabberConfig.get("mode", "2D").asString()));
|
2014-02-21 22:30:34 +01:00
|
|
|
v4l2Grabber->setCropping(
|
|
|
|
grabberConfig.get("cropLeft", 0).asInt(),
|
|
|
|
grabberConfig.get("cropRight", 0).asInt(),
|
|
|
|
grabberConfig.get("cropTop", 0).asInt(),
|
|
|
|
grabberConfig.get("cropBottom", 0).asInt());
|
|
|
|
|
2016-02-16 15:41:40 +01:00
|
|
|
QObject::connect(v4l2Grabber, SIGNAL(emitImage(int, const Image<ColorRgb>&, const int)), protoServer, SLOT(sendImageToProtoSlaves(int, const Image<ColorRgb>&, const int)) );
|
|
|
|
|
2014-02-21 22:30:34 +01:00
|
|
|
v4l2Grabber->start();
|
2016-06-17 01:25:40 +02:00
|
|
|
Info(Logger::getInstance("MAIN"), "V4L2 grabber created and started");
|
2014-02-21 22:30:34 +01:00
|
|
|
}
|
|
|
|
#endif
|
2016-06-17 01:25:40 +02:00
|
|
|
return v4l2Grabber;
|
|
|
|
}
|
2015-08-20 09:51:44 +02:00
|
|
|
|
2016-06-17 01:25:40 +02:00
|
|
|
AmlogicWrapper* createGrabberAmlogic(ProtoServer* &protoServer)
|
2016-05-30 22:38:40 +02:00
|
|
|
{
|
2016-06-17 01:25:40 +02:00
|
|
|
AmlogicWrapper* amlGrabber = nullptr;
|
|
|
|
#ifdef ENABLE_AMLOGIC
|
|
|
|
XBMCVideoChecker* xbmcVideoChecker = XBMCVideoChecker::getInstance();
|
|
|
|
const Json::Value &config = Hyperion::getInstance()->getJsonConfig();
|
|
|
|
|
2015-08-20 09:51:44 +02:00
|
|
|
// Construct and start the framebuffer grabber if the configuration is present
|
|
|
|
if (config.isMember("amlgrabber"))
|
|
|
|
{
|
|
|
|
const Json::Value & grabberConfig = config["amlgrabber"];
|
|
|
|
amlGrabber = new AmlogicWrapper(
|
|
|
|
grabberConfig["width"].asUInt(),
|
|
|
|
grabberConfig["height"].asUInt(),
|
|
|
|
grabberConfig["frequency_Hz"].asUInt(),
|
2016-06-17 01:25:40 +02:00
|
|
|
grabberConfig.get("priority",900).asInt());
|
2015-08-20 09:51:44 +02:00
|
|
|
|
|
|
|
if (xbmcVideoChecker != nullptr)
|
|
|
|
{
|
|
|
|
QObject::connect(xbmcVideoChecker, SIGNAL(grabbingMode(GrabbingMode)), amlGrabber, SLOT(setGrabbingMode(GrabbingMode)));
|
|
|
|
QObject::connect(xbmcVideoChecker, SIGNAL(videoMode(VideoMode)), amlGrabber, SLOT(setVideoMode(VideoMode)));
|
|
|
|
}
|
|
|
|
|
2016-02-24 14:42:25 +01:00
|
|
|
QObject::connect(amlGrabber, SIGNAL(emitImage(int, const Image<ColorRgb>&, const int)), protoServer, SLOT(sendImageToProtoSlaves(int, const Image<ColorRgb>&, const int)) );
|
|
|
|
|
2015-08-20 09:51:44 +02:00
|
|
|
amlGrabber->start();
|
2016-06-17 01:25:40 +02:00
|
|
|
Info(Logger::getInstance("MAIN"), "AMLOGIC grabber created and started");
|
2015-08-20 09:51:44 +02:00
|
|
|
}
|
|
|
|
#endif
|
2016-06-17 01:25:40 +02:00
|
|
|
return amlGrabber;
|
|
|
|
}
|
2015-08-20 09:51:44 +02:00
|
|
|
|
2016-05-30 22:38:40 +02:00
|
|
|
|
2016-06-17 01:25:40 +02:00
|
|
|
FramebufferWrapper* createGrabberFramebuffer(ProtoServer* &protoServer)
|
2016-05-30 22:38:40 +02:00
|
|
|
{
|
2016-06-17 01:25:40 +02:00
|
|
|
FramebufferWrapper* fbGrabber = nullptr;
|
|
|
|
#ifdef ENABLE_FB
|
|
|
|
XBMCVideoChecker* xbmcVideoChecker = XBMCVideoChecker::getInstance();
|
|
|
|
const Json::Value &config = Hyperion::getInstance()->getJsonConfig();
|
|
|
|
|
2015-01-18 00:04:45 +01:00
|
|
|
// Construct and start the framebuffer grabber if the configuration is present
|
2015-08-20 10:14:19 +02:00
|
|
|
if (config.isMember("framebuffergrabber") || config.isMember("framegrabber"))
|
2015-01-18 00:04:45 +01:00
|
|
|
{
|
2015-09-03 21:37:49 +02:00
|
|
|
const Json::Value & grabberConfig = config.isMember("framebuffergrabber")? config["framebuffergrabber"] : config["framegrabber"];
|
2015-01-18 00:04:45 +01:00
|
|
|
fbGrabber = new FramebufferWrapper(
|
|
|
|
grabberConfig.get("device", "/dev/fb0").asString(),
|
|
|
|
grabberConfig["width"].asUInt(),
|
|
|
|
grabberConfig["height"].asUInt(),
|
|
|
|
grabberConfig["frequency_Hz"].asUInt(),
|
2016-06-17 01:25:40 +02:00
|
|
|
grabberConfig.get("priority",900).asInt());
|
2015-01-18 00:04:45 +01:00
|
|
|
|
|
|
|
if (xbmcVideoChecker != nullptr)
|
|
|
|
{
|
|
|
|
QObject::connect(xbmcVideoChecker, SIGNAL(grabbingMode(GrabbingMode)), fbGrabber, SLOT(setGrabbingMode(GrabbingMode)));
|
|
|
|
QObject::connect(xbmcVideoChecker, SIGNAL(videoMode(VideoMode)), fbGrabber, SLOT(setVideoMode(VideoMode)));
|
|
|
|
}
|
|
|
|
|
2016-02-17 00:44:06 +01:00
|
|
|
QObject::connect(fbGrabber, SIGNAL(emitImage(int, const Image<ColorRgb>&, const int)), protoServer, SLOT(sendImageToProtoSlaves(int, const Image<ColorRgb>&, const int)) );
|
|
|
|
|
2015-01-18 00:04:45 +01:00
|
|
|
fbGrabber->start();
|
2016-06-17 01:25:40 +02:00
|
|
|
Info(Logger::getInstance("MAIN"), "Framebuffer grabber created and started");
|
2015-01-18 00:04:45 +01:00
|
|
|
}
|
|
|
|
#endif
|
2016-06-17 01:25:40 +02:00
|
|
|
return fbGrabber;
|
|
|
|
}
|
2015-08-20 09:51:44 +02:00
|
|
|
|
2016-05-30 22:38:40 +02:00
|
|
|
|
2016-06-17 01:25:40 +02:00
|
|
|
OsxWrapper* createGrabberOsx(ProtoServer* &protoServer)
|
2016-05-30 22:38:40 +02:00
|
|
|
{
|
2016-06-17 01:25:40 +02:00
|
|
|
OsxWrapper* osxGrabber = nullptr;
|
|
|
|
#ifdef ENABLE_OSX
|
|
|
|
XBMCVideoChecker* xbmcVideoChecker = XBMCVideoChecker::getInstance();
|
|
|
|
const Json::Value &config = Hyperion::getInstance()->getJsonConfig();
|
|
|
|
|
2015-08-20 09:51:44 +02:00
|
|
|
// Construct and start the osx grabber if the configuration is present
|
2015-08-20 10:14:19 +02:00
|
|
|
if (config.isMember("osxgrabber") || config.isMember("framegrabber"))
|
2015-08-20 09:51:44 +02:00
|
|
|
{
|
2015-08-20 10:14:19 +02:00
|
|
|
const Json::Value & grabberConfig = config.isMember("osxgrabber")? config["osxgrabber"] : config["framegrabber"];
|
2015-08-20 09:51:44 +02:00
|
|
|
osxGrabber = new OsxWrapper(
|
2016-03-08 17:31:56 +01:00
|
|
|
grabberConfig.get("display", 0).asUInt(),
|
|
|
|
grabberConfig["width"].asUInt(),
|
|
|
|
grabberConfig["height"].asUInt(),
|
|
|
|
grabberConfig["frequency_Hz"].asUInt(),
|
2016-06-17 01:25:40 +02:00
|
|
|
grabberConfig.get("priority",900).asInt());
|
2015-08-20 09:51:44 +02:00
|
|
|
|
|
|
|
if (xbmcVideoChecker != nullptr)
|
|
|
|
{
|
|
|
|
QObject::connect(xbmcVideoChecker, SIGNAL(grabbingMode(GrabbingMode)), osxGrabber, SLOT(setGrabbingMode(GrabbingMode)));
|
|
|
|
QObject::connect(xbmcVideoChecker, SIGNAL(videoMode(VideoMode)), osxGrabber, SLOT(setVideoMode(VideoMode)));
|
|
|
|
}
|
2016-02-17 00:44:06 +01:00
|
|
|
|
|
|
|
QObject::connect(osxGrabber, SIGNAL(emitImage(int, const Image<ColorRgb>&, const int)), protoServer, SLOT(sendImageToProtoSlaves(int, const Image<ColorRgb>&, const int)) );
|
2015-08-20 09:51:44 +02:00
|
|
|
|
|
|
|
osxGrabber->start();
|
2016-06-17 01:25:40 +02:00
|
|
|
Info(Logger::getInstance("MAIN"), "OSX grabber created and started");
|
2015-08-20 09:51:44 +02:00
|
|
|
}
|
2016-05-30 22:38:40 +02:00
|
|
|
#endif
|
2016-06-17 01:25:40 +02:00
|
|
|
return osxGrabber;
|
2013-08-13 11:10:45 +02:00
|
|
|
}
|