2016-03-09 07:03:17 +01:00
// QT includes
# include <QCoreApplication>
# include <QImage>
2018-12-30 22:07:53 +01:00
# include <flatbufserver/FlatBufferConnection.h>
2016-03-09 07:03:17 +01:00
# include "FramebufferWrapper.h"
2016-08-28 15:10:43 +02:00
# include <commandline/Parser.h>
2016-03-09 07:03:17 +01:00
2018-12-30 22:07:53 +01:00
// ssdp discover
# include <ssdp/SSDPDiscover.h>
2016-08-28 15:10:43 +02:00
using namespace commandline ;
2016-03-09 07:03:17 +01:00
// save the image as screenshot
2016-08-28 15:10:43 +02:00
void saveScreenshot ( QString filename , const Image < ColorRgb > & image )
2016-03-09 07:03:17 +01:00
{
// store as PNG
QImage pngImage ( ( const uint8_t * ) image . memptr ( ) , image . width ( ) , image . height ( ) , 3 * image . width ( ) , QImage : : Format_RGB888 ) ;
pngImage . save ( filename ) ;
}
int main ( int argc , char * * argv )
{
QCoreApplication app ( argc , argv ) ;
try
{
// create the option parser and initialize all parameters
2018-12-30 22:07:53 +01:00
Parser parser ( " FrameBuffer capture application for Hyperion. Will automatically search a Hyperion server if -a option isn't used. Please note that if you have more than one server running it's more or less random which one will be used. " ) ;
2016-08-28 15:10:43 +02:00
2016-09-17 00:40:29 +02:00
Option & argDevice = parser . add < Option > ( ' d ' , " device " , " Set the video device [default: %1] " , " /dev/video0 " ) ;
2018-12-31 15:48:29 +01:00
IntOption & argFps = parser . add < IntOption > ( ' f ' , " framerate " , " Capture frame rate [default: %1] " , " 10 " , 1 , 25 ) ;
IntOption & argWidth = parser . add < IntOption > ( 0x0 , " width " , " Width of the captured image [default: %1] " , " 160 " , 160 ) ;
IntOption & argHeight = parser . add < IntOption > ( 0x0 , " height " , " Height of the captured image [default: %1] " , " 160 " , 160 ) ;
2016-09-17 00:40:29 +02:00
BooleanOption & argScreenshot = parser . add < BooleanOption > ( 0x0 , " screenshot " , " Take a single screenshot, save it to file and quit " ) ;
2019-02-05 19:55:48 +01:00
Option & argAddress = parser . add < Option > ( ' a ' , " address " , " Set the address of the hyperion server [default: %1] " , " 127.0.0.1:19400 " ) ;
2017-01-17 21:53:35 +01:00
IntOption & argPriority = parser . add < IntOption > ( ' p ' , " priority " , " Use the provided priority channel (suggested 100-199) [default: %1] " , " 150 " ) ;
2016-09-17 00:40:29 +02:00
BooleanOption & argSkipReply = parser . add < BooleanOption > ( 0x0 , " skip-reply " , " Do not receive and check reply messages from Hyperion " ) ;
BooleanOption & argHelp = parser . add < BooleanOption > ( ' h ' , " help " , " Show this help message and exit " ) ;
2016-03-09 07:03:17 +01:00
// parse all options
2016-08-28 15:10:43 +02:00
parser . process ( app ) ;
2016-03-09 07:03:17 +01:00
// check if we need to display the usage. exit if we do.
2016-08-28 15:10:43 +02:00
if ( parser . isSet ( argHelp ) )
2016-03-09 07:03:17 +01:00
{
2016-08-28 15:10:43 +02:00
parser . showHelp ( 0 ) ;
2016-03-09 07:03:17 +01:00
}
2017-03-04 22:17:42 +01:00
FramebufferWrapper fbWrapper ( argDevice . value ( parser ) , argWidth . getInt ( parser ) , argHeight . getInt ( parser ) , 1000 / argFps . getInt ( parser ) ) ;
2016-03-09 07:03:17 +01:00
2016-08-28 15:10:43 +02:00
if ( parser . isSet ( argScreenshot ) )
2016-03-09 07:03:17 +01:00
{
// Capture a single screenshot and finish
const Image < ColorRgb > & screenshot = fbWrapper . getScreenshot ( ) ;
saveScreenshot ( " screenshot.png " , screenshot ) ;
}
else
{
2018-12-30 22:07:53 +01:00
// server searching by ssdp
QString address ;
if ( parser . isSet ( argAddress ) )
{
address = argAddress . value ( parser ) ;
}
else
{
SSDPDiscover discover ;
address = discover . getFirstService ( STY_FLATBUFSERVER ) ;
if ( address . isEmpty ( ) )
{
address = argAddress . value ( parser ) ;
}
}
// Create the Flabuf-connection
FlatBufferConnection flatbuf ( " Framebuffer Standalone " , address , argPriority . getInt ( parser ) , parser . isSet ( argSkipReply ) ) ;
2016-03-09 07:03:17 +01:00
2018-12-30 22:07:53 +01:00
// Connect the screen capturing to flatbuf connection processing
QObject : : connect ( & fbWrapper , SIGNAL ( sig_screenshot ( const Image < ColorRgb > & ) ) , & flatbuf , SLOT ( setImage ( Image < ColorRgb > ) ) ) ;
2016-03-09 07:03:17 +01:00
// Start the capturing
fbWrapper . start ( ) ;
// Start the application
app . exec ( ) ;
}
}
catch ( const std : : runtime_error & e )
{
// An error occured. Display error and quit
2016-07-12 15:13:06 +02:00
Error ( Logger : : getInstance ( " FRAMEBUFFER " ) , " %s " , e . what ( ) ) ;
2016-03-09 07:03:17 +01:00
return - 1 ;
}
return 0 ;
}