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-08-11 22:28:24 +05:30
|
|
|
#include <QStringList>
|
2014-04-23 05:57:40 +05:30
|
|
|
#include <QSet>
|
2014-05-10 05:23:32 +05:30
|
|
|
#include <QDateTime>
|
|
|
|
|
|
|
|
#include "logic/BaseVersion.h"
|
|
|
|
#include "VersionPatch.h"
|
|
|
|
#include "VersionFile.h"
|
|
|
|
|
|
|
|
class VersionFinal;
|
2013-05-04 01:11:37 +05:30
|
|
|
|
2014-05-09 20:46:25 +05:30
|
|
|
struct MinecraftVersion : public BaseVersion, public VersionPatch
|
2013-05-04 01:11:37 +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-10 05:23:32 +05:30
|
|
|
/// where is this from?
|
|
|
|
enum VersionSource
|
|
|
|
{
|
|
|
|
Builtin,
|
|
|
|
Mojang
|
|
|
|
} m_versionSource = Builtin;
|
|
|
|
|
2014-05-08 22:35:07 +05:30
|
|
|
/// 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-10 05:23:32 +05:30
|
|
|
/// version traits. added by MultiMC
|
2014-05-08 22:35:07 +05:30
|
|
|
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-05-10 05:23:32 +05:30
|
|
|
/// The process arguments used by this version
|
|
|
|
QString m_processArguments;
|
2013-11-04 07:23:05 +05:30
|
|
|
|
2014-05-10 05:23:32 +05:30
|
|
|
/// The type of this release
|
|
|
|
QString m_type;
|
2013-11-04 07:23:05 +05:30
|
|
|
|
2014-05-10 05:23:32 +05:30
|
|
|
/// the time this version was actually released by Mojang, as string and as QDateTime
|
|
|
|
QString m_releaseTimeString;
|
|
|
|
QDateTime m_releaseTime;
|
|
|
|
|
|
|
|
/// the time this version was last updated by Mojang, as string and as QDateTime
|
|
|
|
QString m_updateTimeString;
|
|
|
|
QDateTime m_updateTime;
|
|
|
|
|
|
|
|
/// order of this file... default = -2
|
|
|
|
int order = -2;
|
|
|
|
|
|
|
|
bool usesLegacyLauncher();
|
|
|
|
virtual QString descriptor() override;
|
|
|
|
virtual QString name() override;
|
|
|
|
virtual QString typeString() const override;
|
|
|
|
virtual bool hasJarMods() override;
|
|
|
|
virtual bool isVanilla() override;
|
|
|
|
virtual void applyTo(VersionFinal *version) override;
|
|
|
|
virtual int getOrder();
|
|
|
|
virtual void setOrder(int order);
|
|
|
|
virtual QList<JarmodPtr> getJarMods() override;
|
|
|
|
virtual QString getPatchID()
|
2013-08-11 22:28:24 +05:30
|
|
|
{
|
2014-05-10 05:23:32 +05:30
|
|
|
return "net.minecraft";
|
2013-08-11 22:28:24 +05:30
|
|
|
}
|
2014-05-10 05:23:32 +05:30
|
|
|
virtual QString getPatchVersion()
|
2014-05-09 20:46:25 +05:30
|
|
|
{
|
2014-05-10 05:23:32 +05:30
|
|
|
return m_descriptor;
|
2014-05-09 20:46:25 +05:30
|
|
|
}
|
2014-05-10 05:23:32 +05:30
|
|
|
virtual QString getPatchName()
|
2014-05-09 20:46:25 +05:30
|
|
|
{
|
2014-05-10 05:23:32 +05:30
|
|
|
return "Minecraft";
|
2014-05-09 20:46:25 +05:30
|
|
|
}
|
2014-05-10 05:23:32 +05:30
|
|
|
virtual QString getPatchFilename()
|
2014-05-09 20:46:25 +05:30
|
|
|
{
|
2014-05-10 05:23:32 +05:30
|
|
|
return QString();
|
|
|
|
};
|
2013-05-04 01:11:37 +05:30
|
|
|
};
|