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
|
|
|
|
2014-05-09 00:50:10 +05:30
|
|
|
#include "logic/BaseVersion.h"
|
2013-08-11 22:28:24 +05:30
|
|
|
#include <QStringList>
|
2014-04-23 05:57:40 +05:30
|
|
|
#include <QSet>
|
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
|
|
|
{
|
2014-05-08 22:35:07 +05:30
|
|
|
/// The version's timestamp - this is primarily used for sorting versions in a list.
|
2013-09-16 04:24:39 +05:30
|
|
|
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
|
|
|
/// 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
|
|
|
|
2014-05-08 22:35:07 +05:30
|
|
|
/// is this a built-in version that comes with MultiMC?
|
|
|
|
bool is_builtin = false;
|
|
|
|
|
|
|
|
/// the human readable version name
|
2013-09-16 04:24:39 +05:30
|
|
|
QString m_name;
|
2013-11-04 07:23:05 +05:30
|
|
|
|
2014-05-08 22:35:07 +05:30
|
|
|
/// the version ID.
|
2013-09-16 04:24:39 +05:30
|
|
|
QString m_descriptor;
|
2013-11-04 07:23:05 +05:30
|
|
|
|
2014-05-08 22:35:07 +05:30
|
|
|
/// version traits. generally launcher business...
|
|
|
|
QSet<QString> m_traits;
|
|
|
|
|
|
|
|
/// The main class this version uses (if any, can be empty).
|
|
|
|
QString m_mainClass;
|
|
|
|
|
|
|
|
/// The applet class this version uses (if any, can be empty).
|
|
|
|
QString m_appletClass;
|
|
|
|
|
2014-04-23 05:57:40 +05:30
|
|
|
bool usesLegacyLauncher()
|
|
|
|
{
|
2014-05-08 22:35:07 +05:30
|
|
|
return m_traits.contains("legacyLaunch") || m_traits.contains("aplhaLaunch");
|
2014-04-23 05:57:40 +05:30
|
|
|
}
|
|
|
|
|
2014-05-08 22:35:07 +05:30
|
|
|
virtual QString descriptor() override
|
2013-09-16 04:24:39 +05:30
|
|
|
{
|
|
|
|
return m_descriptor;
|
|
|
|
}
|
2013-11-04 07:23:05 +05:30
|
|
|
|
2014-05-08 22:35:07 +05:30
|
|
|
virtual QString name() override
|
2013-09-16 04:24:39 +05:30
|
|
|
{
|
|
|
|
return m_name;
|
|
|
|
}
|
2013-11-04 07:23:05 +05:30
|
|
|
|
2014-05-08 22:35:07 +05:30
|
|
|
virtual QString typeString() const override
|
2013-08-11 22:28:24 +05:30
|
|
|
{
|
2014-04-23 05:57:40 +05:30
|
|
|
if (is_latest && is_snapshot)
|
2013-08-11 22:28:24 +05:30
|
|
|
{
|
2014-04-23 05:57:40 +05:30
|
|
|
return QObject::tr("Latest snapshot");
|
2013-08-11 22:28:24 +05:30
|
|
|
}
|
2014-04-23 05:57:40 +05:30
|
|
|
else if(is_latest)
|
2013-08-11 22:28:24 +05:30
|
|
|
{
|
2014-04-23 05:57:40 +05:30
|
|
|
return QObject::tr("Latest release");
|
|
|
|
}
|
|
|
|
else if(is_snapshot)
|
|
|
|
{
|
2014-05-08 22:35:07 +05:30
|
|
|
return QObject::tr("Snapshot");
|
|
|
|
}
|
|
|
|
else if(is_builtin)
|
|
|
|
{
|
|
|
|
return QObject::tr("Museum piece");
|
2013-08-11 22:28:24 +05:30
|
|
|
}
|
2014-04-23 05:57:40 +05:30
|
|
|
else
|
2013-08-11 22:28:24 +05:30
|
|
|
{
|
2014-04-23 05:57:40 +05:30
|
|
|
return QObject::tr("Regular release");
|
2013-08-11 22:28:24 +05:30
|
|
|
}
|
|
|
|
}
|
2013-05-04 01:11:37 +05:30
|
|
|
};
|