2016-05-13 02:21:25 +05:30
|
|
|
#include <QFileInfo>
|
|
|
|
#include <QFileDialog>
|
2021-08-20 05:04:32 +05:30
|
|
|
#include <QPainter>
|
|
|
|
|
2016-05-13 02:21:25 +05:30
|
|
|
#include <FileSystem.h>
|
2021-11-20 20:52:22 +05:30
|
|
|
|
2021-02-11 06:52:43 +05:30
|
|
|
#include <minecraft/services/SkinUpload.h>
|
2021-11-20 20:52:22 +05:30
|
|
|
#include <minecraft/services/CapeChange.h>
|
2021-08-20 05:04:32 +05:30
|
|
|
#include <tasks/SequentialTask.h>
|
|
|
|
|
2016-05-13 02:21:25 +05:30
|
|
|
#include "SkinUploadDialog.h"
|
|
|
|
#include "ui_SkinUploadDialog.h"
|
|
|
|
#include "ProgressDialog.h"
|
|
|
|
#include "CustomMessageBox.h"
|
|
|
|
|
|
|
|
void SkinUploadDialog::on_buttonBox_rejected()
|
|
|
|
{
|
2018-07-15 18:21:05 +05:30
|
|
|
close();
|
2016-05-13 02:21:25 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
void SkinUploadDialog::on_buttonBox_accepted()
|
|
|
|
{
|
2018-07-15 18:21:05 +05:30
|
|
|
QString fileName;
|
|
|
|
QString input = ui->skinPathTextBox->text();
|
|
|
|
QRegExp urlPrefixMatcher("^([a-z]+)://.+$");
|
|
|
|
bool isLocalFile = false;
|
|
|
|
// it has an URL prefix -> it is an URL
|
|
|
|
if(urlPrefixMatcher.exactMatch(input))
|
|
|
|
{
|
|
|
|
QUrl fileURL = input;
|
|
|
|
if(fileURL.isValid())
|
|
|
|
{
|
|
|
|
// local?
|
|
|
|
if(fileURL.isLocalFile())
|
|
|
|
{
|
|
|
|
isLocalFile = true;
|
|
|
|
fileName = fileURL.toLocalFile();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
CustomMessageBox::selectable(
|
|
|
|
this,
|
|
|
|
tr("Skin Upload"),
|
|
|
|
tr("Using remote URLs for setting skins is not implemented yet."),
|
|
|
|
QMessageBox::Warning
|
|
|
|
)->exec();
|
|
|
|
close();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
CustomMessageBox::selectable(
|
|
|
|
this,
|
|
|
|
tr("Skin Upload"),
|
|
|
|
tr("You cannot use an invalid URL for uploading skins."),
|
|
|
|
QMessageBox::Warning
|
|
|
|
)->exec();
|
|
|
|
close();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// just assume it's a path then
|
|
|
|
isLocalFile = true;
|
|
|
|
fileName = ui->skinPathTextBox->text();
|
|
|
|
}
|
|
|
|
if (isLocalFile && !QFile::exists(fileName))
|
|
|
|
{
|
|
|
|
CustomMessageBox::selectable(this, tr("Skin Upload"), tr("Skin file does not exist!"), QMessageBox::Warning)->exec();
|
|
|
|
close();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
SkinUpload::Model model = SkinUpload::STEVE;
|
|
|
|
if (ui->steveBtn->isChecked())
|
|
|
|
{
|
|
|
|
model = SkinUpload::STEVE;
|
|
|
|
}
|
|
|
|
else if (ui->alexBtn->isChecked())
|
|
|
|
{
|
|
|
|
model = SkinUpload::ALEX;
|
|
|
|
}
|
2021-12-04 05:48:05 +05:30
|
|
|
ProgressDialog prog(this);
|
2021-08-20 05:04:32 +05:30
|
|
|
SequentialTask skinUpload;
|
2021-12-04 05:48:05 +05:30
|
|
|
skinUpload.addTask(shared_qobject_ptr<SkinUpload>(new SkinUpload(this, m_acct->accessToken(), FS::read(fileName), model)));
|
2021-08-20 05:04:32 +05:30
|
|
|
auto selectedCape = ui->capeCombo->currentData().toString();
|
2021-11-20 20:52:22 +05:30
|
|
|
if(selectedCape != m_acct->accountData()->minecraftProfile.currentCape) {
|
2021-12-04 05:48:05 +05:30
|
|
|
skinUpload.addTask(shared_qobject_ptr<CapeChange>(new CapeChange(this, m_acct->accessToken(), selectedCape)));
|
2021-08-20 05:04:32 +05:30
|
|
|
}
|
|
|
|
if (prog.execWithTask(&skinUpload) != QDialog::Accepted)
|
2018-07-15 18:21:05 +05:30
|
|
|
{
|
|
|
|
CustomMessageBox::selectable(this, tr("Skin Upload"), tr("Failed to upload skin!"), QMessageBox::Warning)->exec();
|
|
|
|
close();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
CustomMessageBox::selectable(this, tr("Skin Upload"), tr("Success"), QMessageBox::Information)->exec();
|
|
|
|
close();
|
2016-05-13 02:21:25 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
void SkinUploadDialog::on_skinBrowseBtn_clicked()
|
|
|
|
{
|
2018-07-15 18:21:05 +05:30
|
|
|
QString raw_path = QFileDialog::getOpenFileName(this, tr("Select Skin Texture"), QString(), "*.png");
|
|
|
|
if (raw_path.isEmpty() || !QFileInfo::exists(raw_path))
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
QString cooked_path = FS::NormalizePath(raw_path);
|
|
|
|
ui->skinPathTextBox->setText(cooked_path);
|
2016-05-13 02:21:25 +05:30
|
|
|
}
|
|
|
|
|
2021-07-27 01:14:11 +05:30
|
|
|
SkinUploadDialog::SkinUploadDialog(MinecraftAccountPtr acct, QWidget *parent)
|
2018-07-15 18:21:05 +05:30
|
|
|
:QDialog(parent), m_acct(acct), ui(new Ui::SkinUploadDialog)
|
2016-05-13 02:21:25 +05:30
|
|
|
{
|
2018-07-15 18:21:05 +05:30
|
|
|
ui->setupUi(this);
|
2021-08-20 05:04:32 +05:30
|
|
|
|
|
|
|
// FIXME: add a model for this, download/refresh the capes on demand
|
|
|
|
auto &data = *acct->accountData();
|
|
|
|
int index = 0;
|
|
|
|
ui->capeCombo->addItem(tr("No Cape"), QVariant());
|
|
|
|
auto currentCape = data.minecraftProfile.currentCape;
|
|
|
|
if(currentCape.isEmpty()) {
|
|
|
|
ui->capeCombo->setCurrentIndex(index);
|
|
|
|
}
|
|
|
|
|
|
|
|
for(auto & cape: data.minecraftProfile.capes) {
|
|
|
|
index++;
|
|
|
|
if(cape.data.size()) {
|
|
|
|
QPixmap capeImage;
|
|
|
|
if(capeImage.loadFromData(cape.data, "PNG")) {
|
|
|
|
QPixmap preview = QPixmap(10, 16);
|
|
|
|
QPainter painter(&preview);
|
|
|
|
painter.drawPixmap(0, 0, capeImage.copy(1, 1, 10, 16));
|
|
|
|
ui->capeCombo->addItem(capeImage, cape.alias, cape.id);
|
|
|
|
if(currentCape == cape.id) {
|
|
|
|
ui->capeCombo->setCurrentIndex(index);
|
|
|
|
}
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
ui->capeCombo->addItem(cape.alias, cape.id);
|
|
|
|
if(currentCape == cape.id) {
|
|
|
|
ui->capeCombo->setCurrentIndex(index);
|
|
|
|
}
|
|
|
|
}
|
2016-05-13 02:21:25 +05:30
|
|
|
}
|