2017-01-08 09:28:05 +05:30
|
|
|
/* Copyright 2013-2017 MultiMC Contributors
|
2014-01-24 02:01:41 +05:30
|
|
|
*
|
|
|
|
* 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 <memory>
|
|
|
|
|
2015-09-05 22:16:57 +05:30
|
|
|
#include "multimc_logic_export.h"
|
|
|
|
|
2017-07-24 12:31:37 +05:30
|
|
|
class MinecraftInstance;
|
2014-01-24 02:01:41 +05:30
|
|
|
class QDir;
|
|
|
|
class QString;
|
2014-03-15 01:18:57 +05:30
|
|
|
class QObject;
|
2015-04-27 02:34:50 +05:30
|
|
|
class Task;
|
2015-09-26 07:34:09 +05:30
|
|
|
class BaseVersion;
|
2014-03-15 01:18:57 +05:30
|
|
|
typedef std::shared_ptr<BaseVersion> BaseVersionPtr;
|
2014-01-24 02:01:41 +05:30
|
|
|
|
2015-09-05 22:16:57 +05:30
|
|
|
class MULTIMC_LOGIC_EXPORT BaseInstaller
|
2014-01-24 02:01:41 +05:30
|
|
|
{
|
|
|
|
public:
|
|
|
|
BaseInstaller();
|
2014-04-23 05:57:40 +05:30
|
|
|
virtual ~BaseInstaller(){};
|
2017-07-24 12:31:37 +05:30
|
|
|
bool isApplied(MinecraftInstance *on);
|
2014-01-24 02:01:41 +05:30
|
|
|
|
2017-07-24 12:31:37 +05:30
|
|
|
virtual bool add(MinecraftInstance *to);
|
|
|
|
virtual bool remove(MinecraftInstance *from);
|
2014-01-24 02:01:41 +05:30
|
|
|
|
2017-07-24 12:31:37 +05:30
|
|
|
virtual Task *createInstallTask(MinecraftInstance *instance, BaseVersionPtr version, QObject *parent) = 0;
|
2014-03-15 01:18:57 +05:30
|
|
|
|
2014-01-24 02:01:41 +05:30
|
|
|
protected:
|
|
|
|
virtual QString id() const = 0;
|
|
|
|
QString filename(const QString &root) const;
|
|
|
|
QDir patchesDir(const QString &root) const;
|
|
|
|
};
|