2013-08-07 05:08:18 +05:30
|
|
|
/* Copyright 2013 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <QObject>
|
|
|
|
#include <QList>
|
|
|
|
#include <QUrl>
|
|
|
|
|
2013-10-26 23:25:48 +05:30
|
|
|
#include "net/NetJob.h"
|
2013-08-07 05:08:18 +05:30
|
|
|
#include "tasks/Task.h"
|
|
|
|
#include "BaseUpdate.h"
|
|
|
|
|
|
|
|
class MinecraftVersion;
|
|
|
|
class BaseInstance;
|
2013-08-24 06:39:46 +05:30
|
|
|
class QuaZip;
|
|
|
|
class Mod;
|
2013-08-07 05:08:18 +05:30
|
|
|
|
2013-08-17 17:10:51 +05:30
|
|
|
class LegacyUpdate : public BaseUpdate
|
2013-08-07 05:08:18 +05:30
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
explicit LegacyUpdate(BaseInstance *inst, QObject *parent = 0);
|
|
|
|
virtual void executeTask();
|
|
|
|
|
|
|
|
private slots:
|
|
|
|
void lwjglStart();
|
|
|
|
void lwjglFinished( QNetworkReply* );
|
|
|
|
void lwjglFailed();
|
2013-08-12 04:09:19 +05:30
|
|
|
|
|
|
|
void jarStart();
|
|
|
|
void jarFinished();
|
|
|
|
void jarFailed();
|
|
|
|
|
2013-08-07 05:08:18 +05:30
|
|
|
void extractLwjgl();
|
2013-08-14 11:43:41 +05:30
|
|
|
|
|
|
|
void ModTheJar();
|
2013-08-07 05:08:18 +05:30
|
|
|
private:
|
2013-08-29 01:22:19 +05:30
|
|
|
enum MetainfAction
|
|
|
|
{
|
|
|
|
KeepMetainf, // the META-INF folder will be added from the merged jar
|
|
|
|
IgnoreMetainf // the META-INF from the merged jar will be ignored
|
|
|
|
};
|
|
|
|
bool MergeZipFiles(QuaZip *into, QFileInfo from, QSet<QString>& contained, MetainfAction metainf);
|
2013-08-24 06:39:46 +05:30
|
|
|
private:
|
2013-08-07 05:08:18 +05:30
|
|
|
|
2013-10-06 04:43:40 +05:30
|
|
|
std::shared_ptr<QNetworkReply> m_reply;
|
2013-08-07 05:08:18 +05:30
|
|
|
|
|
|
|
// target version, determined during this task
|
|
|
|
// MinecraftVersion *targetVersion;
|
|
|
|
QString lwjglURL;
|
|
|
|
QString lwjglVersion;
|
2013-08-09 03:56:35 +05:30
|
|
|
|
|
|
|
QString lwjglTargetPath;
|
|
|
|
QString lwjglNativesPath;
|
2013-08-12 04:09:19 +05:30
|
|
|
private:
|
2013-10-26 23:25:48 +05:30
|
|
|
NetJobPtr legacyDownloadJob;
|
2013-08-07 05:08:18 +05:30
|
|
|
};
|
|
|
|
|
|
|
|
|