2013-02-22 00:10:17 +00:00
|
|
|
/* 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
|
2013-11-04 01:53:05 +00:00
|
|
|
*
|
2013-02-22 00:10:17 +00: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-02-22 00:10:17 +00:00
|
|
|
|
|
|
|
#include <QObject>
|
2013-05-08 18:56:43 +01:00
|
|
|
#include <QList>
|
|
|
|
#include <QUrl>
|
|
|
|
|
2013-11-04 01:53:05 +00:00
|
|
|
#include "logic/net/NetJob.h"
|
|
|
|
#include "logic/tasks/Task.h"
|
2013-11-24 23:46:52 +00:00
|
|
|
#include "logic/JavaChecker.h"
|
2013-06-22 22:34:33 +01:00
|
|
|
|
2013-07-07 22:51:26 +01:00
|
|
|
class MinecraftVersion;
|
2013-08-03 22:58:39 +01:00
|
|
|
class BaseInstance;
|
2013-06-22 22:34:33 +01:00
|
|
|
|
2013-11-24 05:36:16 +00:00
|
|
|
class OneSixUpdate : public Task
|
2013-02-22 00:10:17 +00:00
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
2013-11-24 23:46:52 +00:00
|
|
|
explicit OneSixUpdate(BaseInstance *inst, bool prepare_for_launch, QObject *parent = 0);
|
2013-05-08 18:56:43 +01:00
|
|
|
virtual void executeTask();
|
2013-11-04 01:53:05 +00:00
|
|
|
|
|
|
|
private
|
|
|
|
slots:
|
2013-08-05 02:29:50 +01:00
|
|
|
void versionFileStart();
|
2013-07-07 22:51:26 +01:00
|
|
|
void versionFileFinished();
|
|
|
|
void versionFileFailed();
|
2013-11-04 01:53:05 +00:00
|
|
|
|
2013-08-05 02:29:50 +01:00
|
|
|
void jarlibStart();
|
2013-07-09 21:46:33 +01:00
|
|
|
void jarlibFinished();
|
|
|
|
void jarlibFailed();
|
2013-11-04 01:53:05 +00:00
|
|
|
|
2013-11-24 23:46:52 +00:00
|
|
|
void checkJava();
|
|
|
|
void checkFinished(JavaCheckResult result);
|
|
|
|
|
|
|
|
// extract the appropriate libraries
|
|
|
|
void prepareForLaunch();
|
2013-12-08 16:34:45 +00:00
|
|
|
|
2013-02-22 00:10:17 +00:00
|
|
|
private:
|
2013-10-26 18:55:48 +01:00
|
|
|
NetJobPtr specificVersionDownloadJob;
|
|
|
|
NetJobPtr jarlibDownloadJob;
|
2013-11-04 01:53:05 +00:00
|
|
|
|
2013-07-07 22:51:26 +01:00
|
|
|
// target version, determined during this task
|
2013-10-06 00:13:40 +01:00
|
|
|
std::shared_ptr<MinecraftVersion> targetVersion;
|
2013-11-24 23:46:52 +00:00
|
|
|
BaseInstance *m_inst = nullptr;
|
|
|
|
bool m_prepare_for_launch = false;
|
|
|
|
std::shared_ptr<JavaChecker> checker;
|
|
|
|
|
|
|
|
bool java_is_64bit = false;
|
2013-02-22 00:10:17 +00:00
|
|
|
};
|