2016-04-03 02:27:24 +02:00
/*****************************************************************************
* gta5sync GRAND THEFT AUTO V SYNC
2017-02-11 04:21:55 +01:00
* Copyright ( C ) 2016 - 2017 Syping
2016-04-03 02:27:24 +02:00
*
* This program is free software : you can redistribute it and / or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation , either version 3 of the License , or
* ( at your option ) any later version .
*
* 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 , see < http : //www.gnu.org/licenses/>.
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2016-04-24 13:34:03 +02:00
# include "config.h"
2016-04-03 02:27:24 +02:00
# include "PictureExport.h"
# include "PictureDialog.h"
2016-04-24 13:34:03 +02:00
# include "StandardPaths.h"
2016-04-03 02:27:24 +02:00
# include "SidebarGenerator.h"
2016-04-26 23:12:17 +02:00
# include <QDesktopWidget>
# include <QApplication>
2016-04-03 02:27:24 +02:00
# include <QMessageBox>
# include <QFileDialog>
# include <QSettings>
2016-04-24 13:34:03 +02:00
# include <QDebug>
2016-04-03 02:27:24 +02:00
PictureExport : : PictureExport ( )
{
}
2017-02-11 04:21:55 +01:00
void PictureExport : : exportAsPicture ( QWidget * parent , SnapmaticPicture * picture )
2016-04-03 02:27:24 +02:00
{
2016-04-14 01:27:29 +02:00
QSettings settings ( GTA5SYNC_APPVENDOR , GTA5SYNC_APPSTR ) ;
2016-04-26 23:12:17 +02:00
// Picture Settings
// Quality Settings
settings . beginGroup ( " Pictures " ) ;
int defaultQuality = 100 ;
QSize defExportSize = QSize ( 960 , 536 ) ;
int customQuality = settings . value ( " CustomQuality " , defaultQuality ) . toInt ( ) ;
if ( customQuality < 1 | | customQuality > 100 )
{
customQuality = 100 ;
}
bool useCustomQuality = settings . value ( " CustomQualityEnabled " , false ) . toBool ( ) ;
// Size Settings
QSize cusExportSize = settings . value ( " CustomSize " , defExportSize ) . toSize ( ) ;
if ( cusExportSize . width ( ) > 3840 )
{
cusExportSize . setWidth ( 3840 ) ;
}
else if ( cusExportSize . height ( ) > 2160 )
{
cusExportSize . setHeight ( 2160 ) ;
}
if ( cusExportSize . width ( ) < 1 )
{
cusExportSize . setWidth ( 1 ) ;
}
else if ( cusExportSize . height ( ) < 1 )
{
cusExportSize . setHeight ( 1 ) ;
}
QString sizeMode = settings . value ( " ExportSizeMode " , " Default " ) . toString ( ) ;
2016-04-28 00:21:25 +02:00
Qt : : AspectRatioMode aspectRatio = ( Qt : : AspectRatioMode ) settings . value ( " AspectRatio " , Qt : : KeepAspectRatio ) . toInt ( ) ;
2017-02-11 04:21:55 +01:00
QString defaultExportFormat = settings . value ( " DefaultExportFormat " , " .jpg " ) . toString ( ) ;
2016-04-26 23:12:17 +02:00
settings . endGroup ( ) ;
// End Picture Settings
2016-04-03 02:27:24 +02:00
settings . beginGroup ( " FileDialogs " ) ;
2017-02-11 04:21:55 +01:00
settings . beginGroup ( " ExportAsPicture " ) ;
2016-04-03 02:27:24 +02:00
fileDialogPreSave :
QFileDialog fileDialog ( parent ) ;
fileDialog . setFileMode ( QFileDialog : : AnyFile ) ;
fileDialog . setViewMode ( QFileDialog : : Detail ) ;
fileDialog . setAcceptMode ( QFileDialog : : AcceptSave ) ;
2016-04-14 04:24:51 +02:00
fileDialog . setOption ( QFileDialog : : DontUseNativeDialog , false ) ;
2016-04-03 02:27:24 +02:00
fileDialog . setOption ( QFileDialog : : DontConfirmOverwrite , true ) ;
fileDialog . setDefaultSuffix ( " suffix " ) ;
fileDialog . setWindowFlags ( fileDialog . windowFlags ( ) ^ Qt : : WindowContextHelpButtonHint ) ;
2016-04-08 19:57:51 +02:00
fileDialog . setWindowTitle ( PictureDialog : : tr ( " Export as JPG picture... " ) ) ;
2016-12-03 13:17:27 +01:00
fileDialog . setLabelText ( QFileDialog : : Accept , PictureDialog : : tr ( " Export " ) ) ;
2016-04-03 02:27:24 +02:00
QStringList filters ;
filters < < PictureDialog : : tr ( " JPEG picture (*.jpg) " ) ;
filters < < PictureDialog : : tr ( " Portable Network Graphics (*.png) " ) ;
fileDialog . setNameFilters ( filters ) ;
QList < QUrl > sidebarUrls = SidebarGenerator : : generateSidebarUrls ( fileDialog . sidebarUrls ( ) ) ;
fileDialog . setSidebarUrls ( sidebarUrls ) ;
2016-04-24 13:34:03 +02:00
fileDialog . setDirectory ( settings . value ( " Directory " , StandardPaths : : picturesLocation ( ) ) . toString ( ) ) ;
fileDialog . restoreGeometry ( settings . value ( parent - > objectName ( ) + " +Geomtery " , " " ) . toByteArray ( ) ) ;
2016-04-03 02:27:24 +02:00
2017-02-11 04:21:55 +01:00
QString newPictureFileName = getPictureFileName ( picture ) + defaultExportFormat ;
2016-04-26 23:12:17 +02:00
fileDialog . selectFile ( newPictureFileName ) ;
2016-04-03 02:27:24 +02:00
if ( fileDialog . exec ( ) )
{
QStringList selectedFiles = fileDialog . selectedFiles ( ) ;
if ( selectedFiles . length ( ) = = 1 )
{
QString saveFileFormat ;
QString selectedFile = selectedFiles . at ( 0 ) ;
if ( selectedFile . right ( 4 ) = = " .jpg " )
{
saveFileFormat = " JPEG " ;
}
else if ( selectedFile . right ( 4 ) = = " .jpeg " )
{
saveFileFormat = " JPEG " ;
}
else if ( selectedFile . right ( 4 ) = = " .png " )
{
saveFileFormat = " PNG " ;
}
else if ( selectedFile . right ( 7 ) = = " .suffix " )
{
if ( fileDialog . selectedNameFilter ( ) = = " JPEG picture (*.jpg) " )
{
selectedFile . replace ( " .suffix " , " .jpg " ) ;
}
else if ( fileDialog . selectedNameFilter ( ) = = " Portable Network Graphics (*.png) " )
{
selectedFile . replace ( " .suffix " , " .png " ) ;
}
else
{
selectedFile . replace ( " .suffix " , " .jpg " ) ;
}
}
if ( QFile : : exists ( selectedFile ) )
{
2016-04-08 19:57:51 +02:00
if ( QMessageBox : : Yes = = QMessageBox : : warning ( parent , PictureDialog : : tr ( " Export as JPG picture " ) , PictureDialog : : tr ( " Overwrite %1 with current Snapmatic picture? " ) . arg ( " \" " + selectedFile + " \" " ) , QMessageBox : : Yes | QMessageBox : : No , QMessageBox : : Yes ) )
2016-04-03 02:27:24 +02:00
{
if ( ! QFile : : remove ( selectedFile ) )
{
2016-04-08 19:57:51 +02:00
QMessageBox : : warning ( parent , PictureDialog : : tr ( " Export as JPG picture " ) , PictureDialog : : tr ( " Failed to overwrite %1 with current Snapmatic picture " ) . arg ( " \" " + selectedFile + " \" " ) ) ;
2016-04-03 02:27:24 +02:00
goto fileDialogPreSave ;
}
}
else
{
goto fileDialogPreSave ;
}
}
2016-04-26 23:12:17 +02:00
// Scale Picture
2017-02-11 04:21:55 +01:00
QImage exportPicture = picture - > getImage ( ) ;
2016-04-26 23:12:17 +02:00
if ( sizeMode = = " Desktop " )
{
QRect desktopResolution = QApplication : : desktop ( ) - > screenGeometry ( ) ;
2016-04-28 00:21:25 +02:00
exportPicture = exportPicture . scaled ( desktopResolution . width ( ) , desktopResolution . height ( ) , aspectRatio , Qt : : SmoothTransformation ) ;
2016-04-26 23:12:17 +02:00
}
else if ( sizeMode = = " Custom " )
{
2016-04-28 00:21:25 +02:00
exportPicture = exportPicture . scaled ( cusExportSize , aspectRatio , Qt : : SmoothTransformation ) ;
2016-04-26 23:12:17 +02:00
}
bool isSaved ;
if ( useCustomQuality )
{
isSaved = exportPicture . save ( selectedFile , saveFileFormat . toStdString ( ) . c_str ( ) , customQuality ) ;
}
else
{
isSaved = exportPicture . save ( selectedFile , saveFileFormat . toStdString ( ) . c_str ( ) , 100 ) ;
}
2016-04-03 02:27:24 +02:00
if ( ! isSaved )
{
2016-04-08 19:57:51 +02:00
QMessageBox : : warning ( parent , PictureDialog : : tr ( " Export as JPG picture " ) , PictureDialog : : tr ( " Failed to export current Snapmatic picture " ) ) ;
2016-04-03 02:27:24 +02:00
goto fileDialogPreSave ;
}
}
else
{
2016-04-08 19:57:51 +02:00
QMessageBox : : warning ( parent , PictureDialog : : tr ( " Export as JPG picture " ) , PictureDialog : : tr ( " No valid file is selected " ) ) ;
2016-04-03 02:27:24 +02:00
goto fileDialogPreSave ;
}
}
2016-04-24 13:34:03 +02:00
settings . setValue ( parent - > objectName ( ) + " +Geometry " , fileDialog . saveGeometry ( ) ) ;
settings . setValue ( " Directory " , fileDialog . directory ( ) . absolutePath ( ) ) ;
settings . endGroup ( ) ;
2016-04-03 02:27:24 +02:00
settings . endGroup ( ) ;
}
2016-04-03 10:17:01 +02:00
2017-02-11 04:21:55 +01:00
void PictureExport : : exportAsSnapmatic ( QWidget * parent , SnapmaticPicture * picture )
{
QSettings settings ( GTA5SYNC_APPVENDOR , GTA5SYNC_APPSTR ) ;
settings . beginGroup ( " FileDialogs " ) ;
settings . beginGroup ( " ExportAsSnapmatic " ) ;
QString adjustedPicPath = picture - > getPictureFileName ( ) ;
if ( adjustedPicPath . right ( 7 ) = = " .hidden " ) // for the hidden file system
{
adjustedPicPath . remove ( adjustedPicPath . length ( ) - 7 , 7 ) ;
}
fileDialogPreSave :
QFileInfo sgdFileInfo ( adjustedPicPath ) ;
QFileDialog fileDialog ( parent ) ;
fileDialog . setFileMode ( QFileDialog : : AnyFile ) ;
fileDialog . setViewMode ( QFileDialog : : Detail ) ;
fileDialog . setAcceptMode ( QFileDialog : : AcceptSave ) ;
fileDialog . setOption ( QFileDialog : : DontUseNativeDialog , false ) ;
fileDialog . setOption ( QFileDialog : : DontConfirmOverwrite , true ) ;
fileDialog . setDefaultSuffix ( " .rem " ) ;
fileDialog . setWindowFlags ( fileDialog . windowFlags ( ) ^ Qt : : WindowContextHelpButtonHint ) ;
fileDialog . setWindowTitle ( PictureDialog : : tr ( " Export as GTA Snapmatic... " ) ) ;
fileDialog . setLabelText ( QFileDialog : : Accept , PictureDialog : : tr ( " &Export " ) ) ;
QStringList filters ;
filters < < PictureDialog : : tr ( " GTA V Export (*.g5e) " ) ;
filters < < PictureDialog : : tr ( " GTA V Raw Export (*.auto) " ) ;
filters < < PictureDialog : : tr ( " Snapmatic pictures (PGTA*) " ) ;
fileDialog . setNameFilters ( filters ) ;
QList < QUrl > sidebarUrls = SidebarGenerator : : generateSidebarUrls ( fileDialog . sidebarUrls ( ) ) ;
fileDialog . setSidebarUrls ( sidebarUrls ) ;
fileDialog . setDirectory ( settings . value ( " Directory " , StandardPaths : : documentsLocation ( ) ) . toString ( ) ) ;
fileDialog . selectFile ( QString ( picture - > getExportPictureFileName ( ) + " .g5e " ) ) ;
fileDialog . restoreGeometry ( settings . value ( parent - > objectName ( ) + " +Geomtery " , " " ) . toByteArray ( ) ) ;
if ( fileDialog . exec ( ) )
{
QStringList selectedFiles = fileDialog . selectedFiles ( ) ;
if ( selectedFiles . length ( ) = = 1 )
{
QString selectedFile = selectedFiles . at ( 0 ) ;
if ( QFile : : exists ( selectedFile ) )
{
if ( QMessageBox : : Yes = = QMessageBox : : warning ( parent , PictureDialog : : tr ( " Export as GTA Snapmatic " ) , PictureDialog : : tr ( " Overwrite %1 with current Snapmatic picture? " ) . arg ( " \" " + selectedFile + " \" " ) , QMessageBox : : Yes | QMessageBox : : No , QMessageBox : : Yes ) )
{
if ( ! QFile : : remove ( selectedFile ) )
{
QMessageBox : : warning ( parent , PictureDialog : : tr ( " Export as GTA Snapmatic " ) , PictureDialog : : tr ( " Failed to overwrite %1 with current Snapmatic picture " ) . arg ( " \" " + selectedFile + " \" " ) ) ;
goto fileDialogPreSave ;
}
}
else
{
goto fileDialogPreSave ;
}
}
if ( selectedFile . right ( 4 ) = = " .g5e " )
{
bool isExported = picture - > exportPicture ( selectedFile , true ) ;
if ( ! isExported )
{
QMessageBox : : warning ( parent , PictureDialog : : tr ( " Export as GTA Snapmatic " ) , PictureDialog : : tr ( " Failed to export current Snapmatic picture " ) ) ;
goto fileDialogPreSave ;
}
}
else
{
bool isAutoExt = false ;
if ( selectedFile . right ( 5 ) = = " .auto " )
{
isAutoExt = true ;
QString dirPath = QFileInfo ( selectedFile ) . dir ( ) . path ( ) ;
QString stockFileName = sgdFileInfo . fileName ( ) ;
selectedFile = dirPath + " / " + stockFileName ;
}
else if ( selectedFile . right ( 4 ) = = " .rem " )
{
selectedFile . remove ( " .rem " ) ;
}
bool isCopied = picture - > exportPicture ( selectedFile , false ) ;
if ( ! isCopied )
{
QMessageBox : : warning ( parent , PictureDialog : : tr ( " Export as GTA Snapmatic " ) , PictureDialog : : tr ( " Failed to export current Snapmatic picture " ) ) ;
goto fileDialogPreSave ;
}
else
{
if ( isAutoExt ) QMessageBox : : information ( parent , PictureDialog : : tr ( " Export as GTA Snapmatic " ) , PictureDialog : : tr ( " Exported Snapmatic to \" %1 \" because of using the .auto extension. " ) . arg ( selectedFile ) ) ;
}
}
}
else
{
QMessageBox : : warning ( parent , PictureDialog : : tr ( " Export as GTA Snapmatic " ) , PictureDialog : : tr ( " No valid file is selected " ) ) ;
goto fileDialogPreSave ;
}
}
settings . setValue ( parent - > objectName ( ) + " +Geometry " , fileDialog . saveGeometry ( ) ) ;
settings . setValue ( " Directory " , fileDialog . directory ( ) . absolutePath ( ) ) ;
settings . endGroup ( ) ;
}
2016-04-03 10:17:01 +02:00
QString PictureExport : : getPictureFileName ( SnapmaticPicture * picture )
{
2016-04-06 05:00:31 +02:00
return picture - > getExportPictureFileName ( ) ;
2016-04-03 10:17:01 +02:00
}