summaryrefslogtreecommitdiffstats
path: root/api/logic/meta/Version.cpp
blob: c90565477e65fcb3897ca5d401c7d34e4f74c9f9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
/* Copyright 2015-2017 MultiMC Contributors
 *
 * 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 "Version.h"

#include <QDateTime>

#include "JsonFormat.h"
#include "minecraft/ComponentList.h"

Meta::Version::Version(const QString &uid, const QString &version)
	: BaseVersion(), m_uid(uid), m_version(version)
{
}

Meta::Version::~Version()
{
}

QString Meta::Version::descriptor()
{
	return m_version;
}
QString Meta::Version::name()
{
	if(m_data)
		return m_data->name;
	return m_uid;
}
QString Meta::Version::typeString() const
{
	return m_type;
}

QDateTime Meta::Version::time() const
{
	return QDateTime::fromMSecsSinceEpoch(m_time * 1000, Qt::UTC);
}

void Meta::Version::parse(const QJsonObject& obj)
{
	parseVersion(obj, this);
}

void Meta::Version::mergeFromList(const Meta::VersionPtr& other)
{
	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);
	}
}

void Meta::Version::merge(const VersionPtr &other)
{
	mergeFromList(other);
	if(other->m_data)
	{
		setData(other->m_data);
	}
}

QString Meta::Version::localFilename() const
{
	return m_uid + '/' + m_version + ".json";
}

void Meta::Version::setType(const QString &type)
{
	m_type = type;
	emit typeChanged();
}

void Meta::Version::setTime(const qint64 time)
{
	m_time = time;
	emit timeChanged();
}

void Meta::Version::setRequires(const Meta::RequireSet &requires, const Meta::RequireSet &conflicts)
{
	m_requires = requires;
	m_conflicts = conflicts;
	emit requiresChanged();
}

void Meta::Version::setVolatile(bool volatile_)
{
	m_volatile = volatile_;
}


void Meta::Version::setData(const VersionFilePtr &data)
{
	m_data = data;
}

void Meta::Version::setProvidesRecommendations()
{
	m_providesRecommendations = true;
}

void Meta::Version::setRecommended(bool recommended)
{
	m_recommended = recommended;
}