2013-05-04 01:11:37 +05:30
|
|
|
/* Copyright 2013 Andrew Okin
|
|
|
|
*
|
|
|
|
* 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
|
2013-11-04 07:23:05 +05:30
|
|
|
*
|
2013-05-04 01:11:37 +05:30
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
2013-07-29 04:29:35 +05:30
|
|
|
#pragma once
|
2013-05-04 01:11:37 +05:30
|
|
|
|
2013-09-16 04:24:39 +05:30
|
|
|
#include "BaseVersion.h"
|
2013-08-11 22:28:24 +05:30
|
|
|
#include <QStringList>
|
2013-05-04 01:11:37 +05:30
|
|
|
|
2013-09-16 04:24:39 +05:30
|
|
|
struct MinecraftVersion : public BaseVersion
|
2013-05-04 01:11:37 +05:30
|
|
|
{
|
2013-09-16 04:24:39 +05:30
|
|
|
/*!
|
|
|
|
* Gets the version's timestamp.
|
|
|
|
* This is primarily used for sorting versions in a list.
|
|
|
|
*/
|
|
|
|
qint64 timestamp;
|
2013-11-04 07:23:05 +05:30
|
|
|
|
2013-08-11 22:28:24 +05:30
|
|
|
/// The URL that this version will be downloaded from. maybe.
|
|
|
|
QString download_url;
|
2013-11-04 07:23:05 +05:30
|
|
|
|
2013-08-11 22:28:24 +05:30
|
|
|
/// This version's type. Used internally to identify what kind of version this is.
|
2013-05-04 01:11:37 +05:30
|
|
|
enum VersionType
|
|
|
|
{
|
2013-08-11 22:28:24 +05:30
|
|
|
OneSix,
|
|
|
|
Legacy,
|
2013-08-07 05:08:18 +05:30
|
|
|
Nostalgia
|
2013-08-11 22:28:24 +05:30
|
|
|
} type;
|
2013-11-04 07:23:05 +05:30
|
|
|
|
2013-08-11 22:28:24 +05:30
|
|
|
/// is this the latest version?
|
|
|
|
bool is_latest = false;
|
2013-11-04 07:23:05 +05:30
|
|
|
|
2013-08-11 22:28:24 +05:30
|
|
|
/// is this a snapshot?
|
|
|
|
bool is_snapshot = false;
|
2013-11-04 07:23:05 +05:30
|
|
|
|
2013-09-16 04:24:39 +05:30
|
|
|
QString m_name;
|
2013-11-04 07:23:05 +05:30
|
|
|
|
2013-09-16 04:24:39 +05:30
|
|
|
QString m_descriptor;
|
2013-11-04 07:23:05 +05:30
|
|
|
|
|
|
|
virtual QString descriptor()
|
2013-09-16 04:24:39 +05:30
|
|
|
{
|
|
|
|
return m_descriptor;
|
|
|
|
}
|
2013-11-04 07:23:05 +05:30
|
|
|
|
|
|
|
virtual QString name()
|
2013-09-16 04:24:39 +05:30
|
|
|
{
|
|
|
|
return m_name;
|
|
|
|
}
|
2013-11-04 07:23:05 +05:30
|
|
|
|
2013-08-11 22:28:24 +05:30
|
|
|
virtual QString typeString() const
|
|
|
|
{
|
|
|
|
QStringList pre_final;
|
2013-11-04 07:23:05 +05:30
|
|
|
if (is_latest == true)
|
2013-08-11 22:28:24 +05:30
|
|
|
{
|
|
|
|
pre_final.append("Latest");
|
|
|
|
}
|
|
|
|
switch (type)
|
|
|
|
{
|
|
|
|
case OneSix:
|
|
|
|
pre_final.append("OneSix");
|
|
|
|
break;
|
|
|
|
case Legacy:
|
|
|
|
pre_final.append("Legacy");
|
|
|
|
break;
|
|
|
|
case Nostalgia:
|
|
|
|
pre_final.append("Nostalgia");
|
|
|
|
break;
|
2013-11-04 07:23:05 +05:30
|
|
|
|
2013-08-11 22:28:24 +05:30
|
|
|
default:
|
|
|
|
pre_final.append(QString("Type(%1)").arg(type));
|
|
|
|
break;
|
|
|
|
}
|
2013-11-04 07:23:05 +05:30
|
|
|
if (is_snapshot == true)
|
2013-08-11 22:28:24 +05:30
|
|
|
{
|
|
|
|
pre_final.append("Snapshot");
|
|
|
|
}
|
|
|
|
return pre_final.join(' ');
|
|
|
|
}
|
2013-05-04 01:11:37 +05:30
|
|
|
};
|