2016-02-26 22:22:34 +01:00
|
|
|
/*****************************************************************************
|
|
|
|
* gta5sync GRAND THEFT AUTO V SYNC
|
2016-03-27 09:52:23 +02:00
|
|
|
* Copyright (C) 2016 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
|
|
|
#ifndef SNAPMATICPICTURE_H
|
|
|
|
#define SNAPMATICPICTURE_H
|
2016-02-26 22:22:34 +01:00
|
|
|
|
2016-03-21 21:33:22 +01:00
|
|
|
#include <QStringList>
|
2016-05-08 19:07:55 +02:00
|
|
|
#include <QDateTime>
|
2016-03-20 21:57:18 +01:00
|
|
|
#include <QObject>
|
2016-03-21 03:10:28 +01:00
|
|
|
#include <QString>
|
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
|
|
|
|
2016-12-10 04:35:24 +01:00
|
|
|
struct SnapmaticProperties {
|
|
|
|
struct SnapmaticLocation {
|
|
|
|
double x;
|
|
|
|
double y;
|
|
|
|
double z;
|
|
|
|
};
|
|
|
|
int crewID;
|
|
|
|
QString area;
|
|
|
|
QStringList playersList;
|
|
|
|
uint createdTimestamp;
|
|
|
|
QDateTime createdDateTime;
|
|
|
|
bool isMeme;
|
|
|
|
bool isMug;
|
|
|
|
bool isSelfie;
|
|
|
|
bool isFromDirector;
|
|
|
|
bool isFromRSEditor;
|
|
|
|
SnapmaticLocation location;
|
|
|
|
};
|
|
|
|
|
2016-03-20 21:57:18 +01:00
|
|
|
class SnapmaticPicture : public QObject
|
2016-02-26 22:22:34 +01:00
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
2016-04-06 04:22:30 +02:00
|
|
|
explicit SnapmaticPicture(const QString &fileName = "", QObject *parent = 0);
|
2016-12-09 23:13:21 +01:00
|
|
|
~SnapmaticPicture();
|
|
|
|
bool readingPictureFromFile(const QString &fileName, bool writeEnabled = true, bool cacheEnabled = true);
|
|
|
|
bool readingPicture(bool writeEnabled = true, bool cacheEnabled = true);
|
2016-03-21 22:29:57 +01:00
|
|
|
bool isPicOk();
|
2016-12-09 23:13:21 +01:00
|
|
|
void clearCache();
|
2016-03-27 09:52:23 +02:00
|
|
|
QImage getPicture();
|
2016-03-21 03:10:28 +01:00
|
|
|
QString getLastStep();
|
|
|
|
QString getPictureStr();
|
2016-03-29 13:17:38 +02:00
|
|
|
QString getPictureTitl();
|
|
|
|
QString getPictureDesc();
|
2016-04-06 04:22:30 +02:00
|
|
|
QString getPictureSortStr();
|
2016-04-03 10:17:01 +02:00
|
|
|
QString getPictureFileName();
|
2016-04-06 04:22:30 +02:00
|
|
|
QString getExportPictureFileName();
|
2016-05-08 19:07:55 +02:00
|
|
|
QDateTime getCreatedDateTime();
|
2016-07-23 00:13:57 +02:00
|
|
|
bool setPicture(const QImage &picture);
|
|
|
|
bool exportPicture(const QString &fileName);
|
2016-04-13 00:32:14 +02:00
|
|
|
void setPicFileName(QString picFileName_);
|
2016-02-26 22:22:34 +01:00
|
|
|
|
2016-03-21 21:33:22 +01:00
|
|
|
// JSON
|
2016-03-21 22:29:57 +01:00
|
|
|
bool isJsonOk();
|
2016-03-21 21:33:22 +01:00
|
|
|
QString getJsonStr();
|
2016-12-10 04:35:24 +01:00
|
|
|
SnapmaticProperties getSnapmaticProperties();
|
2016-12-10 05:56:09 +01:00
|
|
|
bool setSnapmaticProperties(SnapmaticProperties newSpJson);
|
2016-03-21 21:33:22 +01:00
|
|
|
|
2016-10-27 08:59:08 +02:00
|
|
|
// VISIBILITY
|
|
|
|
bool isHidden();
|
|
|
|
bool setPictureHidden();
|
|
|
|
bool setPictureVisible();
|
|
|
|
|
2016-02-26 22:22:34 +01:00
|
|
|
private:
|
2016-04-06 04:22:30 +02:00
|
|
|
QString getSnapmaticPictureString(const QByteArray &snapmaticHeader);
|
|
|
|
QString getSnapmaticJSONString(const QByteArray &jsonBytes);
|
|
|
|
QString getSnapmaticTIDEString(const QByteArray &tideBytes);
|
|
|
|
void parseSnapmaticExportAndSortString();
|
2016-03-27 09:52:23 +02:00
|
|
|
QImage cachePicture;
|
2016-04-06 04:22:30 +02:00
|
|
|
QString picExportFileName;
|
2016-03-21 03:10:28 +01:00
|
|
|
QString picFileName;
|
|
|
|
QString pictureStr;
|
|
|
|
QString lastStep;
|
2016-04-06 04:22:30 +02:00
|
|
|
QString sortStr;
|
2016-03-29 13:17:38 +02:00
|
|
|
QString titlStr;
|
|
|
|
QString descStr;
|
2016-03-21 22:29:57 +01:00
|
|
|
bool picOk;
|
2016-07-23 00:13:57 +02:00
|
|
|
bool writeEnabled;
|
2016-12-09 23:13:21 +01:00
|
|
|
bool cacheEnabled;
|
2016-03-21 21:33:22 +01:00
|
|
|
|
2016-03-21 21:46:36 +01:00
|
|
|
// PARSE INT
|
|
|
|
int snapmaticHeaderLength;
|
|
|
|
int snapmaticUsefulLength;
|
2016-07-22 16:06:36 +02:00
|
|
|
int snapmaticFileMaxSize;
|
2016-03-21 21:46:36 +01:00
|
|
|
int jpegHeaderLineDifStr;
|
|
|
|
int jpegPreHeaderLength;
|
|
|
|
int jpegPicStreamLength;
|
|
|
|
int jsonStreamLength;
|
2016-03-29 13:17:38 +02:00
|
|
|
int tideStreamLength;
|
2016-03-21 21:46:36 +01:00
|
|
|
|
2016-07-22 16:06:36 +02:00
|
|
|
// PARSE EDITOR
|
|
|
|
int jpegStreamEditorBegin;
|
|
|
|
int jsonStreamEditorBegin;
|
|
|
|
int jsonStreamEditorLength;
|
|
|
|
QByteArray rawPicContent;
|
|
|
|
|
2016-03-21 21:33:22 +01:00
|
|
|
// JSON
|
2016-12-10 05:56:09 +01:00
|
|
|
void parseJsonContent();
|
2016-03-21 22:29:57 +01:00
|
|
|
bool jsonOk;
|
2016-03-20 21:57:18 +01:00
|
|
|
QString jsonStr;
|
2016-12-10 04:35:24 +01:00
|
|
|
SnapmaticProperties localSpJson;
|
2016-03-20 21:57:18 +01:00
|
|
|
|
|
|
|
signals:
|
|
|
|
|
|
|
|
public slots:
|
2016-02-26 22:22:34 +01:00
|
|
|
};
|
|
|
|
|
2016-03-20 21:57:18 +01:00
|
|
|
#endif // SNAPMATICPICTURE_H
|