2015-08-08 08:13:37 +02:00
// QT includes
# include <QCoreApplication>
# include <QImage>
// getoptPlusPLus includes
# include <getoptPlusPlus/getoptpp.h>
2016-02-24 16:03:21 +01:00
# include <protoserver/ProtoConnectionWrapper.h>
# include "AmlogicWrapper.h"
2015-08-08 08:13:37 +02:00
using namespace vlofgren ;
// save the image as screenshot
2016-02-24 16:03:21 +01:00
void saveScreenshot ( const char * filename , const Image < ColorRgb > & image )
2015-08-08 08:13:37 +02:00
{
2015-08-20 09:51:44 +02:00
// store as PNG
QImage pngImage ( ( const uint8_t * ) image . memptr ( ) , image . width ( ) , image . height ( ) , 3 * image . width ( ) , QImage : : Format_RGB888 ) ;
pngImage . save ( filename ) ;
2015-08-08 08:13:37 +02:00
}
int main ( int argc , char * * argv )
{
QCoreApplication app ( argc , argv ) ;
try
{
// create the option parser and initialize all parameters
OptionsParser optionParser ( " X11 capture application for Hyperion " ) ;
ParameterSet & parameters = optionParser . getParameters ( ) ;
2016-02-24 16:03:21 +01:00
IntParameter & argFps = parameters . add < IntParameter > ( ' f ' , " framerate " , " Capture frame rate [default=10] " ) ;
2015-08-08 08:13:37 +02:00
IntParameter & argWidth = parameters . add < IntParameter > ( 0x0 , " width " , " Width of the captured image [default=128] " ) ;
IntParameter & argHeight = parameters . add < IntParameter > ( 0x0 , " height " , " Height of the captured image [default=128] " ) ;
SwitchParameter < > & argScreenshot = parameters . add < SwitchParameter < > > ( 0x0 , " screenshot " , " Take a single screenshot, save it to file and quit " ) ;
StringParameter & argAddress = parameters . add < StringParameter > ( ' a ' , " address " , " Set the address of the hyperion server [default: 127.0.0.1:19445] " ) ;
IntParameter & argPriority = parameters . add < IntParameter > ( ' p ' , " priority " , " Use the provided priority channel (the lower the number, the higher the priority) [default: 800] " ) ;
2016-02-24 16:03:21 +01:00
SwitchParameter < > & argSkipReply = parameters . add < SwitchParameter < > > ( 0x0 , " skip-reply " , " Do not receive and check reply messages from Hyperion " ) ;
2015-08-08 08:13:37 +02:00
SwitchParameter < > & argHelp = parameters . add < SwitchParameter < > > ( ' h ' , " help " , " Show this help message and exit " ) ;
// set defaults
2016-02-24 16:03:21 +01:00
argFps . setDefault ( 10 ) ;
2015-08-20 09:51:44 +02:00
argWidth . setDefault ( 160 ) ;
argHeight . setDefault ( 160 ) ;
2015-08-08 08:13:37 +02:00
argAddress . setDefault ( " 127.0.0.1:19445 " ) ;
argPriority . setDefault ( 800 ) ;
2015-08-20 09:51:44 +02:00
2015-08-08 08:13:37 +02:00
// parse all options
optionParser . parse ( argc , const_cast < const char * * > ( argv ) ) ;
// check if we need to display the usage. exit if we do.
if ( argHelp . isSet ( ) )
{
optionParser . usage ( ) ;
return 0 ;
}
2015-08-20 09:51:44 +02:00
int width = argWidth . getValue ( ) ;
int height = argHeight . getValue ( ) ;
2016-02-24 16:03:21 +01:00
if ( width < 160 | | height < 160 )
2015-08-20 09:51:44 +02:00
{
std : : cout < < " Minimum width and height is 160 " < < std : : endl ;
width = std : : max ( 160 , width ) ;
height = std : : max ( 160 , height ) ;
}
2016-02-24 16:03:21 +01:00
int grabInterval = 1000 / argFps . getValue ( ) ;
AmlogicWrapper amlWrapper ( argWidth . getValue ( ) , argHeight . getValue ( ) , grabInterval ) ;
2015-08-08 08:13:37 +02:00
if ( argScreenshot . isSet ( ) )
{
// Capture a single screenshot and finish
2016-02-24 16:03:21 +01:00
const Image < ColorRgb > & screenshot = amlWrapper . getScreenshot ( ) ;
2015-08-08 08:13:37 +02:00
saveScreenshot ( " screenshot.png " , screenshot ) ;
}
else
{
2016-02-24 16:03:21 +01:00
// Create the Proto-connection with hyperiond
ProtoConnectionWrapper protoWrapper ( argAddress . getValue ( ) , argPriority . getValue ( ) , 1000 , argSkipReply . isSet ( ) ) ;
2015-08-08 08:13:37 +02:00
2016-02-24 16:03:21 +01:00
// Connect the screen capturing to the proto processing
QObject : : connect ( & amlWrapper , SIGNAL ( sig_screenshot ( const Image < ColorRgb > & ) ) , & protoWrapper , SLOT ( receiveImage ( Image < ColorRgb > ) ) ) ;
// Start the capturing
amlWrapper . start ( ) ;
// Start the application
app . exec ( ) ;
}
2015-08-08 08:13:37 +02:00
}
catch ( const std : : runtime_error & e )
{
// An error occured. Display error and quit
std : : cerr < < e . what ( ) < < std : : endl ;
return - 1 ;
}
return 0 ;
}