gta5view/SnapmaticPicture.h

127 lines
3.6 KiB
C
Raw Normal View History

2016-02-26 22:22:34 +01:00
/*****************************************************************************
* gta5sync GRAND THEFT AUTO V SYNC
* 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
#include <QStringList>
2016-05-08 19:07:55 +02:00
#include <QDateTime>
2016-03-20 21:57:18 +01:00
#include <QObject>
#include <QString>
#include <QImage>
#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:
explicit SnapmaticPicture(const QString &fileName = "", QObject *parent = 0);
~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();
void clearCache();
QImage getPicture();
QString getLastStep();
QString getPictureStr();
QString getPictureTitl();
QString getPictureDesc();
QString getPictureSortStr();
2016-04-03 10:17:01 +02:00
QString getPictureFileName();
QString getExportPictureFileName();
2016-05-08 19:07:55 +02:00
QDateTime getCreatedDateTime();
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
// JSON
2016-03-21 22:29:57 +01:00
bool isJsonOk();
QString getJsonStr();
2016-12-10 04:35:24 +01:00
SnapmaticProperties getSnapmaticProperties();
2016-12-10 05:56:09 +01:00
bool setSnapmaticProperties(SnapmaticProperties newSpJson);
// VISIBILITY
bool isHidden();
bool setPictureHidden();
bool setPictureVisible();
2016-02-26 22:22:34 +01:00
private:
QString getSnapmaticPictureString(const QByteArray &snapmaticHeader);
QString getSnapmaticJSONString(const QByteArray &jsonBytes);
QString getSnapmaticTIDEString(const QByteArray &tideBytes);
void parseSnapmaticExportAndSortString();
QImage cachePicture;
QString picExportFileName;
QString picFileName;
QString pictureStr;
QString lastStep;
QString sortStr;
QString titlStr;
QString descStr;
2016-03-21 22:29:57 +01:00
bool picOk;
bool writeEnabled;
bool cacheEnabled;
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;
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;
// 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