2017-10-09 08:35:48 +02:00
|
|
|
/*****************************************************************************
|
2018-05-24 22:32:00 +02:00
|
|
|
* gta5spv Grand Theft Auto Snapmatic Picture Viewer
|
|
|
|
* Copyright (C) 2016-2018 Syping
|
2017-10-09 08:35:48 +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/>.
|
|
|
|
*****************************************************************************/
|
|
|
|
|
|
|
|
#include "SnapmaticPicture.h"
|
|
|
|
#include <QStringBuilder>
|
|
|
|
#include <QJsonDocument>
|
|
|
|
#include <QJsonObject>
|
|
|
|
#include <QStringList>
|
|
|
|
#include <QVariantMap>
|
2018-05-24 22:32:00 +02:00
|
|
|
#include <QTextCodec>
|
2017-10-09 08:35:48 +02:00
|
|
|
#include <QJsonArray>
|
|
|
|
#include <QFileInfo>
|
|
|
|
#include <QPainter>
|
|
|
|
#include <QString>
|
|
|
|
#include <QBuffer>
|
|
|
|
#include <QDebug>
|
|
|
|
#include <QImage>
|
|
|
|
#include <QSize>
|
|
|
|
#include <QFile>
|
|
|
|
|
2017-10-12 22:21:45 +02:00
|
|
|
#if QT_VERSION >= 0x050000
|
|
|
|
#include <QSaveFile>
|
|
|
|
#else
|
|
|
|
#include "StandardPaths.h"
|
|
|
|
#endif
|
|
|
|
|
2017-10-09 08:35:48 +02:00
|
|
|
// PARSER ALLOCATIONS
|
|
|
|
#define snapmaticHeaderLength 278
|
|
|
|
#define snapmaticUsefulLength 260
|
|
|
|
#define snapmaticFileMaxSize 528192
|
|
|
|
#define jpegHeaderLineDifStr 2
|
2018-07-12 10:52:33 +02:00
|
|
|
#define jpegHeaderLineDifLim 8
|
2017-10-09 08:35:48 +02:00
|
|
|
#define jpegPreHeaderLength 14
|
|
|
|
#define jpegPicStreamLength 524288
|
|
|
|
#define jsonStreamLength 3076
|
|
|
|
#define tideStreamLength 260
|
|
|
|
|
|
|
|
// EDITOR ALLOCATIONS
|
|
|
|
#define jpegStreamEditorBegin 292
|
|
|
|
#define jsonStreamEditorBegin 524588
|
|
|
|
#define jsonStreamEditorLength 3072
|
|
|
|
#define titlStreamEditorBegin 527668
|
|
|
|
#define titlStreamEditorLength 256
|
|
|
|
#define titlStreamCharacterMax 39
|
|
|
|
|
2018-07-12 10:52:33 +02:00
|
|
|
// LIMIT ALLOCATIONS
|
|
|
|
#define jpegStreamLimitBegin 288
|
|
|
|
|
2017-10-09 08:35:48 +02:00
|
|
|
// IMAGES VALUES
|
|
|
|
#define snapmaticResolutionW 960
|
|
|
|
#define snapmaticResolutionH 536
|
|
|
|
#define snapmaticResolution QSize(snapmaticResolutionW, snapmaticResolutionH)
|
|
|
|
|
|
|
|
SnapmaticPicture::SnapmaticPicture(const QString &fileName, QObject *parent) : QObject(parent), picFilePath(fileName)
|
|
|
|
{
|
|
|
|
reset();
|
|
|
|
}
|
|
|
|
|
|
|
|
SnapmaticPicture::~SnapmaticPicture()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void SnapmaticPicture::reset()
|
|
|
|
{
|
|
|
|
// INIT PIC
|
|
|
|
rawPicContent.clear();
|
|
|
|
rawPicContent.squeeze();
|
|
|
|
cachePicture = QImage();
|
|
|
|
picExportFileName = QString();
|
|
|
|
pictureHead = QString();
|
|
|
|
pictureStr = QString();
|
|
|
|
lastStep = QString();
|
|
|
|
sortStr = QString();
|
|
|
|
titlStr = QString();
|
|
|
|
descStr = QString();
|
|
|
|
|
|
|
|
// INIT PIC INTS
|
|
|
|
jpegRawContentSizeE = 0;
|
|
|
|
jpegRawContentSize = 0;
|
|
|
|
|
|
|
|
// INIT PIC BOOLS
|
|
|
|
isCustomFormat = false;
|
2018-06-14 12:28:12 +02:00
|
|
|
isModernFormat = false;
|
2017-11-22 20:23:36 +01:00
|
|
|
isFormatSwitch = false;
|
2017-10-09 08:35:48 +02:00
|
|
|
isLoadedInRAM = false;
|
|
|
|
lowRamMode = false;
|
|
|
|
picOk = false;
|
|
|
|
|
|
|
|
// INIT JSON
|
|
|
|
jsonOk = false;
|
|
|
|
jsonStr = QString();
|
|
|
|
|
|
|
|
// SNAPMATIC DEFAULTS
|
2020-09-26 16:12:55 +02:00
|
|
|
#ifdef SNAPMATIC_NODEFAULT
|
2017-10-09 08:35:48 +02:00
|
|
|
careSnapDefault = false;
|
|
|
|
#else
|
|
|
|
careSnapDefault = true;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// SNAPMATIC PROPERTIES
|
2017-12-12 04:45:46 +01:00
|
|
|
localProperties = {};
|
2017-10-09 08:35:48 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
bool SnapmaticPicture::preloadFile()
|
|
|
|
{
|
|
|
|
QFile *picFile = new QFile(picFilePath);
|
|
|
|
picFileName = QFileInfo(picFilePath).fileName();
|
|
|
|
|
2017-11-22 20:23:36 +01:00
|
|
|
bool g5eMode = false;
|
|
|
|
isFormatSwitch = false;
|
|
|
|
|
2017-10-09 08:35:48 +02:00
|
|
|
if (!picFile->open(QFile::ReadOnly))
|
|
|
|
{
|
2018-05-24 22:32:00 +02:00
|
|
|
lastStep = "1;/1,OpenFile," % convertDrawStringForLog(picFilePath);
|
2017-10-09 08:35:48 +02:00
|
|
|
delete picFile;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if (picFilePath.right(4) != QLatin1String(".g5e"))
|
|
|
|
{
|
2017-11-22 20:23:36 +01:00
|
|
|
rawPicContent = picFile->read(snapmaticFileMaxSize + 1024);
|
2017-10-09 08:35:48 +02:00
|
|
|
picFile->close();
|
|
|
|
delete picFile;
|
|
|
|
|
2017-11-22 20:23:36 +01:00
|
|
|
if (rawPicContent.mid(1, 3) == QByteArray("G5E"))
|
|
|
|
{
|
|
|
|
isFormatSwitch = true;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
isCustomFormat = false;
|
2018-06-14 12:28:12 +02:00
|
|
|
isModernFormat = false;
|
2017-11-22 20:23:36 +01:00
|
|
|
isLoadedInRAM = true;
|
|
|
|
}
|
2017-10-09 08:35:48 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2017-11-22 20:23:36 +01:00
|
|
|
g5eMode = true;
|
|
|
|
}
|
|
|
|
if (g5eMode || isFormatSwitch)
|
|
|
|
{
|
|
|
|
QByteArray g5eContent;
|
|
|
|
if (!isFormatSwitch)
|
|
|
|
{
|
|
|
|
g5eContent = picFile->read(snapmaticFileMaxSize + 1024);
|
|
|
|
picFile->close();
|
|
|
|
delete picFile;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
g5eContent = rawPicContent;
|
|
|
|
rawPicContent.clear();
|
|
|
|
}
|
2017-10-09 08:35:48 +02:00
|
|
|
|
|
|
|
// Set Custom Format
|
|
|
|
isCustomFormat = true;
|
|
|
|
|
|
|
|
// Reading g5e Content
|
|
|
|
g5eContent.remove(0, 1);
|
|
|
|
if (g5eContent.left(3) == QByteArray("G5E"))
|
|
|
|
{
|
|
|
|
g5eContent.remove(0, 3);
|
|
|
|
if (g5eContent.left(2).toHex() == QByteArray("1000"))
|
|
|
|
{
|
|
|
|
g5eContent.remove(0, 2);
|
|
|
|
if (g5eContent.left(3) == QByteArray("LEN"))
|
|
|
|
{
|
|
|
|
g5eContent.remove(0, 3);
|
|
|
|
int fileNameLength = g5eContent.left(1).toHex().toInt();
|
|
|
|
g5eContent.remove(0, 1);
|
|
|
|
if (g5eContent.left(3) == QByteArray("FIL"))
|
|
|
|
{
|
|
|
|
g5eContent.remove(0, 3);
|
|
|
|
picFileName = g5eContent.left(fileNameLength);
|
|
|
|
g5eContent.remove(0, fileNameLength);
|
|
|
|
if (g5eContent.left(3) == QByteArray("COM"))
|
|
|
|
{
|
|
|
|
g5eContent.remove(0, 3);
|
|
|
|
rawPicContent = qUncompress(g5eContent);
|
|
|
|
|
|
|
|
// Setting is values
|
2018-06-15 04:43:13 +02:00
|
|
|
isModernFormat = false;
|
2017-10-09 08:35:48 +02:00
|
|
|
isLoadedInRAM = true;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2018-05-24 22:32:00 +02:00
|
|
|
lastStep = "2;/3,ReadingFile," % convertDrawStringForLog(picFilePath) % ",4,G5E_FORMATERROR";
|
2017-10-09 08:35:48 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2018-05-24 22:32:00 +02:00
|
|
|
lastStep = "2;/3,ReadingFile," % convertDrawStringForLog(picFilePath) % ",3,G5E_FORMATERROR";
|
2017-10-09 08:35:48 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2018-05-24 22:32:00 +02:00
|
|
|
lastStep = "2;/3,ReadingFile," % convertDrawStringForLog(picFilePath) % ",2,G5E_FORMATERROR";
|
2017-10-09 08:35:48 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
2018-06-14 12:28:12 +02:00
|
|
|
else if (g5eContent.left(2).toHex() == QByteArray("3200"))
|
|
|
|
{
|
|
|
|
g5eContent.remove(0, 2);
|
|
|
|
if (g5eContent.left(2).toHex() == QByteArray("0001"))
|
|
|
|
{
|
|
|
|
g5eContent.remove(0, 2);
|
|
|
|
rawPicContent = qUncompress(g5eContent);
|
|
|
|
|
|
|
|
// Setting is values
|
|
|
|
isModernFormat = true;
|
|
|
|
isLoadedInRAM = true;
|
|
|
|
}
|
|
|
|
else if (g5eContent.left(2).toHex() == QByteArray("0002"))
|
|
|
|
{
|
|
|
|
lastStep = "2;/4,ReadingFile," % convertDrawStringForLog(picFilePath) % ",2,G5E2_FORMATWRONG,G5E2_SGD";
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
lastStep = "2;/3,ReadingFile," % convertDrawStringForLog(picFilePath) % ",2,G5E2_MISSINGEXTENSION";
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
2017-10-09 08:35:48 +02:00
|
|
|
else
|
|
|
|
{
|
2018-05-24 22:32:00 +02:00
|
|
|
lastStep = "2;/3,ReadingFile," % convertDrawStringForLog(picFilePath) % ",1,G5E_NOTCOMPATIBLE";
|
2017-10-09 08:35:48 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2018-05-24 22:32:00 +02:00
|
|
|
lastStep = "2;/3,ReadingFile," % convertDrawStringForLog(picFilePath) % ",1,G5E_FORMATERROR";
|
2017-10-09 08:35:48 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
emit preloaded();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool SnapmaticPicture::readingPicture(bool writeEnabled_, bool cacheEnabled_, bool fastLoad, bool lowRamMode_)
|
|
|
|
{
|
|
|
|
// Start opening file
|
|
|
|
// lastStep is like currentStep
|
|
|
|
|
|
|
|
// Set boolean values
|
|
|
|
writeEnabled = writeEnabled_;
|
|
|
|
cacheEnabled = cacheEnabled_;
|
|
|
|
lowRamMode = lowRamMode_;
|
|
|
|
if (!writeEnabled) { lowRamMode = false; } // Low RAM Mode only works when writeEnabled is true
|
|
|
|
|
|
|
|
QIODevice *picStream;
|
|
|
|
|
|
|
|
if (!isLoadedInRAM) { preloadFile(); }
|
|
|
|
|
|
|
|
picStream = new QBuffer(&rawPicContent);
|
|
|
|
picStream->open(QIODevice::ReadWrite);
|
|
|
|
|
|
|
|
// Reading Snapmatic Header
|
|
|
|
if (!picStream->isReadable())
|
|
|
|
{
|
2018-05-24 22:32:00 +02:00
|
|
|
lastStep = "2;/3,ReadingFile," % convertDrawStringForLog(picFilePath) % ",1,NOHEADER";
|
2017-10-09 08:35:48 +02:00
|
|
|
picStream->close();
|
|
|
|
delete picStream;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
QByteArray snapmaticHeaderLine = picStream->read(snapmaticHeaderLength);
|
|
|
|
pictureHead = getSnapmaticHeaderString(snapmaticHeaderLine);
|
|
|
|
if (pictureHead == QLatin1String("MALFORMED"))
|
|
|
|
{
|
2018-05-24 22:32:00 +02:00
|
|
|
lastStep = "2;/3,ReadingFile," % convertDrawStringForLog(picFilePath) % ",1,MALFORMEDHEADER";
|
2017-10-09 08:35:48 +02:00
|
|
|
picStream->close();
|
|
|
|
delete picStream;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Reading JPEG Header Line
|
|
|
|
if (!picStream->isReadable())
|
|
|
|
{
|
2018-05-24 22:32:00 +02:00
|
|
|
lastStep = "2;/3,ReadingFile," % convertDrawStringForLog(picFilePath) % ",2,NOHEADER";
|
2017-10-09 08:35:48 +02:00
|
|
|
picStream->close();
|
|
|
|
delete picStream;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
QByteArray jpegHeaderLine = picStream->read(jpegPreHeaderLength);
|
|
|
|
|
|
|
|
// Checking for JPEG
|
|
|
|
jpegHeaderLine.remove(0, jpegHeaderLineDifStr);
|
|
|
|
if (jpegHeaderLine.left(4) != QByteArray("JPEG"))
|
|
|
|
{
|
2018-05-24 22:32:00 +02:00
|
|
|
lastStep = "2;/3,ReadingFile," % convertDrawStringForLog(picFilePath) % ",2,NOJPEG";
|
2017-10-09 08:35:48 +02:00
|
|
|
picStream->close();
|
|
|
|
delete picStream;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2018-07-12 10:52:33 +02:00
|
|
|
// Get JPEG Size Limit
|
|
|
|
jpegHeaderLine.remove(0, jpegHeaderLineDifLim);
|
|
|
|
QString jpegHeaderLineStr = QString::fromUtf8(jpegHeaderLine.toHex().remove(8 - 2, 2));
|
|
|
|
QString hexadecimalStr = jpegHeaderLineStr.mid(4, 2) % jpegHeaderLineStr.mid(2, 2) % jpegHeaderLineStr.mid(0, 2);
|
|
|
|
jpegRawContentSize = hexadecimalStr.toInt(0, 16);
|
|
|
|
|
2017-10-09 08:35:48 +02:00
|
|
|
// Read JPEG Stream
|
|
|
|
if (!picStream->isReadable())
|
|
|
|
{
|
2018-05-24 22:32:00 +02:00
|
|
|
lastStep = "2;/3,ReadingFile," % convertDrawStringForLog(picFilePath) % ",2,NOPIC";
|
2017-10-09 08:35:48 +02:00
|
|
|
picStream->close();
|
|
|
|
delete picStream;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
QByteArray jpegRawContent = picStream->read(jpegPicStreamLength);
|
|
|
|
if (cacheEnabled) picOk = cachePicture.loadFromData(jpegRawContent, "JPEG");
|
|
|
|
if (!cacheEnabled)
|
|
|
|
{
|
|
|
|
QImage tempPicture;
|
|
|
|
picOk = tempPicture.loadFromData(jpegRawContent, "JPEG");
|
|
|
|
}
|
|
|
|
else if (!fastLoad)
|
|
|
|
{
|
|
|
|
if (careSnapDefault)
|
|
|
|
{
|
|
|
|
QImage tempPicture = QImage(snapmaticResolution, QImage::Format_RGB888);
|
|
|
|
QPainter tempPainter(&tempPicture);
|
|
|
|
if (cachePicture.size() != snapmaticResolution)
|
|
|
|
{
|
|
|
|
tempPainter.drawImage(0, 0, cachePicture.scaled(snapmaticResolution, Qt::IgnoreAspectRatio, Qt::SmoothTransformation));
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
tempPainter.drawImage(0, 0, cachePicture);
|
|
|
|
}
|
|
|
|
tempPainter.end();
|
|
|
|
cachePicture = tempPicture;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
QImage tempPicture = QImage(cachePicture.size(), QImage::Format_RGB888);
|
|
|
|
QPainter tempPainter(&tempPicture);
|
|
|
|
tempPainter.drawImage(0, 0, cachePicture);
|
|
|
|
tempPainter.end();
|
|
|
|
cachePicture = tempPicture;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Read JSON Stream
|
|
|
|
if (!picStream->isReadable())
|
|
|
|
{
|
2018-05-24 22:32:00 +02:00
|
|
|
lastStep = "2;/3,ReadingFile," % convertDrawStringForLog(picFilePath) % ",3,NOJSON";
|
2017-10-09 08:35:48 +02:00
|
|
|
picStream->close();
|
|
|
|
delete picStream;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
else if (picStream->read(4) != QByteArray("JSON"))
|
|
|
|
{
|
2018-05-24 22:32:00 +02:00
|
|
|
lastStep = "2;/3,ReadingFile," % convertDrawStringForLog(picFilePath) % ",3,CTJSON";
|
2017-10-09 08:35:48 +02:00
|
|
|
picStream->close();
|
|
|
|
delete picStream;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
QByteArray jsonRawContent = picStream->read(jsonStreamLength);
|
|
|
|
jsonStr = getSnapmaticJSONString(jsonRawContent);
|
|
|
|
parseJsonContent(); // JSON parsing is own function
|
|
|
|
|
|
|
|
if (!picStream->isReadable())
|
|
|
|
{
|
2018-05-24 22:32:00 +02:00
|
|
|
lastStep = "2;/3,ReadingFile," % convertDrawStringForLog(picFilePath) % ",4,NOTITL";
|
2017-10-09 08:35:48 +02:00
|
|
|
picStream->close();
|
|
|
|
delete picStream;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
else if (picStream->read(4) != QByteArray("TITL"))
|
|
|
|
{
|
2018-05-24 22:32:00 +02:00
|
|
|
lastStep = "2;/3,ReadingFile," % convertDrawStringForLog(picFilePath) % ",4,CTTITL";
|
2017-10-09 08:35:48 +02:00
|
|
|
picStream->close();
|
|
|
|
delete picStream;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
QByteArray titlRawContent = picStream->read(tideStreamLength);
|
|
|
|
titlStr = getSnapmaticTIDEString(titlRawContent);
|
|
|
|
|
|
|
|
if (!picStream->isReadable())
|
|
|
|
{
|
2018-05-24 22:32:00 +02:00
|
|
|
lastStep = "2;/3,ReadingFile," % convertDrawStringForLog(picFilePath) % ",5,NODESC";
|
2017-10-09 08:35:48 +02:00
|
|
|
picStream->close();
|
|
|
|
delete picStream;
|
|
|
|
return picOk;
|
|
|
|
}
|
|
|
|
else if (picStream->read(4) != QByteArray("DESC"))
|
|
|
|
{
|
2018-05-24 22:32:00 +02:00
|
|
|
lastStep = "2;/3,ReadingFile," % convertDrawStringForLog(picFilePath) % ",5,CTDESC";
|
2017-10-09 08:35:48 +02:00
|
|
|
picStream->close();
|
|
|
|
delete picStream;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
QByteArray descRawContent = picStream->read(tideStreamLength);
|
|
|
|
descStr = getSnapmaticTIDEString(descRawContent);
|
|
|
|
|
|
|
|
updateStrings();
|
|
|
|
|
|
|
|
picStream->close();
|
|
|
|
delete picStream;
|
|
|
|
|
|
|
|
if (!writeEnabled) { rawPicContent.clear(); }
|
|
|
|
else if (lowRamMode) { rawPicContent = qCompress(rawPicContent, 9); }
|
|
|
|
|
|
|
|
emit loaded();
|
|
|
|
return picOk;
|
|
|
|
}
|
|
|
|
|
|
|
|
QString SnapmaticPicture::getSnapmaticHeaderString(const QByteArray &snapmaticHeader)
|
|
|
|
{
|
|
|
|
QList<QByteArray> snapmaticBytesList = snapmaticHeader.left(snapmaticUsefulLength).split('\x01');
|
|
|
|
if (snapmaticBytesList.length() < 2) { return QLatin1String("MALFORMED"); }
|
|
|
|
QByteArray snapmaticBytes = snapmaticBytesList.at(1);
|
2018-05-24 22:32:00 +02:00
|
|
|
return parseTitleString(snapmaticBytes, snapmaticBytes.length());
|
2017-10-09 08:35:48 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
QString SnapmaticPicture::getSnapmaticJSONString(const QByteArray &jsonBytes)
|
|
|
|
{
|
|
|
|
QByteArray jsonUsefulBytes = jsonBytes;
|
2020-08-25 17:29:41 +02:00
|
|
|
jsonUsefulBytes.replace('\x00', "");
|
|
|
|
jsonUsefulBytes.replace('\x0c', "");
|
2017-10-09 08:35:48 +02:00
|
|
|
return QString::fromUtf8(jsonUsefulBytes.trimmed());
|
|
|
|
}
|
|
|
|
|
|
|
|
QString SnapmaticPicture::getSnapmaticTIDEString(const QByteArray &tideBytes)
|
|
|
|
{
|
|
|
|
QByteArray tideUsefulBytes = tideBytes;
|
|
|
|
tideUsefulBytes.remove(0,4);
|
|
|
|
QList<QByteArray> tideUsefulBytesList = tideUsefulBytes.split('\x00');
|
|
|
|
return QString::fromUtf8(tideUsefulBytesList.at(0).trimmed());
|
|
|
|
}
|
|
|
|
|
|
|
|
void SnapmaticPicture::updateStrings()
|
|
|
|
{
|
|
|
|
QString cmpPicTitl = titlStr;
|
|
|
|
cmpPicTitl.replace('\"', "''");
|
|
|
|
cmpPicTitl.replace(' ', '_');
|
|
|
|
cmpPicTitl.replace(':', '-');
|
|
|
|
cmpPicTitl.remove('\\');
|
|
|
|
cmpPicTitl.remove('{');
|
|
|
|
cmpPicTitl.remove('}');
|
|
|
|
cmpPicTitl.remove('/');
|
|
|
|
cmpPicTitl.remove('<');
|
|
|
|
cmpPicTitl.remove('>');
|
|
|
|
cmpPicTitl.remove('*');
|
|
|
|
cmpPicTitl.remove('?');
|
|
|
|
cmpPicTitl.remove('.');
|
2017-12-12 04:45:46 +01:00
|
|
|
pictureStr = tr("PHOTO - %1").arg(localProperties.createdDateTime.toString("MM/dd/yy HH:mm:ss"));
|
|
|
|
sortStr = localProperties.createdDateTime.toString("yyMMddHHmmss") % QString::number(localProperties.uid);
|
|
|
|
QString exportStr = localProperties.createdDateTime.toString("yyyyMMdd") % "-" % QString::number(localProperties.uid);
|
2018-06-14 12:28:12 +02:00
|
|
|
if (isModernFormat) { picFileName = "PGTA5" % QString::number(localProperties.uid); }
|
2017-10-09 08:35:48 +02:00
|
|
|
picExportFileName = exportStr % "_" % cmpPicTitl;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool SnapmaticPicture::readingPictureFromFile(const QString &fileName, bool writeEnabled_, bool cacheEnabled_, bool fastLoad, bool lowRamMode_)
|
|
|
|
{
|
|
|
|
if (!fileName.isEmpty())
|
|
|
|
{
|
|
|
|
picFilePath = fileName;
|
|
|
|
return readingPicture(writeEnabled_, cacheEnabled_, fastLoad, lowRamMode_);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bool SnapmaticPicture::setImage(const QImage &picture)
|
|
|
|
{
|
|
|
|
if (writeEnabled)
|
|
|
|
{
|
|
|
|
QImage altPicture;
|
|
|
|
bool useAltPicture = false;
|
|
|
|
if (picture.size() != snapmaticResolution && careSnapDefault)
|
|
|
|
{
|
|
|
|
altPicture = picture.scaled(snapmaticResolution, Qt::IgnoreAspectRatio, Qt::SmoothTransformation);
|
|
|
|
useAltPicture = true;
|
|
|
|
}
|
|
|
|
QByteArray picByteArray;
|
|
|
|
int comLvl = 100;
|
|
|
|
bool saveSuccess = false;
|
|
|
|
while (comLvl != 0 && !saveSuccess)
|
|
|
|
{
|
|
|
|
QByteArray picByteArrayT;
|
|
|
|
QBuffer picStreamT(&picByteArrayT);
|
|
|
|
picStreamT.open(QIODevice::WriteOnly);
|
|
|
|
if (useAltPicture) { saveSuccess = altPicture.save(&picStreamT, "JPEG", comLvl); }
|
|
|
|
else { saveSuccess = picture.save(&picStreamT, "JPEG", comLvl); }
|
|
|
|
picStreamT.close();
|
|
|
|
if (saveSuccess)
|
|
|
|
{
|
2018-07-12 10:52:33 +02:00
|
|
|
if (picByteArrayT.length() > jpegPicStreamLength)
|
2017-10-09 08:35:48 +02:00
|
|
|
{
|
|
|
|
comLvl--;
|
|
|
|
saveSuccess = false;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
picByteArray = picByteArrayT;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (saveSuccess) { return setPictureStream(picByteArray); }
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2017-12-12 04:45:46 +01:00
|
|
|
bool SnapmaticPicture::setPictureStream(const QByteArray &streamArray) // clean method
|
2017-10-09 08:35:48 +02:00
|
|
|
{
|
|
|
|
if (writeEnabled)
|
|
|
|
{
|
2017-12-12 04:45:46 +01:00
|
|
|
QByteArray picByteArray = streamArray;
|
2017-10-09 08:35:48 +02:00
|
|
|
if (lowRamMode) { rawPicContent = qUncompress(rawPicContent); }
|
|
|
|
QBuffer snapmaticStream(&rawPicContent);
|
|
|
|
snapmaticStream.open(QIODevice::ReadWrite);
|
|
|
|
if (!snapmaticStream.seek(jpegStreamEditorBegin)) return false;
|
|
|
|
if (picByteArray.length() > jpegPicStreamLength) return false;
|
|
|
|
while (picByteArray.length() != jpegPicStreamLength)
|
|
|
|
{
|
|
|
|
picByteArray += '\x00';
|
|
|
|
}
|
2018-07-12 10:52:33 +02:00
|
|
|
int result = snapmaticStream.write(picByteArray);
|
|
|
|
QString hexadecimalStr;
|
|
|
|
hexadecimalStr.setNum(streamArray.length(), 16);
|
|
|
|
while (hexadecimalStr.length() != 6)
|
2017-10-09 08:35:48 +02:00
|
|
|
{
|
2018-07-12 10:52:33 +02:00
|
|
|
hexadecimalStr.prepend('0');
|
|
|
|
}
|
|
|
|
hexadecimalStr = hexadecimalStr.mid(4, 2) % hexadecimalStr.mid(2, 2) % hexadecimalStr.mid(0, 2);
|
|
|
|
bool updatedRawContentSize = false;
|
|
|
|
if (snapmaticStream.seek(jpegStreamLimitBegin))
|
|
|
|
{
|
|
|
|
snapmaticStream.write(QByteArray::fromHex(hexadecimalStr.toUtf8()));
|
|
|
|
updatedRawContentSize = true;
|
2017-10-09 08:35:48 +02:00
|
|
|
}
|
|
|
|
snapmaticStream.close();
|
|
|
|
if (result != 0)
|
|
|
|
{
|
2018-07-12 10:52:33 +02:00
|
|
|
if (updatedRawContentSize) { jpegRawContentSize = streamArray.length(); }
|
2017-10-09 08:35:48 +02:00
|
|
|
if (cacheEnabled)
|
|
|
|
{
|
|
|
|
QImage replacedPicture;
|
|
|
|
replacedPicture.loadFromData(picByteArray);
|
|
|
|
cachePicture = replacedPicture;
|
|
|
|
}
|
|
|
|
if (lowRamMode) { rawPicContent = qCompress(rawPicContent, 9); }
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
if (lowRamMode) { rawPicContent = qCompress(rawPicContent, 9); }
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool SnapmaticPicture::setPictureTitl(const QString &newTitle_)
|
|
|
|
{
|
|
|
|
if (writeEnabled)
|
|
|
|
{
|
|
|
|
QString newTitle = newTitle_;
|
|
|
|
if (lowRamMode) { rawPicContent = qUncompress(rawPicContent); }
|
|
|
|
QBuffer snapmaticStream(&rawPicContent);
|
|
|
|
snapmaticStream.open(QIODevice::ReadWrite);
|
|
|
|
if (!snapmaticStream.seek(titlStreamEditorBegin)) return false;
|
|
|
|
if (newTitle.length() > titlStreamCharacterMax)
|
|
|
|
{
|
|
|
|
newTitle = newTitle.left(titlStreamCharacterMax);
|
|
|
|
}
|
|
|
|
QByteArray newTitleArray = newTitle.toUtf8();
|
|
|
|
while (newTitleArray.length() != titlStreamEditorLength)
|
|
|
|
{
|
|
|
|
newTitleArray += '\x00';
|
|
|
|
}
|
|
|
|
int result = snapmaticStream.write(newTitleArray);
|
|
|
|
snapmaticStream.close();
|
|
|
|
if (result != 0)
|
|
|
|
{
|
|
|
|
titlStr = newTitle;
|
|
|
|
if (lowRamMode) { rawPicContent = qCompress(rawPicContent, 9); }
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
if (lowRamMode) { rawPicContent = qCompress(rawPicContent, 9); }
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
QString SnapmaticPicture::getExportPictureFileName()
|
|
|
|
{
|
|
|
|
return picExportFileName;
|
|
|
|
}
|
|
|
|
|
2017-10-12 22:21:45 +02:00
|
|
|
QString SnapmaticPicture::getOriginalPictureFileName()
|
|
|
|
{
|
|
|
|
QString newPicFileName = picFileName;
|
|
|
|
if (picFileName.right(4) == ".bak")
|
|
|
|
{
|
|
|
|
newPicFileName = QString(picFileName).remove(picFileName.length() - 4, 4);
|
|
|
|
}
|
|
|
|
if (picFileName.right(7) == ".hidden")
|
|
|
|
{
|
|
|
|
newPicFileName = QString(picFileName).remove(picFileName.length() - 7, 7);
|
|
|
|
}
|
|
|
|
return newPicFileName;
|
|
|
|
}
|
|
|
|
|
|
|
|
QString SnapmaticPicture::getOriginalPictureFilePath()
|
|
|
|
{
|
|
|
|
QString newPicFilePath = picFilePath;
|
|
|
|
if (picFilePath.right(4) == ".bak")
|
|
|
|
{
|
|
|
|
newPicFilePath = QString(picFilePath).remove(picFilePath.length() - 4, 4);
|
|
|
|
}
|
|
|
|
if (picFilePath.right(7) == ".hidden")
|
|
|
|
{
|
|
|
|
newPicFilePath = QString(picFilePath).remove(picFilePath.length() - 7, 7);
|
|
|
|
}
|
|
|
|
return newPicFilePath;
|
|
|
|
}
|
|
|
|
|
2017-10-09 08:35:48 +02:00
|
|
|
QString SnapmaticPicture::getPictureFileName()
|
|
|
|
{
|
|
|
|
return picFileName;
|
|
|
|
}
|
|
|
|
|
|
|
|
QString SnapmaticPicture::getPictureFilePath()
|
|
|
|
{
|
|
|
|
return picFilePath;
|
|
|
|
}
|
|
|
|
|
|
|
|
QString SnapmaticPicture::getPictureSortStr()
|
|
|
|
{
|
|
|
|
return sortStr;
|
|
|
|
}
|
|
|
|
|
|
|
|
QString SnapmaticPicture::getPictureDesc()
|
|
|
|
{
|
|
|
|
return descStr;
|
|
|
|
}
|
|
|
|
|
|
|
|
QString SnapmaticPicture::getPictureTitl()
|
|
|
|
{
|
|
|
|
return titlStr;
|
|
|
|
}
|
|
|
|
|
|
|
|
QString SnapmaticPicture::getPictureHead()
|
|
|
|
{
|
|
|
|
return pictureHead;
|
|
|
|
}
|
|
|
|
|
|
|
|
QString SnapmaticPicture::getPictureStr()
|
|
|
|
{
|
|
|
|
return pictureStr;
|
|
|
|
}
|
|
|
|
|
2017-12-12 04:45:46 +01:00
|
|
|
QString SnapmaticPicture::getLastStep(bool readable)
|
2017-10-09 08:35:48 +02:00
|
|
|
{
|
2017-12-12 04:45:46 +01:00
|
|
|
if (readable)
|
|
|
|
{
|
|
|
|
QStringList lastStepList = lastStep.split(";/");
|
|
|
|
if (lastStepList.length() < 2) { return lastStep; }
|
|
|
|
bool intOk;
|
|
|
|
//int stepNumber = lastStepList.at(0).toInt(&intOk);
|
|
|
|
//if (!intOk) { return lastStep; }
|
|
|
|
QStringList descStepList = lastStepList.at(1).split(",");
|
|
|
|
if (descStepList.length() < 1) { return lastStep; }
|
|
|
|
int argsCount = descStepList.at(0).toInt(&intOk);
|
|
|
|
if (!intOk) { return lastStep; }
|
|
|
|
if (argsCount == 1)
|
|
|
|
{
|
|
|
|
QString currentAction = descStepList.at(1);
|
|
|
|
QString actionFile = descStepList.at(2);
|
|
|
|
if (currentAction == "OpenFile")
|
|
|
|
{
|
|
|
|
return tr("open file %1").arg(actionFile);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (argsCount == 3 || argsCount == 4)
|
|
|
|
{
|
|
|
|
QString currentAction = descStepList.at(1);
|
|
|
|
QString actionFile = descStepList.at(2);
|
|
|
|
//QString actionStep = descStepList.at(3);
|
|
|
|
QString actionError = descStepList.at(4);
|
|
|
|
QString actionError2;
|
|
|
|
if (argsCount == 4) { actionError2 = descStepList.at(5); }
|
|
|
|
if (currentAction == "ReadingFile")
|
|
|
|
{
|
|
|
|
QString readableError = actionError;
|
|
|
|
if (actionError == "NOHEADER")
|
|
|
|
{
|
|
|
|
readableError = tr("header not exists");
|
|
|
|
}
|
|
|
|
else if (actionError == "MALFORMEDHEADER")
|
|
|
|
{
|
|
|
|
readableError = tr("header is malformed");
|
|
|
|
}
|
|
|
|
else if (actionError == "NOJPEG" || actionError == "NOPIC")
|
|
|
|
{
|
|
|
|
readableError = tr("picture not exists (%1)").arg(actionError);
|
|
|
|
}
|
|
|
|
else if (actionError == "NOJSON" || actionError == "CTJSON")
|
|
|
|
{
|
|
|
|
readableError = tr("JSON not exists (%1)").arg(actionError);
|
|
|
|
}
|
|
|
|
else if (actionError == "NOTITL" || actionError == "CTTITL")
|
|
|
|
{
|
|
|
|
readableError = tr("title not exists (%1)").arg(actionError);
|
|
|
|
}
|
|
|
|
else if (actionError == "NODESC" || actionError == "CTDESC")
|
|
|
|
{
|
|
|
|
readableError = tr("description not exists (%1)").arg(actionError);
|
|
|
|
}
|
|
|
|
else if (actionError == "JSONINCOMPLETE" && actionError2 == "JSONERROR")
|
|
|
|
{
|
|
|
|
readableError = tr("JSON is incomplete and malformed");
|
|
|
|
}
|
|
|
|
else if (actionError == "JSONINCOMPLETE")
|
|
|
|
{
|
|
|
|
readableError = tr("JSON is incomplete");
|
|
|
|
}
|
|
|
|
else if (actionError == "JSONERROR")
|
|
|
|
{
|
|
|
|
readableError = tr("JSON is malformed");
|
|
|
|
}
|
|
|
|
return tr("reading file %1 because of %2", "Example for %2: JSON is malformed error").arg(actionFile, readableError);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return lastStep;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return lastStep;
|
|
|
|
}
|
|
|
|
}
|
2017-10-09 08:35:48 +02:00
|
|
|
return lastStep;
|
2017-12-12 04:45:46 +01:00
|
|
|
|
2017-10-09 08:35:48 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
QImage SnapmaticPicture::getImage(bool fastLoad)
|
|
|
|
{
|
|
|
|
if (cacheEnabled)
|
|
|
|
{
|
|
|
|
return cachePicture;
|
|
|
|
}
|
|
|
|
else if (writeEnabled)
|
|
|
|
{
|
|
|
|
bool fastLoadU = fastLoad;
|
|
|
|
if (!careSnapDefault) { fastLoadU = true; }
|
|
|
|
|
|
|
|
bool returnOk = false;
|
|
|
|
QImage tempPicture;
|
|
|
|
QImage returnPicture;
|
|
|
|
if (!fastLoadU)
|
|
|
|
{
|
|
|
|
returnPicture = QImage(snapmaticResolution, QImage::Format_RGB888);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (lowRamMode) { rawPicContent = qUncompress(rawPicContent); }
|
|
|
|
QBuffer snapmaticStream(&rawPicContent);
|
|
|
|
snapmaticStream.open(QIODevice::ReadOnly);
|
|
|
|
if (snapmaticStream.seek(jpegStreamEditorBegin))
|
|
|
|
{
|
|
|
|
QByteArray jpegRawContent = snapmaticStream.read(jpegPicStreamLength);
|
|
|
|
returnOk = tempPicture.loadFromData(jpegRawContent, "JPEG");
|
|
|
|
}
|
|
|
|
snapmaticStream.close();
|
|
|
|
if (lowRamMode) { rawPicContent = qCompress(rawPicContent, 9); }
|
|
|
|
|
|
|
|
if (returnOk)
|
|
|
|
{
|
|
|
|
if (!fastLoadU)
|
|
|
|
{
|
|
|
|
QPainter returnPainter(&returnPicture);
|
|
|
|
if (tempPicture.size() != snapmaticResolution)
|
|
|
|
{
|
|
|
|
returnPainter.drawImage(0, 0, tempPicture.scaled(snapmaticResolution, Qt::IgnoreAspectRatio, Qt::SmoothTransformation));
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
returnPainter.drawImage(0, 0, tempPicture);
|
|
|
|
}
|
|
|
|
returnPainter.end();
|
|
|
|
return returnPicture;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return tempPicture;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
bool fastLoadU = fastLoad;
|
|
|
|
if (!careSnapDefault) { fastLoadU = true; }
|
|
|
|
|
|
|
|
bool returnOk = false;
|
|
|
|
QImage tempPicture;
|
|
|
|
QImage returnPicture;
|
|
|
|
if (!fastLoadU)
|
|
|
|
{
|
|
|
|
returnPicture = QImage(snapmaticResolution, QImage::Format_RGB888);
|
|
|
|
}
|
|
|
|
QIODevice *picStream;
|
|
|
|
|
|
|
|
QFile *picFile = new QFile(picFilePath);
|
|
|
|
if (!picFile->open(QFile::ReadOnly))
|
|
|
|
{
|
2018-05-24 22:32:00 +02:00
|
|
|
lastStep = "1;/1,OpenFile," % convertDrawStringForLog(picFilePath);
|
2017-10-09 08:35:48 +02:00
|
|
|
delete picFile;
|
|
|
|
return QImage();
|
|
|
|
}
|
|
|
|
rawPicContent = picFile->read(snapmaticFileMaxSize);
|
|
|
|
picFile->close();
|
|
|
|
delete picFile;
|
|
|
|
|
|
|
|
picStream = new QBuffer(&rawPicContent);
|
|
|
|
picStream->open(QIODevice::ReadWrite);
|
|
|
|
if (picStream->seek(jpegStreamEditorBegin))
|
|
|
|
{
|
|
|
|
QByteArray jpegRawContent = picStream->read(jpegPicStreamLength);
|
|
|
|
returnOk = tempPicture.loadFromData(jpegRawContent, "JPEG");
|
|
|
|
}
|
|
|
|
picStream->close();
|
|
|
|
delete picStream;
|
|
|
|
|
2017-12-17 13:03:43 +01:00
|
|
|
rawPicContent.clear();
|
|
|
|
rawPicContent.squeeze();
|
|
|
|
|
2017-10-09 08:35:48 +02:00
|
|
|
if (returnOk)
|
|
|
|
{
|
|
|
|
if (!fastLoadU)
|
|
|
|
{
|
|
|
|
QPainter returnPainter(&returnPicture);
|
|
|
|
if (tempPicture.size() != snapmaticResolution)
|
|
|
|
{
|
|
|
|
returnPainter.drawImage(0, 0, tempPicture.scaled(snapmaticResolution, Qt::IgnoreAspectRatio, Qt::SmoothTransformation));
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
returnPainter.drawImage(0, 0, tempPicture);
|
|
|
|
}
|
|
|
|
returnPainter.end();
|
|
|
|
return returnPicture;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return tempPicture;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return QImage();
|
|
|
|
}
|
|
|
|
|
2017-12-17 13:03:43 +01:00
|
|
|
QByteArray SnapmaticPicture::getPictureStream() // Incomplete because it just work in writeEnabled mode
|
|
|
|
{
|
|
|
|
QByteArray jpegRawContent;
|
|
|
|
if (writeEnabled)
|
|
|
|
{
|
|
|
|
QBuffer *picStream = new QBuffer(&rawPicContent);
|
|
|
|
picStream->open(QIODevice::ReadWrite);
|
|
|
|
if (picStream->seek(jpegStreamEditorBegin))
|
|
|
|
{
|
|
|
|
jpegRawContent = picStream->read(jpegPicStreamLength);
|
|
|
|
}
|
|
|
|
delete picStream;
|
|
|
|
}
|
|
|
|
return jpegRawContent;
|
|
|
|
}
|
|
|
|
|
2017-10-09 08:35:48 +02:00
|
|
|
int SnapmaticPicture::getContentMaxLength()
|
|
|
|
{
|
|
|
|
return jpegRawContentSize;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool SnapmaticPicture::isPicOk()
|
|
|
|
{
|
|
|
|
return picOk;
|
|
|
|
}
|
|
|
|
|
|
|
|
void SnapmaticPicture::clearCache()
|
|
|
|
{
|
|
|
|
cacheEnabled = false;
|
|
|
|
cachePicture = QImage();
|
|
|
|
}
|
|
|
|
|
|
|
|
void SnapmaticPicture::emitUpdate()
|
|
|
|
{
|
|
|
|
emit updated();
|
|
|
|
}
|
|
|
|
|
2017-12-17 13:03:43 +01:00
|
|
|
void SnapmaticPicture::emitCustomSignal(const QString &signal)
|
|
|
|
{
|
|
|
|
emit customSignal(signal);
|
|
|
|
}
|
|
|
|
|
2017-10-09 08:35:48 +02:00
|
|
|
// JSON part
|
|
|
|
|
|
|
|
bool SnapmaticPicture::isJsonOk()
|
|
|
|
{
|
|
|
|
return jsonOk;
|
|
|
|
}
|
|
|
|
|
|
|
|
QString SnapmaticPicture::getJsonStr()
|
|
|
|
{
|
|
|
|
return jsonStr;
|
|
|
|
}
|
|
|
|
|
|
|
|
SnapmaticProperties SnapmaticPicture::getSnapmaticProperties()
|
|
|
|
{
|
2017-12-12 04:45:46 +01:00
|
|
|
return localProperties;
|
2017-10-09 08:35:48 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void SnapmaticPicture::parseJsonContent()
|
|
|
|
{
|
|
|
|
QJsonDocument jsonDocument = QJsonDocument::fromJson(jsonStr.toUtf8());
|
|
|
|
QJsonObject jsonObject = jsonDocument.object();
|
2017-11-22 14:59:40 +01:00
|
|
|
QVariantMap jsonMap = jsonObject.toVariantMap();
|
2017-10-09 08:35:48 +02:00
|
|
|
|
2017-11-22 14:59:40 +01:00
|
|
|
bool jsonIncomplete = false;
|
|
|
|
bool jsonError = false;
|
2017-10-09 08:35:48 +02:00
|
|
|
if (jsonObject.contains("loc"))
|
|
|
|
{
|
2017-11-22 14:59:40 +01:00
|
|
|
if (jsonObject["loc"].isObject())
|
|
|
|
{
|
|
|
|
QJsonObject locObject = jsonObject["loc"].toObject();
|
|
|
|
if (locObject.contains("x"))
|
|
|
|
{
|
2017-12-12 04:45:46 +01:00
|
|
|
if (locObject["x"].isDouble()) { localProperties.location.x = locObject["x"].toDouble(); }
|
2017-11-22 14:59:40 +01:00
|
|
|
else { jsonError = true; }
|
|
|
|
}
|
|
|
|
else { jsonIncomplete = true; }
|
|
|
|
if (locObject.contains("y"))
|
|
|
|
{
|
2017-12-12 04:45:46 +01:00
|
|
|
if (locObject["y"].isDouble()) { localProperties.location.y = locObject["y"].toDouble(); }
|
2017-11-22 14:59:40 +01:00
|
|
|
else { jsonError = true; }
|
|
|
|
}
|
|
|
|
else { jsonIncomplete = true; }
|
|
|
|
if (locObject.contains("z"))
|
|
|
|
{
|
2017-12-12 04:45:46 +01:00
|
|
|
if (locObject["z"].isDouble()) { localProperties.location.z = locObject["z"].toDouble(); }
|
2017-11-22 14:59:40 +01:00
|
|
|
else { jsonError = true; }
|
|
|
|
}
|
|
|
|
else { jsonIncomplete = true; }
|
|
|
|
}
|
|
|
|
else { jsonError = true; }
|
2017-10-09 08:35:48 +02:00
|
|
|
}
|
2017-11-22 14:59:40 +01:00
|
|
|
else { jsonIncomplete = true; }
|
2017-10-09 08:35:48 +02:00
|
|
|
if (jsonObject.contains("uid"))
|
|
|
|
{
|
2017-11-22 14:59:40 +01:00
|
|
|
bool uidOk;
|
2017-12-12 04:45:46 +01:00
|
|
|
localProperties.uid = jsonMap["uid"].toInt(&uidOk);
|
2017-11-22 14:59:40 +01:00
|
|
|
if (!uidOk) { jsonError = true; }
|
2017-10-09 08:35:48 +02:00
|
|
|
}
|
2017-11-22 14:59:40 +01:00
|
|
|
else { jsonIncomplete = true; }
|
2017-10-09 08:35:48 +02:00
|
|
|
if (jsonObject.contains("area"))
|
|
|
|
{
|
2017-12-12 04:45:46 +01:00
|
|
|
if (jsonObject["area"].isString()) { localProperties.location.area = jsonObject["area"].toString(); }
|
2017-11-22 14:59:40 +01:00
|
|
|
else { jsonError = true; }
|
2017-10-09 08:35:48 +02:00
|
|
|
}
|
2017-11-22 14:59:40 +01:00
|
|
|
else { jsonIncomplete = true; }
|
2017-10-09 08:35:48 +02:00
|
|
|
if (jsonObject.contains("crewid"))
|
|
|
|
{
|
2017-11-22 14:59:40 +01:00
|
|
|
bool crewIDOk;
|
2017-12-12 04:45:46 +01:00
|
|
|
localProperties.crewID = jsonMap["crewid"].toInt(&crewIDOk);
|
2017-11-22 14:59:40 +01:00
|
|
|
if (!crewIDOk) { jsonError = true; }
|
2017-10-09 08:35:48 +02:00
|
|
|
}
|
2017-11-22 14:59:40 +01:00
|
|
|
else { jsonIncomplete = true; }
|
|
|
|
if (jsonObject.contains("street"))
|
|
|
|
{
|
|
|
|
bool streetIDOk;
|
2017-12-12 04:45:46 +01:00
|
|
|
localProperties.streetID = jsonMap["street"].toInt(&streetIDOk);
|
2017-11-22 14:59:40 +01:00
|
|
|
if (!streetIDOk) { jsonError = true; }
|
|
|
|
}
|
|
|
|
else { jsonIncomplete = true; }
|
2017-10-09 08:35:48 +02:00
|
|
|
if (jsonObject.contains("creat"))
|
|
|
|
{
|
2017-11-22 14:59:40 +01:00
|
|
|
bool timestampOk;
|
2017-10-09 08:35:48 +02:00
|
|
|
QDateTime createdTimestamp;
|
2017-12-12 04:45:46 +01:00
|
|
|
localProperties.createdTimestamp = jsonMap["creat"].toUInt(×tampOk);
|
|
|
|
createdTimestamp.setTime_t(localProperties.createdTimestamp);
|
|
|
|
localProperties.createdDateTime = createdTimestamp;
|
2017-11-22 14:59:40 +01:00
|
|
|
if (!timestampOk) { jsonError = true; }
|
2017-10-09 08:35:48 +02:00
|
|
|
}
|
2017-11-22 14:59:40 +01:00
|
|
|
else { jsonIncomplete = true; }
|
2017-10-09 08:35:48 +02:00
|
|
|
if (jsonObject.contains("plyrs"))
|
|
|
|
{
|
2017-12-12 04:45:46 +01:00
|
|
|
if (jsonObject["plyrs"].isArray()) { localProperties.playersList = jsonMap["plyrs"].toStringList(); }
|
2017-11-22 14:59:40 +01:00
|
|
|
else { jsonError = true; }
|
2017-10-09 08:35:48 +02:00
|
|
|
}
|
2017-12-12 04:45:46 +01:00
|
|
|
// else { jsonIncomplete = true; } // 2016 Snapmatic pictures left out plyrs when none are captured, so don't force exists on that one
|
2017-10-09 08:35:48 +02:00
|
|
|
if (jsonObject.contains("meme"))
|
|
|
|
{
|
2017-12-12 04:45:46 +01:00
|
|
|
if (jsonObject["meme"].isBool()) { localProperties.isMeme = jsonObject["meme"].toBool(); }
|
2017-11-22 14:59:40 +01:00
|
|
|
else { jsonError = true; }
|
2017-10-09 08:35:48 +02:00
|
|
|
}
|
2017-11-22 14:59:40 +01:00
|
|
|
else { jsonIncomplete = true; }
|
2017-10-09 08:35:48 +02:00
|
|
|
if (jsonObject.contains("mug"))
|
|
|
|
{
|
2017-12-12 04:45:46 +01:00
|
|
|
if (jsonObject["mug"].isBool()) { localProperties.isMug = jsonObject["mug"].toBool(); }
|
2017-11-22 14:59:40 +01:00
|
|
|
else { jsonError = true; }
|
2017-10-09 08:35:48 +02:00
|
|
|
}
|
2017-11-22 14:59:40 +01:00
|
|
|
else { jsonIncomplete = true; }
|
2017-10-09 08:35:48 +02:00
|
|
|
if (jsonObject.contains("slf"))
|
|
|
|
{
|
2017-12-12 04:45:46 +01:00
|
|
|
if (jsonObject["slf"].isBool()) { localProperties.isSelfie = jsonObject["slf"].toBool(); }
|
2017-11-22 14:59:40 +01:00
|
|
|
else { jsonError = true; }
|
2017-10-09 08:35:48 +02:00
|
|
|
}
|
2017-11-22 14:59:40 +01:00
|
|
|
else { jsonIncomplete = true; }
|
2017-10-09 08:35:48 +02:00
|
|
|
if (jsonObject.contains("drctr"))
|
|
|
|
{
|
2017-12-12 04:45:46 +01:00
|
|
|
if (jsonObject["drctr"].isBool()) { localProperties.isFromDirector = jsonObject["drctr"].toBool(); }
|
2017-11-22 14:59:40 +01:00
|
|
|
else { jsonError = true; }
|
2017-10-09 08:35:48 +02:00
|
|
|
}
|
2017-11-22 14:59:40 +01:00
|
|
|
else { jsonIncomplete = true; }
|
2017-10-09 08:35:48 +02:00
|
|
|
if (jsonObject.contains("rsedtr"))
|
|
|
|
{
|
2017-12-12 04:45:46 +01:00
|
|
|
if (jsonObject["rsedtr"].isBool()) { localProperties.isFromRSEditor = jsonObject["rsedtr"].toBool(); }
|
2017-11-22 14:59:40 +01:00
|
|
|
else { jsonError = true; }
|
2017-10-09 08:35:48 +02:00
|
|
|
}
|
2018-07-12 10:52:33 +02:00
|
|
|
// else { jsonIncomplete = true; } // Game release Snapmatic pictures prior May 2015 left out rsedtr, so don't force exists on that one
|
2017-10-09 08:35:48 +02:00
|
|
|
|
2017-11-22 14:59:40 +01:00
|
|
|
if (!jsonIncomplete && !jsonError)
|
|
|
|
{
|
|
|
|
jsonOk = true;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2017-12-12 04:45:46 +01:00
|
|
|
if (jsonIncomplete && jsonError)
|
|
|
|
{
|
2018-05-24 22:32:00 +02:00
|
|
|
lastStep = "2;/4,ReadingFile," % convertDrawStringForLog(picFilePath) % ",3,JSONINCOMPLETE,JSONERROR";
|
2017-12-12 04:45:46 +01:00
|
|
|
}
|
|
|
|
else if (jsonIncomplete)
|
|
|
|
{
|
2018-05-24 22:32:00 +02:00
|
|
|
lastStep = "2;/3,ReadingFile," % convertDrawStringForLog(picFilePath) % ",3,JSONINCOMPLETE";
|
2017-12-12 04:45:46 +01:00
|
|
|
}
|
|
|
|
else if (jsonError)
|
|
|
|
{
|
2018-05-24 22:32:00 +02:00
|
|
|
lastStep = "2;/3,ReadingFile," % convertDrawStringForLog(picFilePath) % ",3,JSONERROR";
|
2017-12-12 04:45:46 +01:00
|
|
|
}
|
2017-11-22 14:59:40 +01:00
|
|
|
jsonOk = false;
|
|
|
|
}
|
2017-10-09 08:35:48 +02:00
|
|
|
}
|
|
|
|
|
2017-12-12 04:45:46 +01:00
|
|
|
bool SnapmaticPicture::setSnapmaticProperties(SnapmaticProperties properties)
|
2017-10-09 08:35:48 +02:00
|
|
|
{
|
|
|
|
QJsonDocument jsonDocument = QJsonDocument::fromJson(jsonStr.toUtf8());
|
|
|
|
QJsonObject jsonObject = jsonDocument.object();
|
|
|
|
|
|
|
|
QJsonObject locObject;
|
2017-12-12 04:45:46 +01:00
|
|
|
locObject["x"] = properties.location.x;
|
|
|
|
locObject["y"] = properties.location.y;
|
|
|
|
locObject["z"] = properties.location.z;
|
2017-10-09 08:35:48 +02:00
|
|
|
|
|
|
|
jsonObject["loc"] = locObject;
|
2017-12-12 04:45:46 +01:00
|
|
|
jsonObject["uid"] = properties.uid;
|
|
|
|
jsonObject["area"] = properties.location.area;
|
|
|
|
jsonObject["crewid"] = properties.crewID;
|
|
|
|
jsonObject["street"] = properties.streetID;
|
|
|
|
jsonObject["creat"] = QJsonValue::fromVariant(properties.createdTimestamp);
|
|
|
|
jsonObject["plyrs"] = QJsonValue::fromVariant(properties.playersList);
|
|
|
|
jsonObject["meme"] = properties.isMeme;
|
|
|
|
jsonObject["mug"] = properties.isMug;
|
|
|
|
jsonObject["slf"] = properties.isSelfie;
|
|
|
|
jsonObject["drctr"] = properties.isFromDirector;
|
|
|
|
jsonObject["rsedtr"] = properties.isFromRSEditor;
|
2017-10-09 08:35:48 +02:00
|
|
|
|
|
|
|
jsonDocument.setObject(jsonObject);
|
|
|
|
|
|
|
|
if (setJsonStr(QString::fromUtf8(jsonDocument.toJson(QJsonDocument::Compact))))
|
|
|
|
{
|
2017-12-12 04:45:46 +01:00
|
|
|
localProperties = properties;
|
2017-10-09 08:35:48 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2017-11-22 14:59:40 +01:00
|
|
|
bool SnapmaticPicture::setJsonStr(const QString &newJsonStr, bool updateProperties)
|
2017-10-09 08:35:48 +02:00
|
|
|
{
|
|
|
|
if (newJsonStr.length() < jsonStreamEditorLength)
|
|
|
|
{
|
|
|
|
if (writeEnabled)
|
|
|
|
{
|
|
|
|
QByteArray jsonByteArray = newJsonStr.toUtf8();
|
|
|
|
while (jsonByteArray.length() != jsonStreamEditorLength)
|
|
|
|
{
|
|
|
|
jsonByteArray += '\x00';
|
|
|
|
}
|
|
|
|
if (lowRamMode) { rawPicContent = qUncompress(rawPicContent); }
|
|
|
|
QBuffer snapmaticStream(&rawPicContent);
|
|
|
|
snapmaticStream.open(QIODevice::ReadWrite);
|
|
|
|
if (!snapmaticStream.seek(jsonStreamEditorBegin))
|
|
|
|
{
|
|
|
|
snapmaticStream.close();
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
int result = snapmaticStream.write(jsonByteArray);
|
|
|
|
snapmaticStream.close();
|
|
|
|
if (result != 0)
|
|
|
|
{
|
|
|
|
jsonStr = newJsonStr;
|
|
|
|
if (lowRamMode) { rawPicContent = qCompress(rawPicContent, 9); }
|
2017-11-22 14:59:40 +01:00
|
|
|
if (updateProperties) { parseJsonContent(); }
|
2017-10-09 08:35:48 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (lowRamMode) { rawPicContent = qCompress(rawPicContent, 9); }
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// FILE MANAGEMENT
|
|
|
|
|
|
|
|
bool SnapmaticPicture::exportPicture(const QString &fileName, SnapmaticFormat format_)
|
|
|
|
{
|
|
|
|
// Keep current format when Auto_Format is used
|
|
|
|
SnapmaticFormat format = format_;
|
|
|
|
if (format_ == SnapmaticFormat::Auto_Format)
|
|
|
|
{
|
|
|
|
if (isCustomFormat)
|
|
|
|
{
|
|
|
|
format = SnapmaticFormat::G5E_Format;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
format = SnapmaticFormat::PGTA_Format;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-10-12 22:21:45 +02:00
|
|
|
bool saveSuccess = false;
|
|
|
|
bool writeFailure = false;
|
|
|
|
#if QT_VERSION >= 0x050000
|
|
|
|
QSaveFile *picFile = new QSaveFile(fileName);
|
|
|
|
#else
|
|
|
|
QFile *picFile = new QFile(StandardPaths::tempLocation() % "/" % QFileInfo(fileName).fileName() % ".tmp");
|
|
|
|
#endif
|
2017-10-09 08:35:48 +02:00
|
|
|
if (picFile->open(QIODevice::WriteOnly))
|
|
|
|
{
|
|
|
|
if (format == SnapmaticFormat::G5E_Format)
|
|
|
|
{
|
2018-06-14 12:28:12 +02:00
|
|
|
// Modern compressed export (v2)
|
2017-10-09 08:35:48 +02:00
|
|
|
QByteArray g5eHeader;
|
2018-06-14 12:28:12 +02:00
|
|
|
g5eHeader.reserve(10);
|
2017-10-09 08:35:48 +02:00
|
|
|
g5eHeader += '\x00'; // First Null Byte
|
|
|
|
g5eHeader += QByteArray("G5E"); // GTA 5 Export
|
2018-06-14 12:28:12 +02:00
|
|
|
g5eHeader += '\x32'; g5eHeader += '\x00'; // 2 byte GTA 5 Export Version
|
|
|
|
g5eHeader += '\x00'; g5eHeader += '\x01'; // 2 byte GTA 5 Export Type
|
2017-10-12 22:21:45 +02:00
|
|
|
if (picFile->write(g5eHeader) == -1) { writeFailure = true; }
|
2017-10-09 08:35:48 +02:00
|
|
|
if (!lowRamMode)
|
|
|
|
{
|
2017-10-12 22:21:45 +02:00
|
|
|
if (picFile->write(qCompress(rawPicContent, 9)) == -1) { writeFailure = true; } // Compressed Snapmatic
|
2017-10-09 08:35:48 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2017-10-12 22:21:45 +02:00
|
|
|
if (picFile->write(rawPicContent) == -1) { writeFailure = true; }
|
2017-10-09 08:35:48 +02:00
|
|
|
}
|
2017-10-12 22:21:45 +02:00
|
|
|
#if QT_VERSION >= 0x050000
|
|
|
|
if (writeFailure) { picFile->cancelWriting(); }
|
|
|
|
else { saveSuccess = picFile->commit(); }
|
|
|
|
#else
|
|
|
|
if (!writeFailure) { saveSuccess = true; }
|
2017-10-09 08:35:48 +02:00
|
|
|
picFile->close();
|
2017-10-12 22:21:45 +02:00
|
|
|
#endif
|
2017-10-09 08:35:48 +02:00
|
|
|
delete picFile;
|
|
|
|
}
|
|
|
|
else if (format == SnapmaticFormat::JPEG_Format)
|
|
|
|
{
|
|
|
|
// JPEG export
|
|
|
|
QBuffer snapmaticStream(&rawPicContent);
|
|
|
|
snapmaticStream.open(QIODevice::ReadOnly);
|
|
|
|
if (snapmaticStream.seek(jpegStreamEditorBegin))
|
|
|
|
{
|
|
|
|
QByteArray jpegRawContent = snapmaticStream.read(jpegPicStreamLength);
|
|
|
|
if (jpegRawContentSizeE != 0)
|
|
|
|
{
|
|
|
|
jpegRawContent = jpegRawContent.left(jpegRawContentSizeE);
|
|
|
|
}
|
2017-10-12 22:21:45 +02:00
|
|
|
if (picFile->write(jpegRawContent) == -1) { writeFailure = true; }
|
|
|
|
#if QT_VERSION >= 0x050000
|
|
|
|
if (writeFailure) { picFile->cancelWriting(); }
|
|
|
|
else { saveSuccess = picFile->commit(); }
|
|
|
|
#else
|
|
|
|
if (!writeFailure) { saveSuccess = true; }
|
|
|
|
picFile->close();
|
|
|
|
#endif
|
2017-10-09 08:35:48 +02:00
|
|
|
}
|
|
|
|
delete picFile;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// Classic straight export
|
|
|
|
if (!lowRamMode)
|
|
|
|
{
|
2017-10-12 22:21:45 +02:00
|
|
|
if (picFile->write(rawPicContent) == -1) { writeFailure = true; }
|
2017-10-09 08:35:48 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2017-10-12 22:21:45 +02:00
|
|
|
if (picFile->write(qUncompress(rawPicContent)) == -1) { writeFailure = true; }
|
2017-10-09 08:35:48 +02:00
|
|
|
}
|
2017-10-12 22:21:45 +02:00
|
|
|
#if QT_VERSION >= 0x050000
|
|
|
|
if (writeFailure) { picFile->cancelWriting(); }
|
|
|
|
else { saveSuccess = picFile->commit(); }
|
|
|
|
#else
|
|
|
|
if (!writeFailure) { saveSuccess = true; }
|
2017-10-09 08:35:48 +02:00
|
|
|
picFile->close();
|
2017-10-12 22:21:45 +02:00
|
|
|
#endif
|
2017-10-09 08:35:48 +02:00
|
|
|
delete picFile;
|
|
|
|
}
|
2017-10-12 22:21:45 +02:00
|
|
|
#if QT_VERSION <= 0x050000
|
|
|
|
if (saveSuccess)
|
|
|
|
{
|
|
|
|
bool tempBakCreated = false;
|
|
|
|
if (QFile::exists(fileName))
|
|
|
|
{
|
|
|
|
if (!QFile::rename(fileName, fileName % ".tmp"))
|
|
|
|
{
|
|
|
|
QFile::remove(StandardPaths::tempLocation() % "/" % QFileInfo(fileName).fileName() % ".tmp");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
tempBakCreated = true;
|
|
|
|
}
|
|
|
|
if (!QFile::rename(StandardPaths::tempLocation() % "/" % QFileInfo(fileName).fileName() % ".tmp", fileName))
|
|
|
|
{
|
|
|
|
QFile::remove(StandardPaths::tempLocation() % "/" % QFileInfo(fileName).fileName() % ".tmp");
|
|
|
|
if (tempBakCreated) { QFile::rename(fileName % ".tmp", fileName); }
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if (tempBakCreated) { QFile::remove(fileName % ".tmp"); }
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
return saveSuccess;
|
2017-10-09 08:35:48 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
delete picFile;
|
2017-10-12 22:21:45 +02:00
|
|
|
return saveSuccess;
|
2017-10-09 08:35:48 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void SnapmaticPicture::setPicFileName(const QString &picFileName_)
|
|
|
|
{
|
|
|
|
picFileName = picFileName_;
|
|
|
|
}
|
|
|
|
|
|
|
|
void SnapmaticPicture::setPicFilePath(const QString &picFilePath_)
|
|
|
|
{
|
|
|
|
picFilePath = picFilePath_;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool SnapmaticPicture::deletePicFile()
|
|
|
|
{
|
|
|
|
if (!QFile::exists(picFilePath)) return true;
|
|
|
|
if (QFile::remove(picFilePath)) return true;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// VISIBILITY
|
|
|
|
|
|
|
|
bool SnapmaticPicture::isHidden()
|
|
|
|
{
|
|
|
|
if (picFilePath.right(7) == QLatin1String(".hidden"))
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2017-12-12 04:45:46 +01:00
|
|
|
bool SnapmaticPicture::isVisible()
|
|
|
|
{
|
|
|
|
if (picFilePath.right(7) == QLatin1String(".hidden"))
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2017-10-09 08:35:48 +02:00
|
|
|
bool SnapmaticPicture::setPictureHidden()
|
|
|
|
{
|
|
|
|
if (isCustomFormat)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if (!isHidden())
|
|
|
|
{
|
|
|
|
QString newPicFilePath = QString(picFilePath % ".hidden");
|
|
|
|
if (QFile::rename(picFilePath, newPicFilePath))
|
|
|
|
{
|
|
|
|
picFilePath = newPicFilePath;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool SnapmaticPicture::setPictureVisible()
|
|
|
|
{
|
|
|
|
if (isCustomFormat)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if (isHidden())
|
|
|
|
{
|
|
|
|
QString newPicFilePath = QString(picFilePath).remove(picFilePath.length() - 7, 7);
|
|
|
|
if (QFile::rename(picFilePath, newPicFilePath))
|
|
|
|
{
|
|
|
|
picFilePath = newPicFilePath;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
// PREDEFINED PROPERTIES
|
|
|
|
|
|
|
|
QSize SnapmaticPicture::getSnapmaticResolution()
|
|
|
|
{
|
|
|
|
return snapmaticResolution;
|
|
|
|
}
|
|
|
|
|
|
|
|
// SNAPMATIC DEFAULTS
|
|
|
|
|
|
|
|
bool SnapmaticPicture::isSnapmaticDefaultsEnforced()
|
|
|
|
{
|
|
|
|
return careSnapDefault;
|
|
|
|
}
|
|
|
|
|
|
|
|
void SnapmaticPicture::setSnapmaticDefaultsEnforced(bool enforced)
|
|
|
|
{
|
|
|
|
careSnapDefault = enforced;
|
|
|
|
}
|
|
|
|
|
2017-11-22 20:23:36 +01:00
|
|
|
// SNAPMATIC FORMAT
|
|
|
|
|
|
|
|
SnapmaticFormat SnapmaticPicture::getSnapmaticFormat()
|
|
|
|
{
|
|
|
|
if (isCustomFormat)
|
|
|
|
{
|
|
|
|
return SnapmaticFormat::G5E_Format;
|
|
|
|
}
|
|
|
|
return SnapmaticFormat::PGTA_Format;
|
|
|
|
}
|
|
|
|
|
|
|
|
void SnapmaticPicture::setSnapmaticFormat(SnapmaticFormat format)
|
|
|
|
{
|
|
|
|
if (format == SnapmaticFormat::G5E_Format)
|
|
|
|
{
|
|
|
|
isCustomFormat = true;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
else if (format == SnapmaticFormat::PGTA_Format)
|
|
|
|
{
|
|
|
|
isCustomFormat = false;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
qDebug() << "setSnapmaticFormat: Invalid SnapmaticFormat defined, valid SnapmaticFormats are G5E_Format and PGTA_Format";
|
|
|
|
}
|
|
|
|
|
|
|
|
bool SnapmaticPicture::isFormatSwitched()
|
|
|
|
{
|
|
|
|
return isFormatSwitch;
|
|
|
|
}
|
|
|
|
|
2017-10-09 08:35:48 +02:00
|
|
|
// VERIFY CONTENT
|
|
|
|
|
|
|
|
bool SnapmaticPicture::verifyTitle(const QString &title)
|
|
|
|
{
|
|
|
|
// VERIFY TITLE FOR BE A VALID SNAPMATIC TITLE
|
2017-12-17 13:03:43 +01:00
|
|
|
if (title.length() <= titlStreamCharacterMax && title.length() > 0)
|
2017-10-09 08:35:48 +02:00
|
|
|
{
|
2018-05-24 22:32:00 +02:00
|
|
|
for (const QChar &titleChar : title)
|
2017-10-09 08:35:48 +02:00
|
|
|
{
|
|
|
|
if (!verifyTitleChar(titleChar)) return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool SnapmaticPicture::verifyTitleChar(const QChar &titleChar)
|
|
|
|
{
|
|
|
|
// VERIFY CHAR FOR BE A VALID SNAPMATIC CHARACTER
|
|
|
|
if (titleChar.isLetterOrNumber() || titleChar.isPrint())
|
|
|
|
{
|
|
|
|
if (titleChar == '<' || titleChar == '>' || titleChar == '\\') return false;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
2018-05-24 22:32:00 +02:00
|
|
|
|
|
|
|
// STRING OPERATIONS
|
|
|
|
|
|
|
|
QString SnapmaticPicture::parseTitleString(const QByteArray &commitBytes, int maxLength)
|
|
|
|
{
|
|
|
|
Q_UNUSED(maxLength)
|
|
|
|
QString retStr = QTextCodec::codecForName("UTF-16LE")->toUnicode(commitBytes).trimmed();
|
|
|
|
retStr.remove(QChar('\x00'));
|
|
|
|
return retStr;
|
|
|
|
}
|
|
|
|
|
|
|
|
QString SnapmaticPicture::convertDrawStringForLog(const QString &inputStr)
|
|
|
|
{
|
|
|
|
QString outputStr = inputStr;
|
|
|
|
return outputStr.replace("&","&u;").replace(",", "&c;");
|
|
|
|
}
|
|
|
|
|
|
|
|
QString SnapmaticPicture::convertLogStringForDraw(const QString &inputStr)
|
|
|
|
{
|
|
|
|
QString outputStr = inputStr;
|
|
|
|
return outputStr.replace("&c;",",").replace("&u;", "&");
|
|
|
|
}
|