2021-01-18 12:58:54 +05:30
|
|
|
/* Copyright 2015-2021 MultiMC Contributors
|
2016-04-07 02:39:30 +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.
|
|
|
|
*/
|
|
|
|
|
2017-03-11 06:09:45 +05:30
|
|
|
#include "Version.h"
|
2016-04-07 02:39:30 +05:30
|
|
|
|
|
|
|
#include <QDateTime>
|
|
|
|
|
2017-03-18 06:52:36 +05:30
|
|
|
#include "JsonFormat.h"
|
2020-06-27 15:32:31 +05:30
|
|
|
#include "minecraft/PackProfile.h"
|
2016-04-07 02:39:30 +05:30
|
|
|
|
2017-03-19 06:43:49 +05:30
|
|
|
Meta::Version::Version(const QString &uid, const QString &version)
|
2018-07-15 18:21:05 +05:30
|
|
|
: BaseVersion(), m_uid(uid), m_version(version)
|
2016-04-07 02:39:30 +05:30
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2017-04-24 05:00:51 +05:30
|
|
|
Meta::Version::~Version()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2017-03-19 06:43:49 +05:30
|
|
|
QString Meta::Version::descriptor()
|
2016-04-07 02:39:30 +05:30
|
|
|
{
|
2018-07-15 18:21:05 +05:30
|
|
|
return m_version;
|
2016-04-07 02:39:30 +05:30
|
|
|
}
|
2017-03-19 06:43:49 +05:30
|
|
|
QString Meta::Version::name()
|
2016-04-07 02:39:30 +05:30
|
|
|
{
|
2018-07-15 18:21:05 +05:30
|
|
|
if(m_data)
|
|
|
|
return m_data->name;
|
|
|
|
return m_uid;
|
2016-04-07 02:39:30 +05:30
|
|
|
}
|
2017-03-19 06:43:49 +05:30
|
|
|
QString Meta::Version::typeString() const
|
2016-04-07 02:39:30 +05:30
|
|
|
{
|
2018-07-15 18:21:05 +05:30
|
|
|
return m_type;
|
2016-04-07 02:39:30 +05:30
|
|
|
}
|
|
|
|
|
2017-03-19 06:43:49 +05:30
|
|
|
QDateTime Meta::Version::time() const
|
2016-04-07 02:39:30 +05:30
|
|
|
{
|
2018-07-15 18:21:05 +05:30
|
|
|
return QDateTime::fromMSecsSinceEpoch(m_time * 1000, Qt::UTC);
|
2016-04-07 02:39:30 +05:30
|
|
|
}
|
|
|
|
|
2017-03-19 06:43:49 +05:30
|
|
|
void Meta::Version::parse(const QJsonObject& obj)
|
2017-03-17 06:18:54 +05:30
|
|
|
{
|
2018-07-15 18:21:05 +05:30
|
|
|
parseVersion(obj, this);
|
2016-04-07 02:39:30 +05:30
|
|
|
}
|
|
|
|
|
2017-12-14 06:52:20 +05:30
|
|
|
void Meta::Version::mergeFromList(const Meta::VersionPtr& other)
|
2016-04-07 02:39:30 +05:30
|
|
|
{
|
2018-07-15 18:21:05 +05:30
|
|
|
if(other->m_providesRecommendations)
|
|
|
|
{
|
|
|
|
if(m_recommended != other->m_recommended)
|
|
|
|
{
|
|
|
|
setRecommended(other->m_recommended);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (m_type != other->m_type)
|
|
|
|
{
|
|
|
|
setType(other->m_type);
|
|
|
|
}
|
|
|
|
if (m_time != other->m_time)
|
|
|
|
{
|
|
|
|
setTime(other->m_time);
|
|
|
|
}
|
|
|
|
if (m_requires != other->m_requires)
|
|
|
|
{
|
|
|
|
m_requires = other->m_requires;
|
|
|
|
}
|
|
|
|
if (m_conflicts != other->m_conflicts)
|
|
|
|
{
|
|
|
|
m_conflicts = other->m_conflicts;
|
|
|
|
}
|
|
|
|
if(m_volatile != other->m_volatile)
|
|
|
|
{
|
|
|
|
setVolatile(other->m_volatile);
|
|
|
|
}
|
2017-12-14 06:52:20 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
void Meta::Version::merge(const VersionPtr &other)
|
|
|
|
{
|
2018-07-15 18:21:05 +05:30
|
|
|
mergeFromList(other);
|
|
|
|
if(other->m_data)
|
|
|
|
{
|
|
|
|
setData(other->m_data);
|
|
|
|
}
|
2016-04-07 02:39:30 +05:30
|
|
|
}
|
|
|
|
|
2017-03-19 06:43:49 +05:30
|
|
|
QString Meta::Version::localFilename() const
|
2016-04-07 02:39:30 +05:30
|
|
|
{
|
2018-07-15 18:21:05 +05:30
|
|
|
return m_uid + '/' + m_version + ".json";
|
2016-04-07 02:39:30 +05:30
|
|
|
}
|
|
|
|
|
2017-03-19 06:43:49 +05:30
|
|
|
void Meta::Version::setType(const QString &type)
|
2016-04-07 02:39:30 +05:30
|
|
|
{
|
2018-07-15 18:21:05 +05:30
|
|
|
m_type = type;
|
|
|
|
emit typeChanged();
|
2016-04-07 02:39:30 +05:30
|
|
|
}
|
2017-03-24 06:56:06 +05:30
|
|
|
|
2017-03-19 06:43:49 +05:30
|
|
|
void Meta::Version::setTime(const qint64 time)
|
2016-04-07 02:39:30 +05:30
|
|
|
{
|
2018-07-15 18:21:05 +05:30
|
|
|
m_time = time;
|
|
|
|
emit timeChanged();
|
2016-04-07 02:39:30 +05:30
|
|
|
}
|
2017-03-24 06:56:06 +05:30
|
|
|
|
2017-11-11 06:08:31 +05:30
|
|
|
void Meta::Version::setRequires(const Meta::RequireSet &requires, const Meta::RequireSet &conflicts)
|
2016-04-07 02:39:30 +05:30
|
|
|
{
|
2018-07-15 18:21:05 +05:30
|
|
|
m_requires = requires;
|
|
|
|
m_conflicts = conflicts;
|
|
|
|
emit requiresChanged();
|
2016-04-07 02:39:30 +05:30
|
|
|
}
|
2017-03-24 06:56:06 +05:30
|
|
|
|
2017-11-11 06:08:31 +05:30
|
|
|
void Meta::Version::setVolatile(bool volatile_)
|
|
|
|
{
|
2018-07-15 18:21:05 +05:30
|
|
|
m_volatile = volatile_;
|
2017-11-11 06:08:31 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-03-19 06:43:49 +05:30
|
|
|
void Meta::Version::setData(const VersionFilePtr &data)
|
2016-04-07 02:39:30 +05:30
|
|
|
{
|
2018-07-15 18:21:05 +05:30
|
|
|
m_data = data;
|
2016-04-07 02:39:30 +05:30
|
|
|
}
|
2017-03-19 06:43:49 +05:30
|
|
|
|
2017-04-07 03:00:18 +05:30
|
|
|
void Meta::Version::setProvidesRecommendations()
|
|
|
|
{
|
2018-07-15 18:21:05 +05:30
|
|
|
m_providesRecommendations = true;
|
2017-04-07 03:00:18 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
void Meta::Version::setRecommended(bool recommended)
|
|
|
|
{
|
2018-07-15 18:21:05 +05:30
|
|
|
m_recommended = recommended;
|
2017-04-07 03:00:18 +05:30
|
|
|
}
|