gta5view/PictureDialog.cpp

263 lines
8.1 KiB
C++
Raw Normal View History

2016-03-21 07:54:14 +01:00
/*****************************************************************************
* gta5sync GRAND THEFT AUTO V SYNC
* Copyright (C) 2016 Syping
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.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*****************************************************************************/
2016-03-20 21:57:18 +01:00
#include "PictureDialog.h"
2016-04-12 21:53:21 +02:00
#include "PictureWidget.h"
2016-03-22 05:20:42 +01:00
#include "ProfileDatabase.h"
2016-03-20 21:57:18 +01:00
#include "ui_PictureDialog.h"
#include "SidebarGenerator.h"
#include "StandardPaths.h"
#include "PictureExport.h"
#include "PictureCopy.h"
#include "UiModLabel.h"
2016-03-20 21:57:18 +01:00
#include <QDesktopWidget>
2016-03-21 20:44:07 +01:00
#include <QJsonDocument>
2016-03-22 05:20:42 +01:00
#include <QFileDialog>
2016-03-21 22:14:32 +01:00
#include <QMessageBox>
2016-03-21 20:44:07 +01:00
#include <QJsonObject>
#include <QVariantMap>
#include <QJsonArray>
#include <QKeyEvent>
2016-03-21 20:44:07 +01:00
#include <QDebug>
2016-03-23 03:33:46 +01:00
#include <QList>
#include <QUrl>
#include <QDir>
2016-03-22 05:20:42 +01:00
PictureDialog::PictureDialog(ProfileDatabase *profileDB, QWidget *parent) :
QDialog(parent), profileDB(profileDB),
2016-03-20 21:57:18 +01:00
ui(new Ui::PictureDialog)
{
ui->setupUi(this);
2016-03-21 22:06:17 +01:00
windowTitleStr = this->windowTitle();
2016-03-21 20:44:07 +01:00
jsonDrawString = ui->labJSON->text();
2016-03-22 05:20:42 +01:00
ui->cmdExport->setEnabled(0);
2016-03-22 05:59:17 +01:00
plyrsList = QStringList();
indexed = 0;
picTitl = "";
picPath = "";
2016-03-22 05:59:17 +01:00
crewID = "";
locX = "";
locY = "";
locZ = "";
2016-03-29 12:23:21 +02:00
smpic = 0;
2016-04-08 16:55:28 +02:00
// Export menu
exportMenu = new QMenu(this);
2016-04-08 19:46:27 +02:00
exportMenu->addAction(tr("Export as &JPG picture..."), this, SLOT(exportSnapmaticPicture()));
exportMenu->addAction(tr("Export as &GTA Snapmatic..."), this, SLOT(copySnapmaticPicture()));
2016-04-08 16:55:28 +02:00
ui->cmdExport->setMenu(exportMenu);
installEventFilter(this);
2016-03-20 21:57:18 +01:00
}
PictureDialog::~PictureDialog()
{
2016-04-08 16:55:28 +02:00
delete exportMenu;
2016-03-20 21:57:18 +01:00
delete ui;
}
bool PictureDialog::eventFilter(QObject *obj, QEvent *ev)
{
if (obj == this)
{
if (ev->type() == QEvent::KeyPress)
{
QKeyEvent *keyEvent = (QKeyEvent*)ev;
switch (keyEvent->key()){
case Qt::Key_Left:
emit previousPictureRequested();
break;
case Qt::Key_Right:
emit nextPictureRequested();
break;
}
}
}
return false;
}
2016-04-12 21:53:21 +02:00
void PictureDialog::dialogNextPictureRequested()
{
emit nextPictureRequested();
}
void PictureDialog::dialogPreviousPictureRequested()
{
emit previousPictureRequested();
}
void PictureDialog::setSnapmaticPicture(SnapmaticPicture *picture, QString picturePath, bool readOk, bool _indexed, int _index)
2016-03-21 20:44:07 +01:00
{
2016-04-12 21:53:21 +02:00
snapmaticPicture = QImage();
indexed = _indexed;
index = _index;
picPath = picturePath;
2016-03-29 12:23:21 +02:00
smpic = picture;
2016-03-21 22:40:03 +01:00
if (!readOk)
{
2016-03-23 02:08:16 +01:00
QMessageBox::warning(this, tr("Snapmatic Picture Viewer"), tr("Failed at %1").arg(picture->getLastStep()));
return;
2016-03-21 22:40:03 +01:00
}
if (picture->isPicOk())
{
snapmaticPicture = picture->getPicture();
ui->labPicture->setPixmap(QPixmap::fromImage(snapmaticPicture, Qt::AutoColor));
2016-03-22 05:20:42 +01:00
ui->cmdExport->setEnabled(true);
2016-03-21 22:40:03 +01:00
}
if (picture->isJsonOk())
2016-03-21 22:14:32 +01:00
{
2016-03-22 05:59:17 +01:00
locX = QString::number(picture->getLocationX());
locY = QString::number(picture->getLocationY());
locZ = QString::number(picture->getLocationZ());
crewID = QString::number(picture->getCrewNumber());
plyrsList = picture->getPlayers();
picTitl = picture->getPictureTitl();
2016-03-21 22:14:32 +01:00
QString plyrsStr;
2016-03-21 22:40:03 +01:00
if (plyrsList.length() >= 1)
{
foreach (const QString &player, plyrsList)
{
QString playerName = profileDB->getPlayerName(player.toInt());
2016-04-07 17:36:15 +02:00
plyrsStr.append(", <a href=\"https://socialclub.rockstargames.com/member/");
plyrsStr.append(playerName);
plyrsStr.append("/");
plyrsStr.append(player);
plyrsStr.append("\">");
plyrsStr.append(playerName);
plyrsStr.append("</a>");
2016-03-21 22:40:03 +01:00
}
plyrsStr.remove(0,2);
}
else
2016-03-21 22:14:32 +01:00
{
2016-03-21 22:40:03 +01:00
plyrsStr = tr("No player");
2016-03-21 22:14:32 +01:00
}
2016-03-21 22:40:03 +01:00
if (crewID == "") { crewID = tr("No crew"); }
2016-03-21 20:44:07 +01:00
2016-03-21 22:14:32 +01:00
this->setWindowTitle(windowTitleStr.arg(picture->getPictureStr()));
ui->labJSON->setText(jsonDrawString.arg(locX, locY, locZ, plyrsStr, crewID, picTitl));
2016-03-21 22:14:32 +01:00
}
else
2016-03-21 20:44:07 +01:00
{
2016-03-21 22:40:03 +01:00
ui->labJSON->setText(jsonDrawString.arg("0.0", "0.0", "0.0", tr("No player"), tr("No crew")));
2016-03-21 22:14:32 +01:00
QMessageBox::warning(this,tr("Snapmatic Picture Viewer"),tr("Failed at %1").arg(picture->getLastStep()));
2016-03-21 20:44:07 +01:00
}
2016-04-12 21:53:21 +02:00
emit newPictureCommited(snapmaticPicture);
2016-03-21 20:44:07 +01:00
}
2016-03-21 21:54:46 +01:00
void PictureDialog::setSnapmaticPicture(SnapmaticPicture *picture, QString picPath, bool readOk)
{
setSnapmaticPicture(picture, picPath, readOk, false, 0);
}
void PictureDialog::setSnapmaticPicture(SnapmaticPicture *picture, QString picPath)
{
setSnapmaticPicture(picture, picPath, true);
}
void PictureDialog::setSnapmaticPicture(SnapmaticPicture *picture, bool readOk, int index)
{
setSnapmaticPicture(picture, picture->getPictureFileName(), readOk, true, index);
}
void PictureDialog::setSnapmaticPicture(SnapmaticPicture *picture, bool readOk)
{
setSnapmaticPicture(picture, picture->getPictureFileName(), readOk);
}
void PictureDialog::setSnapmaticPicture(SnapmaticPicture *picture, int index)
{
setSnapmaticPicture(picture, true, index);
}
void PictureDialog::setSnapmaticPicture(SnapmaticPicture *picture)
{
setSnapmaticPicture(picture, true);
}
void PictureDialog::playerNameUpdated()
2016-03-22 05:59:17 +01:00
{
if (plyrsList.count() >= 1)
{
QString plyrsStr;
foreach (const QString &player, plyrsList)
{
QString playerName = profileDB->getPlayerName(player.toInt());
2016-04-07 17:36:15 +02:00
plyrsStr.append(", <a href=\"https://socialclub.rockstargames.com/member/");
if (playerName != player)
{
plyrsStr.append(playerName);
}
else
{
plyrsStr.append("id");
}
plyrsStr.append("/");
plyrsStr.append(player);
plyrsStr.append("\">");
plyrsStr.append(playerName);
plyrsStr.append("</a>");
2016-03-22 05:59:17 +01:00
}
plyrsStr.remove(0,2);
ui->labJSON->setText(jsonDrawString.arg(locX, locY, locZ, plyrsStr, crewID, picTitl));
2016-03-22 05:59:17 +01:00
}
}
2016-04-08 16:55:28 +02:00
void PictureDialog::exportSnapmaticPicture()
2016-03-22 05:20:42 +01:00
{
2016-04-03 10:17:01 +02:00
PictureExport::exportPicture(this, smpic);
2016-03-22 05:20:42 +01:00
}
2016-04-08 16:55:28 +02:00
void PictureDialog::copySnapmaticPicture()
{
2016-04-03 10:17:01 +02:00
PictureCopy::copyPicture(this, picPath);
}
void PictureDialog::on_labPicture_mouseDoubleClicked()
{
2016-04-12 21:53:21 +02:00
QRect desktopRect = QApplication::desktop()->screenGeometry();
PictureWidget *pictureWidget = new PictureWidget(this);
pictureWidget->setWindowFlags(pictureWidget->windowFlags()^Qt::WindowContextHelpButtonHint);
2016-04-01 22:05:38 +02:00
pictureWidget->setWindowTitle(this->windowTitle());
pictureWidget->setStyleSheet("background-color: black;");
2016-04-12 21:53:21 +02:00
pictureWidget->setImage(snapmaticPicture, desktopRect);
QObject::connect(this, SIGNAL(newPictureCommited(QImage)), pictureWidget, SLOT(setImage(QImage)));
QObject::connect(pictureWidget, SIGNAL(nextPictureRequested()), this, SLOT(dialogNextPictureRequested()));
QObject::connect(pictureWidget, SIGNAL(previousPictureRequested()), this, SLOT(dialogPreviousPictureRequested()));
pictureWidget->showFullScreen();
pictureWidget->setModal(true);
pictureWidget->exec();
delete pictureWidget;
}
bool PictureDialog::isIndexed()
{
return indexed;
}
int PictureDialog::getIndex()
{
return index;
}