2015-02-03 03:55:30 +05:30
|
|
|
/* Copyright 2013-2015 MultiMC Contributors
|
2013-11-27 22:26:15 +05:30
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "logic/SkinUtils.h"
|
|
|
|
#include "net/HttpMetaCache.h"
|
2015-01-31 21:29:03 +05:30
|
|
|
#include "logic/Env.h"
|
2013-11-27 22:26:15 +05:30
|
|
|
|
|
|
|
#include <QFile>
|
|
|
|
#include <QJsonDocument>
|
|
|
|
#include <QJsonObject>
|
|
|
|
#include <QJsonArray>
|
|
|
|
|
|
|
|
namespace SkinUtils
|
|
|
|
{
|
2013-11-28 00:15:29 +05:30
|
|
|
/*
|
|
|
|
* Given a username, return a pixmap of the cached skin (if it exists), QPixmap() otherwise
|
|
|
|
*/
|
2013-11-27 22:26:15 +05:30
|
|
|
QPixmap getFaceFromCache(QString username, int height, int width)
|
|
|
|
{
|
2015-01-31 21:29:03 +05:30
|
|
|
QFile fskin(ENV.metacache()
|
2013-11-28 00:15:29 +05:30
|
|
|
->resolveEntry("skins", username + ".png")
|
|
|
|
->getFullPath());
|
2013-11-27 22:26:15 +05:30
|
|
|
|
2013-11-28 00:15:29 +05:30
|
|
|
if (fskin.exists())
|
2013-11-27 22:26:15 +05:30
|
|
|
{
|
2013-11-28 00:15:29 +05:30
|
|
|
QPixmap skin(fskin.fileName());
|
|
|
|
if(!skin.isNull())
|
2013-11-27 22:26:15 +05:30
|
|
|
{
|
2013-11-28 00:15:29 +05:30
|
|
|
return skin.copy(8, 8, 8, 8).scaled(height, width, Qt::KeepAspectRatio);
|
2013-11-27 22:26:15 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-11-28 00:15:29 +05:30
|
|
|
return QPixmap();
|
2013-11-27 22:26:15 +05:30
|
|
|
}
|
|
|
|
}
|