2016-02-26 22:22:34 +01:00
|
|
|
/*****************************************************************************
|
|
|
|
* gta5sync GRAND THEFT AUTO V SYNC
|
2017-02-11 04:21:55 +01:00
|
|
|
* Copyright (C) 2016-2017 Syping
|
2016-02-26 22:22:34 +01:00
|
|
|
*
|
2016-03-21 07:54:14 +01: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.
|
2016-02-26 22:22:34 +01:00
|
|
|
*
|
2016-03-21 07:54:14 +01:00
|
|
|
* 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.
|
2016-02-26 22:22:34 +01:00
|
|
|
*
|
2016-03-21 07:54:14 +01:00
|
|
|
* 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-02-26 22:22:34 +01:00
|
|
|
*****************************************************************************/
|
|
|
|
|
2016-03-20 21:57:18 +01:00
|
|
|
#include "SnapmaticPicture.h"
|
2016-03-31 23:41:53 +02:00
|
|
|
#include "StringParser.h"
|
2016-03-21 21:33:22 +01:00
|
|
|
#include <QJsonDocument>
|
|
|
|
#include <QJsonObject>
|
2016-04-06 04:22:30 +02:00
|
|
|
#include <QStringList>
|
2016-03-21 21:33:22 +01:00
|
|
|
#include <QVariantMap>
|
|
|
|
#include <QJsonArray>
|
2017-01-27 04:33:27 +01:00
|
|
|
#include <QFileInfo>
|
2017-02-17 12:07:37 +01:00
|
|
|
#include <QPainter>
|
2016-03-21 03:10:28 +01:00
|
|
|
#include <QString>
|
2016-07-22 16:06:36 +02:00
|
|
|
#include <QBuffer>
|
|
|
|
#include <QDebug>
|
2016-03-27 09:52:23 +02:00
|
|
|
#include <QImage>
|
2016-03-21 03:10:28 +01:00
|
|
|
#include <QFile>
|
2016-02-26 22:22:34 +01:00
|
|
|
|
2017-02-25 06:30:37 +01:00
|
|
|
// PARSER ALLOCATIONS
|
|
|
|
#define snapmaticHeaderLength 278
|
|
|
|
#define snapmaticUsefulLength 260
|
|
|
|
#define snapmaticFileMaxSize 528192
|
|
|
|
#define jpegHeaderLineDifStr 2
|
|
|
|
#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
|
|
|
|
|
2017-02-11 04:21:55 +01:00
|
|
|
SnapmaticPicture::SnapmaticPicture(const QString &fileName, QObject *parent) : QObject(parent), picFilePath(fileName)
|
2016-02-26 22:22:34 +01:00
|
|
|
{
|
2017-02-17 12:07:37 +01:00
|
|
|
// PREDEFINED PROPERTIES
|
|
|
|
snapmaticResolution = QSize(960, 536);
|
|
|
|
|
2017-02-11 04:21:55 +01:00
|
|
|
reset();
|
|
|
|
}
|
|
|
|
|
|
|
|
SnapmaticPicture::~SnapmaticPicture()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void SnapmaticPicture::reset()
|
|
|
|
{
|
2016-03-21 21:46:36 +01:00
|
|
|
// INIT PIC
|
2017-02-25 06:30:37 +01:00
|
|
|
rawPicContent = "";
|
2017-02-17 12:07:37 +01:00
|
|
|
cachePicture = QImage(0, 0, QImage::Format_RGB888);
|
2017-02-11 04:21:55 +01:00
|
|
|
jpegRawContentSize = 0;
|
2016-04-06 04:22:30 +02:00
|
|
|
picExportFileName = "";
|
2017-02-11 04:21:55 +01:00
|
|
|
isCustomFormat = 0;
|
|
|
|
pictureHead = "";
|
2016-03-21 03:10:28 +01:00
|
|
|
pictureStr = "";
|
|
|
|
lastStep = "";
|
2016-04-06 04:22:30 +02:00
|
|
|
sortStr = "";
|
|
|
|
titlStr = "";
|
|
|
|
descStr = "";
|
2016-03-21 22:29:57 +01:00
|
|
|
picOk = 0;
|
2016-03-21 21:46:36 +01:00
|
|
|
|
|
|
|
// INIT JSON
|
2016-03-21 22:29:57 +01:00
|
|
|
jsonOk = 0;
|
2016-03-21 03:10:28 +01:00
|
|
|
jsonStr = "";
|
2017-02-17 12:07:37 +01:00
|
|
|
|
|
|
|
// SNAPMATIC PROPERTIES
|
|
|
|
localSpJson = {};
|
2016-03-21 03:10:28 +01:00
|
|
|
}
|
|
|
|
|
2017-02-17 12:07:37 +01:00
|
|
|
bool SnapmaticPicture::readingPicture(bool writeEnabled_, bool cacheEnabled_, bool fastLoad)
|
2016-03-21 03:10:28 +01:00
|
|
|
{
|
|
|
|
// Start opening file
|
|
|
|
// lastStep is like currentStep
|
|
|
|
|
2016-07-23 00:13:57 +02:00
|
|
|
// Set boolean values
|
|
|
|
writeEnabled = writeEnabled_;
|
2016-12-09 23:13:21 +01:00
|
|
|
cacheEnabled = cacheEnabled_;
|
2016-07-23 00:13:57 +02:00
|
|
|
|
2017-02-11 04:21:55 +01:00
|
|
|
QFile *picFile = new QFile(picFilePath);
|
|
|
|
picFileName = QFileInfo(picFilePath).fileName();
|
|
|
|
|
2016-07-22 16:06:36 +02:00
|
|
|
QIODevice *picStream;
|
|
|
|
|
2016-03-21 03:10:28 +01:00
|
|
|
if (!picFile->open(QFile::ReadOnly))
|
|
|
|
{
|
2017-02-11 04:21:55 +01:00
|
|
|
lastStep = "1;/1,OpenFile," + StringParser::convertDrawStringForLog(picFilePath);
|
2016-03-28 15:24:09 +02:00
|
|
|
picFile->deleteLater();
|
|
|
|
delete picFile;
|
2016-03-21 03:10:28 +01:00
|
|
|
return false;
|
|
|
|
}
|
2017-01-27 04:33:27 +01:00
|
|
|
|
2017-02-11 04:21:55 +01:00
|
|
|
if (picFilePath.right(4) != ".g5e")
|
2017-01-27 04:33:27 +01:00
|
|
|
{
|
|
|
|
rawPicContent = picFile->read(snapmaticFileMaxSize);
|
|
|
|
picFile->close();
|
|
|
|
delete picFile;
|
2017-02-11 04:21:55 +01:00
|
|
|
|
|
|
|
// Set Custom Format
|
|
|
|
isCustomFormat = false;
|
2017-01-27 04:33:27 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
QByteArray g5eContent = picFile->read(snapmaticFileMaxSize + 1024);
|
|
|
|
picFile->close();
|
|
|
|
delete picFile;
|
|
|
|
|
2017-02-11 04:21:55 +01:00
|
|
|
// Set Custom Format
|
|
|
|
isCustomFormat = true;
|
|
|
|
|
2017-01-27 04:33:27 +01:00
|
|
|
// Reading g5e Content
|
|
|
|
g5eContent.remove(0, 1);
|
|
|
|
if (g5eContent.left(3) == "G5E")
|
|
|
|
{
|
|
|
|
g5eContent.remove(0, 3);
|
|
|
|
if (g5eContent.left(2).toHex() == "1000")
|
|
|
|
{
|
|
|
|
g5eContent.remove(0, 2);
|
|
|
|
if (g5eContent.left(3) == "LEN")
|
|
|
|
{
|
|
|
|
g5eContent.remove(0, 3);
|
|
|
|
int fileNameLength = g5eContent.left(1).toHex().toInt();
|
|
|
|
g5eContent.remove(0, 1);
|
|
|
|
if (g5eContent.left(3) == "FIL")
|
|
|
|
{
|
|
|
|
g5eContent.remove(0, 3);
|
|
|
|
picFileName = g5eContent.left(fileNameLength);
|
|
|
|
g5eContent.remove(0, fileNameLength);
|
|
|
|
if (g5eContent.left(3) == "COM")
|
|
|
|
{
|
|
|
|
g5eContent.remove(0, 3);
|
|
|
|
rawPicContent = qUncompress(g5eContent);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2017-02-11 04:21:55 +01:00
|
|
|
lastStep = "2;/3,ReadingFile," + StringParser::convertDrawStringForLog(picFilePath) + ",4,G5E_FORMATERROR";
|
2017-01-27 04:33:27 +01:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2017-02-11 04:21:55 +01:00
|
|
|
lastStep = "2;/3,ReadingFile," + StringParser::convertDrawStringForLog(picFilePath) + ",3,G5E_FORMATERROR";
|
2017-01-27 04:33:27 +01:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2017-02-11 04:21:55 +01:00
|
|
|
lastStep = "2;/3,ReadingFile," + StringParser::convertDrawStringForLog(picFilePath) + ",2,G5E_FORMATERROR";
|
2017-01-27 04:33:27 +01:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2017-02-11 04:21:55 +01:00
|
|
|
lastStep = "2;/3,ReadingFile," + StringParser::convertDrawStringForLog(picFilePath) + ",1,G5E_NOTCOMPATIBLE";
|
2017-01-27 04:33:27 +01:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2017-02-11 04:21:55 +01:00
|
|
|
lastStep = "2;/3,ReadingFile," + StringParser::convertDrawStringForLog(picFilePath) + ",1,G5E_FORMATERROR";
|
2017-01-27 04:33:27 +01:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
2016-12-09 23:13:21 +01:00
|
|
|
|
2016-07-22 16:06:36 +02:00
|
|
|
picStream = new QBuffer(&rawPicContent);
|
|
|
|
picStream->open(QIODevice::ReadWrite);
|
2016-03-21 03:10:28 +01:00
|
|
|
|
|
|
|
// Reading Snapmatic Header
|
2016-07-22 16:06:36 +02:00
|
|
|
if (!picStream->isReadable())
|
2016-03-21 03:10:28 +01:00
|
|
|
{
|
2017-02-11 04:21:55 +01:00
|
|
|
lastStep = "2;/3,ReadingFile," + StringParser::convertDrawStringForLog(picFilePath) + ",1,NOHEADER";
|
2016-07-22 16:06:36 +02:00
|
|
|
picStream->close();
|
|
|
|
picStream->deleteLater();
|
2016-12-09 23:13:21 +01:00
|
|
|
delete picStream;
|
2016-03-21 03:10:28 +01:00
|
|
|
return false;
|
|
|
|
}
|
2016-07-22 16:06:36 +02:00
|
|
|
QByteArray snapmaticHeaderLine = picStream->read(snapmaticHeaderLength);
|
2017-02-11 04:21:55 +01:00
|
|
|
pictureHead = getSnapmaticHeaderString(snapmaticHeaderLine);
|
2016-03-21 03:10:28 +01:00
|
|
|
|
|
|
|
// Reading JPEG Header Line
|
2016-07-22 16:06:36 +02:00
|
|
|
if (!picStream->isReadable())
|
2016-03-21 03:10:28 +01:00
|
|
|
{
|
2017-02-11 04:21:55 +01:00
|
|
|
lastStep = "2;/3,ReadingFile," + StringParser::convertDrawStringForLog(picFilePath) + ",2,NOHEADER";
|
2016-07-22 16:06:36 +02:00
|
|
|
picStream->close();
|
|
|
|
picStream->deleteLater();
|
2016-12-09 23:13:21 +01:00
|
|
|
delete picStream;
|
2016-03-21 03:10:28 +01:00
|
|
|
return false;
|
|
|
|
}
|
2016-07-22 16:06:36 +02:00
|
|
|
QByteArray jpegHeaderLine = picStream->read(jpegPreHeaderLength);
|
2016-03-21 03:10:28 +01:00
|
|
|
|
|
|
|
// Checking for JPEG
|
2016-03-21 21:46:36 +01:00
|
|
|
jpegHeaderLine.remove(0, jpegHeaderLineDifStr);
|
2016-03-21 03:10:28 +01:00
|
|
|
if (jpegHeaderLine.left(4) != "JPEG")
|
|
|
|
{
|
2017-02-11 04:21:55 +01:00
|
|
|
lastStep = "2;/3,ReadingFile," + StringParser::convertDrawStringForLog(picFilePath) + ",2,NOJPEG";
|
2016-07-22 16:06:36 +02:00
|
|
|
picStream->close();
|
|
|
|
picStream->deleteLater();
|
2016-12-09 23:13:21 +01:00
|
|
|
delete picStream;
|
2016-03-21 03:10:28 +01:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2016-03-21 07:54:14 +01:00
|
|
|
// Read JPEG Stream
|
2016-07-22 16:06:36 +02:00
|
|
|
if (!picStream->isReadable())
|
2016-03-21 07:54:14 +01:00
|
|
|
{
|
2017-02-11 04:21:55 +01:00
|
|
|
lastStep = "2;/3,ReadingFile," + StringParser::convertDrawStringForLog(picFilePath) + ",2,NOPIC";
|
2016-07-22 16:06:36 +02:00
|
|
|
picStream->close();
|
|
|
|
picStream->deleteLater();
|
2016-12-09 23:13:21 +01:00
|
|
|
delete picStream;
|
2016-03-21 07:54:14 +01:00
|
|
|
return false;
|
|
|
|
}
|
2016-07-22 16:06:36 +02:00
|
|
|
QByteArray jpegRawContent = picStream->read(jpegPicStreamLength);
|
2017-02-11 04:21:55 +01:00
|
|
|
if (jpegRawContent.contains(QByteArray::fromHex("FFD9")))
|
|
|
|
{
|
|
|
|
int jpegRawContentSizeT = jpegRawContent.indexOf(QByteArray::fromHex("FFD9")) + 2;
|
|
|
|
jpegRawContentSize = jpegRawContentSizeT;
|
|
|
|
if (jpegRawContent.contains(QByteArray::fromHex("FF454F49")))
|
|
|
|
{
|
|
|
|
jpegRawContentSizeT = jpegRawContent.indexOf(QByteArray::fromHex("FF454F49"));
|
|
|
|
}
|
|
|
|
jpegRawContent = jpegRawContent.left(jpegRawContentSize);
|
|
|
|
jpegRawContentSize = jpegRawContentSizeT;
|
|
|
|
}
|
2016-12-09 23:13:21 +01:00
|
|
|
if (cacheEnabled) picOk = cachePicture.loadFromData(jpegRawContent, "JPEG");
|
|
|
|
if (!cacheEnabled)
|
|
|
|
{
|
|
|
|
QImage tempPicture;
|
|
|
|
picOk = tempPicture.loadFromData(jpegRawContent, "JPEG");
|
|
|
|
}
|
2017-02-17 12:07:37 +01:00
|
|
|
else if (!fastLoad)
|
|
|
|
{
|
|
|
|
QImage tempPicture = QImage(snapmaticResolution, QImage::Format_RGB888);
|
|
|
|
QPainter tempPainter(&tempPicture);
|
|
|
|
if (cachePicture.size() == snapmaticResolution)
|
|
|
|
{
|
|
|
|
tempPainter.drawImage(0, 0, cachePicture);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
tempPainter.drawImage(0, 0, cachePicture.scaled(snapmaticResolution, Qt::IgnoreAspectRatio, Qt::SmoothTransformation));
|
|
|
|
}
|
|
|
|
tempPainter.end();
|
|
|
|
cachePicture = tempPicture;
|
|
|
|
}
|
2016-03-21 07:54:14 +01:00
|
|
|
|
|
|
|
// Read JSON Stream
|
2016-07-22 16:06:36 +02:00
|
|
|
if (!picStream->isReadable())
|
2016-03-21 07:54:14 +01:00
|
|
|
{
|
2017-02-11 04:21:55 +01:00
|
|
|
lastStep = "2;/3,ReadingFile," + StringParser::convertDrawStringForLog(picFilePath) + ",3,NOJSON";
|
2016-07-22 16:06:36 +02:00
|
|
|
picStream->close();
|
|
|
|
picStream->deleteLater();
|
2016-12-09 23:13:21 +01:00
|
|
|
delete picStream;
|
2017-02-11 04:21:55 +01:00
|
|
|
return false;
|
2016-03-21 07:54:14 +01:00
|
|
|
}
|
2016-07-22 16:06:36 +02:00
|
|
|
else if (picStream->read(4) != "JSON")
|
2016-03-21 07:54:14 +01:00
|
|
|
{
|
2017-02-11 04:21:55 +01:00
|
|
|
lastStep = "2;/3,ReadingFile," + StringParser::convertDrawStringForLog(picFilePath) + ",3,CTJSON";
|
2016-07-22 16:06:36 +02:00
|
|
|
picStream->close();
|
|
|
|
picStream->deleteLater();
|
2016-12-09 23:13:21 +01:00
|
|
|
delete picStream;
|
2017-02-11 04:21:55 +01:00
|
|
|
return false;
|
2016-03-21 07:54:14 +01:00
|
|
|
}
|
2016-07-22 16:06:36 +02:00
|
|
|
QByteArray jsonRawContent = picStream->read(jsonStreamLength);
|
2016-03-21 07:54:14 +01:00
|
|
|
jsonStr = getSnapmaticJSONString(jsonRawContent);
|
2016-03-21 21:33:22 +01:00
|
|
|
parseJsonContent(); // JSON parsing is own function
|
2016-03-21 07:54:14 +01:00
|
|
|
|
2016-07-22 16:06:36 +02:00
|
|
|
if (!picStream->isReadable())
|
2016-03-29 13:17:38 +02:00
|
|
|
{
|
2017-02-11 04:21:55 +01:00
|
|
|
lastStep = "2;/3,ReadingFile," + StringParser::convertDrawStringForLog(picFilePath) + ",4,NOTITL";
|
2016-07-22 16:06:36 +02:00
|
|
|
picStream->close();
|
|
|
|
picStream->deleteLater();
|
2016-12-09 23:13:21 +01:00
|
|
|
delete picStream;
|
2017-02-11 04:21:55 +01:00
|
|
|
return false;
|
2016-03-29 13:17:38 +02:00
|
|
|
}
|
2016-07-22 16:06:36 +02:00
|
|
|
else if (picStream->read(4) != "TITL")
|
2016-03-29 13:17:38 +02:00
|
|
|
{
|
2017-02-11 04:21:55 +01:00
|
|
|
lastStep = "2;/3,ReadingFile," + StringParser::convertDrawStringForLog(picFilePath) + ",4,CTTITL";
|
2016-07-22 16:06:36 +02:00
|
|
|
picStream->close();
|
|
|
|
picStream->deleteLater();
|
2016-12-09 23:13:21 +01:00
|
|
|
delete picStream;
|
2017-02-11 04:21:55 +01:00
|
|
|
return false;
|
2016-03-29 13:17:38 +02:00
|
|
|
}
|
2016-07-22 16:06:36 +02:00
|
|
|
QByteArray titlRawContent = picStream->read(tideStreamLength);
|
2016-03-29 13:17:38 +02:00
|
|
|
titlStr = getSnapmaticTIDEString(titlRawContent);
|
|
|
|
|
2016-07-22 16:06:36 +02:00
|
|
|
if (!picStream->isReadable())
|
2016-03-29 13:17:38 +02:00
|
|
|
{
|
2017-02-11 04:21:55 +01:00
|
|
|
lastStep = "2;/3,ReadingFile," + StringParser::convertDrawStringForLog(picFilePath) + ",5,NODESC";
|
2016-07-22 16:06:36 +02:00
|
|
|
picStream->close();
|
|
|
|
picStream->deleteLater();
|
2016-12-09 23:13:21 +01:00
|
|
|
delete picStream;
|
2016-03-29 13:17:38 +02:00
|
|
|
return picOk;
|
|
|
|
}
|
2016-07-22 16:06:36 +02:00
|
|
|
else if (picStream->read(4) != "DESC")
|
2016-03-29 13:17:38 +02:00
|
|
|
{
|
2017-02-11 04:21:55 +01:00
|
|
|
lastStep = "2;/3,ReadingFile," + StringParser::convertDrawStringForLog(picFilePath) + ",5,CTDESC";
|
2016-07-22 16:06:36 +02:00
|
|
|
picStream->close();
|
|
|
|
picStream->deleteLater();
|
2016-12-09 23:13:21 +01:00
|
|
|
delete picStream;
|
2017-02-11 04:21:55 +01:00
|
|
|
return false;
|
2016-03-29 13:17:38 +02:00
|
|
|
}
|
2016-07-22 16:06:36 +02:00
|
|
|
QByteArray descRawContent = picStream->read(tideStreamLength);
|
2016-03-29 13:17:38 +02:00
|
|
|
descStr = getSnapmaticTIDEString(descRawContent);
|
|
|
|
|
2017-02-11 04:21:55 +01:00
|
|
|
updateStrings();
|
2016-04-06 04:22:30 +02:00
|
|
|
|
2016-07-22 16:06:36 +02:00
|
|
|
picStream->close();
|
|
|
|
picStream->deleteLater();
|
|
|
|
delete picStream;
|
|
|
|
if (!writeEnabled) { rawPicContent.clear(); }
|
2016-03-21 22:29:57 +01:00
|
|
|
return picOk;
|
2016-03-21 03:10:28 +01:00
|
|
|
}
|
|
|
|
|
2017-02-11 04:21:55 +01:00
|
|
|
QString SnapmaticPicture::getSnapmaticHeaderString(const QByteArray &snapmaticHeader)
|
2016-03-21 03:10:28 +01:00
|
|
|
{
|
2016-03-31 23:41:53 +02:00
|
|
|
QByteArray snapmaticBytes = snapmaticHeader.left(snapmaticUsefulLength);
|
|
|
|
QList<QByteArray> snapmaticBytesList = snapmaticBytes.split(char(0x01));
|
|
|
|
snapmaticBytes = snapmaticBytesList.at(1);
|
|
|
|
snapmaticBytesList.clear();
|
|
|
|
return StringParser::parseTitleString(snapmaticBytes, snapmaticBytes.length());
|
2016-03-21 03:10:28 +01:00
|
|
|
}
|
|
|
|
|
2016-04-06 04:22:30 +02:00
|
|
|
QString SnapmaticPicture::getSnapmaticJSONString(const QByteArray &jsonBytes)
|
2016-03-21 07:54:14 +01:00
|
|
|
{
|
|
|
|
QByteArray jsonUsefulBytes = jsonBytes;
|
2016-03-29 13:27:21 +02:00
|
|
|
jsonUsefulBytes.replace((char)0x00, "");
|
|
|
|
jsonUsefulBytes.replace((char)0x0c, "");
|
2016-04-01 02:07:00 +02:00
|
|
|
return QString::fromUtf8(jsonUsefulBytes).trimmed();
|
2016-03-21 07:54:14 +01:00
|
|
|
}
|
|
|
|
|
2016-04-06 04:22:30 +02:00
|
|
|
QString SnapmaticPicture::getSnapmaticTIDEString(const QByteArray &tideBytes)
|
2016-03-29 13:17:38 +02:00
|
|
|
{
|
|
|
|
QByteArray tideUsefulBytes = tideBytes;
|
2016-04-01 02:07:00 +02:00
|
|
|
tideUsefulBytes.remove(0,4);
|
2016-03-29 13:29:14 +02:00
|
|
|
QList<QByteArray> tideUsefulBytesList = tideUsefulBytes.split(char(0x00));
|
2016-04-01 02:07:00 +02:00
|
|
|
return QString::fromUtf8(tideUsefulBytesList.at(0)).trimmed();
|
2016-03-29 13:17:38 +02:00
|
|
|
}
|
|
|
|
|
2017-02-11 04:21:55 +01:00
|
|
|
void SnapmaticPicture::updateStrings()
|
2016-04-06 04:22:30 +02:00
|
|
|
{
|
2017-02-11 04:21:55 +01:00
|
|
|
QString cmpPicTitl = titlStr;
|
|
|
|
cmpPicTitl.replace("\"", "''");
|
|
|
|
cmpPicTitl.replace(" ", "_");
|
|
|
|
cmpPicTitl.replace(":", "-");
|
|
|
|
cmpPicTitl.replace("\\", "");
|
2017-02-25 06:30:37 +01:00
|
|
|
cmpPicTitl.replace("{", "");
|
|
|
|
cmpPicTitl.replace("}", "");
|
2017-02-11 04:21:55 +01:00
|
|
|
cmpPicTitl.replace("/", "");
|
|
|
|
cmpPicTitl.replace("<", "");
|
|
|
|
cmpPicTitl.replace(">", "");
|
|
|
|
cmpPicTitl.replace("*", "");
|
|
|
|
cmpPicTitl.replace("?", "");
|
|
|
|
cmpPicTitl.replace(".", "");
|
|
|
|
pictureStr = tr("PHOTO - %1").arg(localSpJson.createdDateTime.toString("MM/dd/yy HH:mm:ss"));
|
|
|
|
sortStr = localSpJson.createdDateTime.toString("yyMMddHHmmss") + QString::number(localSpJson.uid);
|
|
|
|
picExportFileName = sortStr + "_" + cmpPicTitl;
|
2016-04-06 04:22:30 +02:00
|
|
|
}
|
|
|
|
|
2017-02-17 12:07:37 +01:00
|
|
|
bool SnapmaticPicture::readingPictureFromFile(const QString &fileName, bool writeEnabled_, bool cacheEnabled_, bool fastLoad)
|
2016-03-21 03:10:28 +01:00
|
|
|
{
|
|
|
|
if (fileName != "")
|
|
|
|
{
|
2017-02-11 04:21:55 +01:00
|
|
|
picFilePath = fileName;
|
2017-02-17 12:07:37 +01:00
|
|
|
return readingPicture(writeEnabled_, cacheEnabled_, fastLoad);
|
2016-03-21 03:10:28 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-02-11 04:21:55 +01:00
|
|
|
bool SnapmaticPicture::setImage(const QImage &picture) // dirty method
|
2016-03-21 03:10:28 +01:00
|
|
|
{
|
2016-07-23 00:13:57 +02:00
|
|
|
if (writeEnabled)
|
|
|
|
{
|
|
|
|
QByteArray picByteArray;
|
2017-02-11 04:21:55 +01:00
|
|
|
int comLvl = 100;
|
|
|
|
bool saveSuccess = false;
|
|
|
|
while (comLvl != 0 && !saveSuccess)
|
2016-07-23 00:13:57 +02:00
|
|
|
{
|
2017-02-11 04:21:55 +01:00
|
|
|
QByteArray picByteArrayT;
|
|
|
|
QBuffer picStreamT(&picByteArrayT);
|
|
|
|
picStreamT.open(QIODevice::WriteOnly);
|
|
|
|
saveSuccess = picture.save(&picStreamT, "JPEG", comLvl);
|
|
|
|
picStreamT.close();
|
|
|
|
if (saveSuccess)
|
2016-07-23 00:13:57 +02:00
|
|
|
{
|
2017-02-11 04:21:55 +01:00
|
|
|
if (picByteArrayT.length() > jpegRawContentSize)
|
2016-07-23 00:13:57 +02:00
|
|
|
{
|
2017-02-11 04:21:55 +01:00
|
|
|
comLvl--;
|
|
|
|
saveSuccess = false;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
picByteArray = picByteArrayT;
|
2016-07-23 00:13:57 +02:00
|
|
|
}
|
|
|
|
}
|
2016-12-10 05:56:09 +01:00
|
|
|
}
|
2017-02-11 04:21:55 +01:00
|
|
|
if (saveSuccess) return setPictureStream(picByteArray);
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool SnapmaticPicture::setPictureStream(const QByteArray &picByteArray_) // clean method
|
|
|
|
{
|
|
|
|
if (writeEnabled)
|
|
|
|
{
|
|
|
|
bool lvlEoi = false;
|
|
|
|
QByteArray picByteArray = picByteArray_;
|
|
|
|
QBuffer snapmaticStream(&rawPicContent);
|
|
|
|
snapmaticStream.open(QIODevice::ReadWrite);
|
|
|
|
if (!snapmaticStream.seek(jpegStreamEditorBegin)) return false;
|
|
|
|
if (picByteArray.length() > jpegPicStreamLength) return false;
|
|
|
|
if (picByteArray.length() < jpegRawContentSize && jpegRawContentSize + 4 < jpegPicStreamLength)
|
|
|
|
{
|
|
|
|
lvlEoi = true;
|
|
|
|
}
|
2016-12-10 05:56:09 +01:00
|
|
|
while (picByteArray.length() != jpegPicStreamLength)
|
|
|
|
{
|
|
|
|
picByteArray.append((char)0x00);
|
2016-07-23 00:13:57 +02:00
|
|
|
}
|
2017-02-11 04:21:55 +01:00
|
|
|
if (lvlEoi)
|
|
|
|
{
|
|
|
|
picByteArray.replace(jpegRawContentSize, 4, QByteArray::fromHex("FF454F49"));
|
|
|
|
}
|
2016-07-23 00:13:57 +02:00
|
|
|
int result = snapmaticStream.write(picByteArray);
|
|
|
|
if (result != 0)
|
|
|
|
{
|
2016-12-10 03:40:42 +01:00
|
|
|
if (cacheEnabled)
|
|
|
|
{
|
2017-02-11 04:21:55 +01:00
|
|
|
QImage replacedPicture;
|
|
|
|
replacedPicture.loadFromData(picByteArray);
|
|
|
|
cachePicture = replacedPicture;
|
2016-12-10 03:40:42 +01:00
|
|
|
}
|
2016-07-23 00:13:57 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2017-02-11 04:21:55 +01:00
|
|
|
bool SnapmaticPicture::setPictureTitl(const QString &newTitle_)
|
|
|
|
{
|
|
|
|
if (writeEnabled)
|
|
|
|
{
|
|
|
|
QString newTitle = newTitle_;
|
|
|
|
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.append((char)0x00);
|
|
|
|
}
|
|
|
|
int result = snapmaticStream.write(newTitleArray);
|
|
|
|
if (result != 0)
|
|
|
|
{
|
|
|
|
titlStr = newTitle;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2017-01-27 04:33:27 +01:00
|
|
|
bool SnapmaticPicture::exportPicture(const QString &fileName, bool customFormat)
|
2016-07-23 00:13:57 +02:00
|
|
|
{
|
|
|
|
QFile *picFile = new QFile(fileName);
|
|
|
|
if (picFile->open(QIODevice::WriteOnly))
|
|
|
|
{
|
2017-01-27 04:33:27 +01:00
|
|
|
if (!customFormat)
|
|
|
|
{
|
|
|
|
// Classic straight export
|
|
|
|
picFile->write(rawPicContent);
|
|
|
|
picFile->close();
|
|
|
|
picFile->deleteLater();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// Modern compressed export
|
2017-02-11 04:21:55 +01:00
|
|
|
QByteArray stockFileNameUTF8 = picFileName.toUtf8();
|
2017-01-27 04:33:27 +01:00
|
|
|
QByteArray numberLength = QByteArray::number(stockFileNameUTF8.length());
|
|
|
|
if (numberLength.length() == 1)
|
|
|
|
{
|
|
|
|
numberLength.insert(0, "0");
|
|
|
|
}
|
|
|
|
else if (numberLength.length() != 2)
|
|
|
|
{
|
2017-02-14 07:24:29 +01:00
|
|
|
numberLength = "00";
|
2017-01-27 04:33:27 +01:00
|
|
|
}
|
|
|
|
picFile->write(QByteArray::fromHex("00")); // First Null Byte
|
|
|
|
picFile->write("G5E"); // GTA 5 Export
|
|
|
|
picFile->write(QByteArray::fromHex("1000")); // 2 byte GTA 5 Export Version
|
|
|
|
picFile->write("LEN"); // Before Length
|
|
|
|
picFile->write(QByteArray::fromHex(numberLength)); // Length in HEX before Compressed
|
|
|
|
picFile->write("FIL"); // Before File Name
|
|
|
|
picFile->write(stockFileNameUTF8); // File Name
|
|
|
|
picFile->write("COM"); // Before Compressed
|
|
|
|
picFile->write(qCompress(rawPicContent, 9)); // Compressed Snapmatic
|
|
|
|
picFile->close();
|
|
|
|
picFile->deleteLater();
|
|
|
|
}
|
2016-07-23 00:13:57 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
2016-03-21 03:10:28 +01:00
|
|
|
}
|
|
|
|
|
2016-04-06 04:22:30 +02:00
|
|
|
QString SnapmaticPicture::getExportPictureFileName()
|
|
|
|
{
|
|
|
|
return picExportFileName;
|
|
|
|
}
|
|
|
|
|
2016-04-03 10:17:01 +02:00
|
|
|
QString SnapmaticPicture::getPictureFileName()
|
|
|
|
{
|
|
|
|
return picFileName;
|
|
|
|
}
|
|
|
|
|
2017-02-11 04:21:55 +01:00
|
|
|
QString SnapmaticPicture::getPictureFilePath()
|
|
|
|
{
|
|
|
|
return picFilePath;
|
|
|
|
}
|
|
|
|
|
2016-04-06 04:22:30 +02:00
|
|
|
QString SnapmaticPicture::getPictureSortStr()
|
|
|
|
{
|
|
|
|
return sortStr;
|
|
|
|
}
|
|
|
|
|
2016-03-29 13:17:38 +02:00
|
|
|
QString SnapmaticPicture::getPictureDesc()
|
|
|
|
{
|
|
|
|
return descStr;
|
|
|
|
}
|
|
|
|
|
|
|
|
QString SnapmaticPicture::getPictureTitl()
|
|
|
|
{
|
|
|
|
return titlStr;
|
|
|
|
}
|
|
|
|
|
2017-02-11 04:21:55 +01:00
|
|
|
QString SnapmaticPicture::getPictureHead()
|
|
|
|
{
|
|
|
|
return pictureHead;
|
|
|
|
}
|
|
|
|
|
2016-03-21 03:10:28 +01:00
|
|
|
QString SnapmaticPicture::getPictureStr()
|
|
|
|
{
|
|
|
|
return pictureStr;
|
|
|
|
}
|
|
|
|
|
|
|
|
QString SnapmaticPicture::getLastStep()
|
|
|
|
{
|
|
|
|
return lastStep;
|
|
|
|
}
|
|
|
|
|
2017-02-11 04:21:55 +01:00
|
|
|
QImage SnapmaticPicture::getImage()
|
2016-03-21 03:10:28 +01:00
|
|
|
{
|
2016-12-09 23:13:21 +01:00
|
|
|
if (cacheEnabled)
|
|
|
|
{
|
|
|
|
return cachePicture;
|
|
|
|
}
|
|
|
|
else if (writeEnabled)
|
|
|
|
{
|
2016-12-14 00:43:31 +01:00
|
|
|
bool returnOk = 0;
|
2017-02-17 12:07:37 +01:00
|
|
|
QImage tempPicture;
|
|
|
|
QImage returnPicture(snapmaticResolution, QImage::Format_RGB888);
|
2016-12-09 23:13:21 +01:00
|
|
|
|
|
|
|
QBuffer snapmaticStream(&rawPicContent);
|
|
|
|
snapmaticStream.open(QIODevice::ReadOnly);
|
|
|
|
if (snapmaticStream.seek(jpegStreamEditorBegin))
|
|
|
|
{
|
|
|
|
QByteArray jpegRawContent = snapmaticStream.read(jpegPicStreamLength);
|
2017-02-17 12:07:37 +01:00
|
|
|
returnOk = tempPicture.loadFromData(jpegRawContent, "JPEG");
|
2016-12-09 23:13:21 +01:00
|
|
|
}
|
|
|
|
snapmaticStream.close();
|
|
|
|
|
|
|
|
if (returnOk)
|
|
|
|
{
|
2017-02-17 12:07:37 +01:00
|
|
|
QPainter returnPainter(&returnPicture);
|
|
|
|
if (tempPicture.size() == snapmaticResolution)
|
|
|
|
{
|
|
|
|
returnPainter.drawImage(0, 0, tempPicture);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
returnPainter.drawImage(0, 0, tempPicture.scaled(snapmaticResolution, Qt::IgnoreAspectRatio, Qt::SmoothTransformation));
|
|
|
|
}
|
|
|
|
returnPainter.end();
|
2016-12-09 23:13:21 +01:00
|
|
|
return returnPicture;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2016-12-14 00:43:31 +01:00
|
|
|
bool returnOk = 0;
|
2016-12-09 23:13:21 +01:00
|
|
|
QImage returnPicture;
|
|
|
|
QIODevice *picStream;
|
|
|
|
|
2017-02-11 04:21:55 +01:00
|
|
|
QFile *picFile = new QFile(picFilePath);
|
2016-12-09 23:13:21 +01:00
|
|
|
if (!picFile->open(QFile::ReadOnly))
|
|
|
|
{
|
2017-02-11 04:21:55 +01:00
|
|
|
lastStep = "1;/1,OpenFile," + StringParser::convertDrawStringForLog(picFilePath);
|
2016-12-09 23:13:21 +01:00
|
|
|
picFile->deleteLater();
|
|
|
|
delete picFile;
|
2017-02-17 12:07:37 +01:00
|
|
|
return QImage(0, 0, QImage::Format_RGB888);
|
2016-12-09 23:13:21 +01:00
|
|
|
}
|
|
|
|
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 = returnPicture.loadFromData(jpegRawContent, "JPEG");
|
|
|
|
}
|
|
|
|
picStream->close();
|
|
|
|
delete picStream;
|
|
|
|
|
|
|
|
if (returnOk)
|
|
|
|
{
|
|
|
|
return returnPicture;
|
|
|
|
}
|
|
|
|
}
|
2017-02-17 12:07:37 +01:00
|
|
|
return QImage(0, 0, QImage::Format_RGB888);
|
2016-03-21 03:10:28 +01:00
|
|
|
}
|
|
|
|
|
2017-02-11 04:21:55 +01:00
|
|
|
int SnapmaticPicture::getContentMaxLength()
|
|
|
|
{
|
|
|
|
return jpegRawContentSize;
|
|
|
|
}
|
|
|
|
|
2016-03-21 22:29:57 +01:00
|
|
|
bool SnapmaticPicture::isPicOk()
|
|
|
|
{
|
|
|
|
return picOk;
|
|
|
|
}
|
|
|
|
|
2016-04-13 00:32:14 +02:00
|
|
|
void SnapmaticPicture::setPicFileName(QString picFileName_)
|
|
|
|
{
|
|
|
|
picFileName = picFileName_;
|
|
|
|
}
|
|
|
|
|
2017-02-11 04:21:55 +01:00
|
|
|
void SnapmaticPicture::setPicFilePath(QString picFilePath_)
|
|
|
|
{
|
|
|
|
picFilePath = picFilePath_;
|
|
|
|
}
|
|
|
|
|
2016-12-09 23:13:21 +01:00
|
|
|
void SnapmaticPicture::clearCache()
|
|
|
|
{
|
|
|
|
cacheEnabled = false;
|
2017-02-17 12:07:37 +01:00
|
|
|
cachePicture = QImage(0, 0, QImage::Format_RGB888);
|
2016-12-09 23:13:21 +01:00
|
|
|
}
|
|
|
|
|
2016-03-21 21:33:22 +01:00
|
|
|
// JSON part
|
|
|
|
|
|
|
|
void SnapmaticPicture::parseJsonContent()
|
|
|
|
{
|
2016-12-10 05:56:09 +01:00
|
|
|
QJsonDocument jsonDocument = QJsonDocument::fromJson(jsonStr.toUtf8());
|
2016-03-21 21:33:22 +01:00
|
|
|
QJsonObject jsonObject = jsonDocument.object();
|
2016-12-14 00:43:31 +01:00
|
|
|
QVariantMap jsonMap = jsonObject.toVariantMap(); // backward compatibility
|
2016-03-21 21:33:22 +01:00
|
|
|
|
2016-12-10 04:35:24 +01:00
|
|
|
if (jsonObject.contains("loc"))
|
2016-03-21 21:33:22 +01:00
|
|
|
{
|
|
|
|
QJsonObject locObject = jsonObject["loc"].toObject();
|
2016-12-10 04:35:24 +01:00
|
|
|
if (locObject.contains("x")) { localSpJson.location.x = locObject["x"].toDouble(); }
|
|
|
|
if (locObject.contains("y")) { localSpJson.location.y = locObject["y"].toDouble(); }
|
|
|
|
if (locObject.contains("z")) { localSpJson.location.z = locObject["z"].toDouble(); }
|
2016-03-21 21:33:22 +01:00
|
|
|
}
|
2017-02-11 04:21:55 +01:00
|
|
|
if (jsonObject.contains("uid"))
|
|
|
|
{
|
|
|
|
localSpJson.uid = jsonObject["uid"].toInt();
|
|
|
|
}
|
2016-12-10 04:35:24 +01:00
|
|
|
if (jsonObject.contains("area"))
|
2016-04-23 20:15:59 +02:00
|
|
|
{
|
2017-02-11 04:21:55 +01:00
|
|
|
localSpJson.location.area = jsonObject["area"].toString();
|
2016-04-23 20:15:59 +02:00
|
|
|
}
|
2016-12-10 04:35:24 +01:00
|
|
|
if (jsonObject.contains("crewid"))
|
2016-03-21 21:46:36 +01:00
|
|
|
{
|
2016-12-10 04:35:24 +01:00
|
|
|
localSpJson.crewID = jsonObject["crewid"].toInt();
|
2016-03-21 21:46:36 +01:00
|
|
|
}
|
2016-12-10 04:35:24 +01:00
|
|
|
if (jsonObject.contains("creat"))
|
2016-05-08 19:07:55 +02:00
|
|
|
{
|
|
|
|
QDateTime createdTimestamp;
|
2016-12-14 00:43:31 +01:00
|
|
|
localSpJson.createdTimestamp = jsonMap["creat"].toUInt();
|
2016-12-10 04:35:24 +01:00
|
|
|
createdTimestamp.setTime_t(localSpJson.createdTimestamp);
|
|
|
|
localSpJson.createdDateTime = createdTimestamp;
|
2016-05-08 19:07:55 +02:00
|
|
|
}
|
2016-12-10 04:35:24 +01:00
|
|
|
if (jsonObject.contains("plyrs"))
|
2016-03-21 21:33:22 +01:00
|
|
|
{
|
2016-12-14 00:43:31 +01:00
|
|
|
localSpJson.playersList = jsonMap["plyrs"].toStringList();
|
2016-03-21 21:33:22 +01:00
|
|
|
}
|
2016-12-10 04:35:24 +01:00
|
|
|
if (jsonObject.contains("meme"))
|
2016-12-09 23:13:21 +01:00
|
|
|
{
|
2016-12-10 04:35:24 +01:00
|
|
|
localSpJson.isMeme = jsonObject["meme"].toBool();
|
2016-12-09 23:13:21 +01:00
|
|
|
}
|
2016-12-10 04:35:24 +01:00
|
|
|
if (jsonObject.contains("mug"))
|
2016-12-09 23:13:21 +01:00
|
|
|
{
|
2016-12-10 04:35:24 +01:00
|
|
|
localSpJson.isMug = jsonObject["mug"].toBool();
|
2016-12-09 23:13:21 +01:00
|
|
|
}
|
2016-12-10 04:35:24 +01:00
|
|
|
if (jsonObject.contains("slf"))
|
2016-12-09 23:13:21 +01:00
|
|
|
{
|
2016-12-10 04:35:24 +01:00
|
|
|
localSpJson.isSelfie = jsonObject["slf"].toBool();
|
2016-12-09 23:13:21 +01:00
|
|
|
}
|
2016-12-10 04:35:24 +01:00
|
|
|
if (jsonObject.contains("drctr"))
|
2016-12-09 23:13:21 +01:00
|
|
|
{
|
2016-12-10 04:35:24 +01:00
|
|
|
localSpJson.isFromDirector = jsonObject["drctr"].toBool();
|
2016-12-09 23:13:21 +01:00
|
|
|
}
|
2016-12-10 04:35:24 +01:00
|
|
|
if (jsonObject.contains("rsedtr"))
|
2016-12-09 23:13:21 +01:00
|
|
|
{
|
2016-12-10 04:35:24 +01:00
|
|
|
localSpJson.isFromRSEditor = jsonObject["rsedtr"].toBool();
|
2016-12-09 23:13:21 +01:00
|
|
|
}
|
2016-03-21 22:29:57 +01:00
|
|
|
|
|
|
|
jsonOk = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool SnapmaticPicture::isJsonOk()
|
|
|
|
{
|
|
|
|
return jsonOk;
|
2016-03-21 21:33:22 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
QString SnapmaticPicture::getJsonStr()
|
|
|
|
{
|
|
|
|
return jsonStr;
|
|
|
|
}
|
|
|
|
|
2016-12-10 04:35:24 +01:00
|
|
|
SnapmaticProperties SnapmaticPicture::getSnapmaticProperties()
|
2016-05-08 19:07:55 +02:00
|
|
|
{
|
2016-12-10 04:35:24 +01:00
|
|
|
return localSpJson;
|
2016-05-08 19:07:55 +02:00
|
|
|
}
|
2016-10-27 08:59:08 +02:00
|
|
|
|
2016-12-10 05:56:09 +01:00
|
|
|
bool SnapmaticPicture::setSnapmaticProperties(SnapmaticProperties newSpJson)
|
|
|
|
{
|
|
|
|
QJsonDocument jsonDocument = QJsonDocument::fromJson(jsonStr.toUtf8());
|
|
|
|
QJsonObject jsonObject = jsonDocument.object();
|
|
|
|
|
|
|
|
QJsonObject locObject;
|
|
|
|
locObject["x"] = newSpJson.location.x;
|
|
|
|
locObject["y"] = newSpJson.location.y;
|
|
|
|
locObject["z"] = newSpJson.location.z;
|
|
|
|
|
|
|
|
jsonObject["loc"] = locObject;
|
2017-02-11 04:21:55 +01:00
|
|
|
jsonObject["uid"] = newSpJson.uid;
|
|
|
|
jsonObject["area"] = newSpJson.location.area;
|
2016-12-10 05:56:09 +01:00
|
|
|
jsonObject["crewid"] = newSpJson.crewID;
|
|
|
|
jsonObject["creat"] = QJsonValue::fromVariant(newSpJson.createdTimestamp);
|
|
|
|
jsonObject["plyrs"] = QJsonValue::fromVariant(newSpJson.playersList);
|
|
|
|
jsonObject["meme"] = newSpJson.isMeme;
|
|
|
|
jsonObject["mug"] = newSpJson.isMug;
|
|
|
|
jsonObject["slf"] = newSpJson.isSelfie;
|
|
|
|
jsonObject["drctr"] = newSpJson.isFromDirector;
|
|
|
|
jsonObject["rsedtr"] = newSpJson.isFromRSEditor;
|
|
|
|
|
|
|
|
jsonDocument.setObject(jsonObject);
|
|
|
|
|
|
|
|
QString newJsonStr = QString::fromUtf8(jsonDocument.toJson(QJsonDocument::Compact));
|
|
|
|
if (newJsonStr.length() < jsonStreamEditorLength)
|
|
|
|
{
|
|
|
|
if (writeEnabled)
|
|
|
|
{
|
|
|
|
QByteArray jsonByteArray = newJsonStr.toUtf8();
|
|
|
|
while (jsonByteArray.length() != jsonStreamEditorLength)
|
|
|
|
{
|
|
|
|
jsonByteArray.append((char)0x00);
|
|
|
|
}
|
|
|
|
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)
|
|
|
|
{
|
2016-12-10 06:01:27 +01:00
|
|
|
localSpJson = newSpJson;
|
2016-12-10 05:56:09 +01:00
|
|
|
jsonStr = newJsonStr;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2016-10-27 08:59:08 +02:00
|
|
|
// VISIBILITY
|
|
|
|
|
|
|
|
bool SnapmaticPicture::isHidden()
|
|
|
|
{
|
2017-02-11 04:21:55 +01:00
|
|
|
if (picFilePath.right(7) == ".hidden")
|
2016-10-27 08:59:08 +02:00
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool SnapmaticPicture::setPictureHidden()
|
|
|
|
{
|
2017-02-11 04:21:55 +01:00
|
|
|
if (isCustomFormat)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
2016-10-27 08:59:08 +02:00
|
|
|
if (!isHidden())
|
|
|
|
{
|
2017-02-11 04:21:55 +01:00
|
|
|
QString newPicFilePath = QString(picFilePath + ".hidden");
|
|
|
|
if (QFile::rename(picFilePath, newPicFilePath))
|
2016-10-27 08:59:08 +02:00
|
|
|
{
|
2017-02-11 04:21:55 +01:00
|
|
|
picFilePath = newPicFilePath;
|
2016-10-27 08:59:08 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool SnapmaticPicture::setPictureVisible()
|
|
|
|
{
|
2017-02-11 04:21:55 +01:00
|
|
|
if (isCustomFormat)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
2016-10-27 08:59:08 +02:00
|
|
|
if (isHidden())
|
|
|
|
{
|
2017-02-11 04:21:55 +01:00
|
|
|
QString newPicFilePath = QString(picFilePath).remove(picFilePath.length() - 7, 7);
|
|
|
|
if (QFile::rename(picFilePath, newPicFilePath))
|
2016-10-27 08:59:08 +02:00
|
|
|
{
|
2017-02-11 04:21:55 +01:00
|
|
|
picFilePath = newPicFilePath;
|
2016-10-27 08:59:08 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
2017-02-17 12:07:37 +01:00
|
|
|
|
|
|
|
// PREDEFINED PROPERTIES
|
|
|
|
|
|
|
|
QSize SnapmaticPicture::getSnapmaticResolution()
|
|
|
|
{
|
|
|
|
return snapmaticResolution;
|
|
|
|
}
|
2017-02-25 06:30:37 +01:00
|
|
|
|
|
|
|
// VERIFY CONTENT
|
|
|
|
|
|
|
|
bool SnapmaticPicture::verifyTitle(const QString &title)
|
|
|
|
{
|
|
|
|
// VERIFY TITLE FOR BE A VALID SNAPMATIC TITLE
|
|
|
|
if (title.length() <= titlStreamCharacterMax)
|
|
|
|
{
|
|
|
|
foreach(const QChar &titleChar, title)
|
|
|
|
{
|
|
|
|
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;
|
|
|
|
}
|