2013-05-03 20:41:37 +01:00
|
|
|
/* 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 01:53:05 +00:00
|
|
|
*
|
2013-05-03 20:41:37 +01:00
|
|
|
* 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-28 23:59:35 +01:00
|
|
|
#pragma once
|
2013-05-03 20:41:37 +01:00
|
|
|
|
2014-05-08 20:20:10 +01:00
|
|
|
#include "logic/BaseVersion.h"
|
2014-05-09 16:16:25 +01:00
|
|
|
#include "VersionPatch.h"
|
2013-08-11 17:58:24 +01:00
|
|
|
#include <QStringList>
|
2014-04-23 01:27:40 +01:00
|
|
|
#include <QSet>
|
2013-05-03 20:41:37 +01:00
|
|
|
|
2014-05-09 16:16:25 +01:00
|
|
|
struct MinecraftVersion : public BaseVersion, public VersionPatch
|
2013-05-03 20:41:37 +01:00
|
|
|
{
|
2014-05-08 18:05:07 +01:00
|
|
|
/// The version's timestamp - this is primarily used for sorting versions in a list.
|
2013-09-15 23:54:39 +01:00
|
|
|
qint64 timestamp;
|
2013-11-04 01:53:05 +00:00
|
|
|
|
2013-08-11 17:58:24 +01:00
|
|
|
/// The URL that this version will be downloaded from. maybe.
|
|
|
|
QString download_url;
|
2013-11-04 01:53:05 +00:00
|
|
|
|
2013-08-11 17:58:24 +01:00
|
|
|
/// is this the latest version?
|
|
|
|
bool is_latest = false;
|
2013-11-04 01:53:05 +00:00
|
|
|
|
2013-08-11 17:58:24 +01:00
|
|
|
/// is this a snapshot?
|
|
|
|
bool is_snapshot = false;
|
2013-11-04 01:53:05 +00:00
|
|
|
|
2014-05-08 18:05:07 +01:00
|
|
|
/// is this a built-in version that comes with MultiMC?
|
|
|
|
bool is_builtin = false;
|
|
|
|
|
|
|
|
/// the human readable version name
|
2013-09-15 23:54:39 +01:00
|
|
|
QString m_name;
|
2013-11-04 01:53:05 +00:00
|
|
|
|
2014-05-08 18:05:07 +01:00
|
|
|
/// the version ID.
|
2013-09-15 23:54:39 +01:00
|
|
|
QString m_descriptor;
|
2013-11-04 01:53:05 +00:00
|
|
|
|
2014-05-08 18:05:07 +01:00
|
|
|
/// 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 01:27:40 +01:00
|
|
|
bool usesLegacyLauncher()
|
|
|
|
{
|
2014-05-08 18:05:07 +01:00
|
|
|
return m_traits.contains("legacyLaunch") || m_traits.contains("aplhaLaunch");
|
2014-04-23 01:27:40 +01:00
|
|
|
}
|
|
|
|
|
2014-05-08 18:05:07 +01:00
|
|
|
virtual QString descriptor() override
|
2013-09-15 23:54:39 +01:00
|
|
|
{
|
|
|
|
return m_descriptor;
|
|
|
|
}
|
2013-11-04 01:53:05 +00:00
|
|
|
|
2014-05-08 18:05:07 +01:00
|
|
|
virtual QString name() override
|
2013-09-15 23:54:39 +01:00
|
|
|
{
|
|
|
|
return m_name;
|
|
|
|
}
|
2013-11-04 01:53:05 +00:00
|
|
|
|
2014-05-08 18:05:07 +01:00
|
|
|
virtual QString typeString() const override
|
2013-08-11 17:58:24 +01:00
|
|
|
{
|
2014-04-23 01:27:40 +01:00
|
|
|
if (is_latest && is_snapshot)
|
2013-08-11 17:58:24 +01:00
|
|
|
{
|
2014-04-23 01:27:40 +01:00
|
|
|
return QObject::tr("Latest snapshot");
|
2013-08-11 17:58:24 +01:00
|
|
|
}
|
2014-04-23 01:27:40 +01:00
|
|
|
else if(is_latest)
|
2013-08-11 17:58:24 +01:00
|
|
|
{
|
2014-04-23 01:27:40 +01:00
|
|
|
return QObject::tr("Latest release");
|
|
|
|
}
|
|
|
|
else if(is_snapshot)
|
|
|
|
{
|
2014-05-08 18:05:07 +01:00
|
|
|
return QObject::tr("Snapshot");
|
|
|
|
}
|
|
|
|
else if(is_builtin)
|
|
|
|
{
|
|
|
|
return QObject::tr("Museum piece");
|
2013-08-11 17:58:24 +01:00
|
|
|
}
|
2014-04-23 01:27:40 +01:00
|
|
|
else
|
2013-08-11 17:58:24 +01:00
|
|
|
{
|
2014-04-23 01:27:40 +01:00
|
|
|
return QObject::tr("Regular release");
|
2013-08-11 17:58:24 +01:00
|
|
|
}
|
|
|
|
}
|
2014-05-09 16:16:25 +01:00
|
|
|
|
|
|
|
virtual bool hasJarMods() override
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual bool isVanilla() override
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual void applyTo(VersionFinal *version)
|
|
|
|
{
|
|
|
|
// umm... what now?
|
|
|
|
}
|
2013-05-03 20:41:37 +01:00
|
|
|
};
|