2017-01-08 09:28:05 +05:30
|
|
|
/* Copyright 2015-2017 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"
|
2017-10-12 02:34:24 +05:30
|
|
|
#include "minecraft/ComponentList.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)
|
2016-04-07 02:39:30 +05:30
|
|
|
: BaseVersion(), m_uid(uid), m_version(version)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
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
|
|
|
{
|
|
|
|
return m_version;
|
|
|
|
}
|
2017-03-19 06:43:49 +05:30
|
|
|
QString Meta::Version::name()
|
2016-04-07 02:39:30 +05:30
|
|
|
{
|
2017-03-20 04:28:54 +05:30
|
|
|
if(m_data)
|
2017-03-27 07:04:39 +05:30
|
|
|
return m_data->name;
|
2017-03-20 04:28:54 +05:30
|
|
|
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
|
|
|
{
|
|
|
|
return m_type;
|
|
|
|
}
|
|
|
|
|
2017-03-19 06:43:49 +05:30
|
|
|
QDateTime Meta::Version::time() const
|
2016-04-07 02:39:30 +05:30
|
|
|
{
|
|
|
|
return QDateTime::fromMSecsSinceEpoch(m_time * 1000, Qt::UTC);
|
|
|
|
}
|
|
|
|
|
2017-03-19 06:43:49 +05:30
|
|
|
void Meta::Version::parse(const QJsonObject& obj)
|
2017-03-17 06:18:54 +05:30
|
|
|
{
|
|
|
|
parseVersion(obj, this);
|
2016-04-07 02:39:30 +05:30
|
|
|
}
|
|
|
|
|
2017-03-19 06:43:49 +05:30
|
|
|
void Meta::Version::merge(const std::shared_ptr<BaseEntity> &other)
|
2016-04-07 02:39:30 +05:30
|
|
|
{
|
2017-03-11 06:09:45 +05:30
|
|
|
VersionPtr version = std::dynamic_pointer_cast<Version>(other);
|
2017-04-07 03:00:18 +05:30
|
|
|
if(version->m_providesRecommendations)
|
|
|
|
{
|
|
|
|
if(m_recommended != version->m_recommended)
|
|
|
|
{
|
|
|
|
setRecommended(version->m_recommended);
|
|
|
|
}
|
|
|
|
}
|
2016-04-07 02:39:30 +05:30
|
|
|
if (m_type != version->m_type)
|
|
|
|
{
|
|
|
|
setType(version->m_type);
|
|
|
|
}
|
|
|
|
if (m_time != version->m_time)
|
|
|
|
{
|
|
|
|
setTime(version->m_time);
|
|
|
|
}
|
|
|
|
if (m_requires != version->m_requires)
|
|
|
|
{
|
2017-11-11 06:08:31 +05:30
|
|
|
m_requires = version->m_requires;
|
|
|
|
}
|
|
|
|
if (m_conflicts != version->m_conflicts)
|
|
|
|
{
|
|
|
|
m_conflicts = version->m_conflicts;
|
2016-04-07 02:39:30 +05:30
|
|
|
}
|
2017-03-24 06:56:06 +05:30
|
|
|
if (m_parentUid != version->m_parentUid)
|
|
|
|
{
|
|
|
|
setParentUid(version->m_parentUid);
|
|
|
|
}
|
2017-11-11 06:08:31 +05:30
|
|
|
if(m_volatile != version->m_volatile)
|
|
|
|
{
|
|
|
|
setVolatile(version->m_volatile);
|
|
|
|
}
|
2017-04-24 05:00:51 +05:30
|
|
|
if(version->m_data)
|
|
|
|
{
|
|
|
|
setData(version->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
|
|
|
{
|
|
|
|
return m_uid + '/' + m_version + ".json";
|
|
|
|
}
|
|
|
|
|
2017-03-24 06:56:06 +05:30
|
|
|
void Meta::Version::setParentUid(const QString& parentUid)
|
|
|
|
{
|
|
|
|
m_parentUid = parentUid;
|
|
|
|
emit requiresChanged();
|
|
|
|
}
|
|
|
|
|
2017-03-19 06:43:49 +05:30
|
|
|
void Meta::Version::setType(const QString &type)
|
2016-04-07 02:39:30 +05:30
|
|
|
{
|
|
|
|
m_type = type;
|
|
|
|
emit typeChanged();
|
|
|
|
}
|
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
|
|
|
{
|
|
|
|
m_time = time;
|
|
|
|
emit timeChanged();
|
|
|
|
}
|
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
|
|
|
{
|
|
|
|
m_requires = requires;
|
2017-11-11 06:08:31 +05:30
|
|
|
m_conflicts = conflicts;
|
2016-04-07 02:39:30 +05:30
|
|
|
emit requiresChanged();
|
|
|
|
}
|
2017-03-24 06:56:06 +05:30
|
|
|
|
2017-11-11 06:08:31 +05:30
|
|
|
void Meta::Version::setVolatile(bool volatile_)
|
|
|
|
{
|
|
|
|
m_volatile = volatile_;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-03-19 06:43:49 +05:30
|
|
|
void Meta::Version::setData(const VersionFilePtr &data)
|
2016-04-07 02:39:30 +05:30
|
|
|
{
|
|
|
|
m_data = data;
|
|
|
|
}
|
2017-03-19 06:43:49 +05:30
|
|
|
|
2017-04-07 03:00:18 +05:30
|
|
|
void Meta::Version::setProvidesRecommendations()
|
|
|
|
{
|
|
|
|
m_providesRecommendations = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Meta::Version::setRecommended(bool recommended)
|
|
|
|
{
|
|
|
|
m_recommended = recommended;
|
|
|
|
}
|