2013-02-15 10:10:00 +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
|
2013-10-10 05:17:48 +05:30
|
|
|
*
|
2013-02-15 10:10:00 +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-02-15 10:10:00 +05:30
|
|
|
|
|
|
|
#include <QObject>
|
|
|
|
#include <QDateTime>
|
|
|
|
|
2013-02-26 02:14:36 +05:30
|
|
|
#include <settingsobject.h>
|
|
|
|
|
2013-02-21 06:40:09 +05:30
|
|
|
#include "inifile.h"
|
2013-09-16 04:24:39 +05:30
|
|
|
#include "lists/BaseVersionList.h"
|
2013-11-21 06:01:15 +05:30
|
|
|
#include "logic/auth/MojangAccount.h"
|
2013-02-21 06:40:09 +05:30
|
|
|
|
2013-08-17 17:10:51 +05:30
|
|
|
class QDialog;
|
2013-11-24 11:06:16 +05:30
|
|
|
class Task;
|
2013-08-03 19:27:33 +05:30
|
|
|
class MinecraftProcess;
|
2013-08-04 18:16:33 +05:30
|
|
|
class OneSixUpdate;
|
2013-02-15 10:10:00 +05:30
|
|
|
class InstanceList;
|
2013-08-03 19:27:33 +05:30
|
|
|
class BaseInstancePrivate;
|
2013-02-15 10:10:00 +05:30
|
|
|
|
|
|
|
/*!
|
|
|
|
* \brief Base class for instances.
|
2013-10-10 05:17:48 +05:30
|
|
|
* This class implements many functions that are common between instances and
|
2013-02-15 10:10:00 +05:30
|
|
|
* provides a standard interface for all instances.
|
2013-10-10 05:17:48 +05:30
|
|
|
*
|
2013-02-15 10:10:00 +05:30
|
|
|
* To create a new instance type, create a new class inheriting from this class
|
|
|
|
* and implement the pure virtual functions.
|
|
|
|
*/
|
2013-08-17 17:10:51 +05:30
|
|
|
class BaseInstance : public QObject
|
2013-02-15 10:10:00 +05:30
|
|
|
{
|
|
|
|
Q_OBJECT
|
2013-08-03 19:27:33 +05:30
|
|
|
protected:
|
|
|
|
/// no-touchy!
|
2013-10-10 05:17:48 +05:30
|
|
|
BaseInstance(BaseInstancePrivate *d, const QString &rootDir, SettingsObject *settings,
|
|
|
|
QObject *parent = 0);
|
|
|
|
|
2013-02-15 10:10:00 +05:30
|
|
|
public:
|
2013-08-03 19:27:33 +05:30
|
|
|
/// virtual destructor to make sure the destruction is COMPLETE
|
|
|
|
virtual ~BaseInstance() {};
|
2013-10-10 05:17:48 +05:30
|
|
|
|
|
|
|
/// nuke thoroughly - deletes the instance contents, notifies the list/model which is
|
|
|
|
/// responsible of cleaning up the husk
|
2013-08-26 10:00:11 +05:30
|
|
|
void nuke();
|
2013-10-10 05:17:48 +05:30
|
|
|
|
|
|
|
/// The instance's ID. The ID SHALL be determined by MMC internally. The ID IS guaranteed to
|
|
|
|
/// be unique.
|
2013-08-03 19:27:33 +05:30
|
|
|
QString id() const;
|
2013-10-10 05:17:48 +05:30
|
|
|
|
2013-08-03 19:27:33 +05:30
|
|
|
/// get the type of this instance
|
|
|
|
QString instanceType() const;
|
2013-10-10 05:17:48 +05:30
|
|
|
|
2013-08-03 19:27:33 +05:30
|
|
|
/// Path to the instance's root directory.
|
2013-08-12 04:09:19 +05:30
|
|
|
QString instanceRoot() const;
|
2013-10-10 05:17:48 +05:30
|
|
|
|
2013-08-12 04:09:19 +05:30
|
|
|
/// Path to the instance's minecraft directory.
|
|
|
|
QString minecraftRoot() const;
|
2013-10-10 05:17:48 +05:30
|
|
|
|
2013-08-03 19:27:33 +05:30
|
|
|
QString name() const;
|
|
|
|
void setName(QString val);
|
2013-10-10 05:17:48 +05:30
|
|
|
|
2013-08-03 19:27:33 +05:30
|
|
|
QString iconKey() const;
|
|
|
|
void setIconKey(QString val);
|
2013-10-10 05:17:48 +05:30
|
|
|
|
2013-08-03 19:27:33 +05:30
|
|
|
QString notes() const;
|
|
|
|
void setNotes(QString val);
|
2013-10-10 05:17:48 +05:30
|
|
|
|
2013-08-03 19:27:33 +05:30
|
|
|
QString group() const;
|
2013-08-26 02:18:41 +05:30
|
|
|
void setGroupInitial(QString val);
|
|
|
|
void setGroupPost(QString val);
|
2013-10-10 05:17:48 +05:30
|
|
|
|
2013-08-05 06:59:50 +05:30
|
|
|
virtual QString intendedVersionId() const = 0;
|
2013-08-04 03:28:39 +05:30
|
|
|
virtual bool setIntendedVersionId(QString version) = 0;
|
2013-10-10 05:17:48 +05:30
|
|
|
|
|
|
|
virtual bool versionIsCustom() = 0;
|
|
|
|
|
2013-08-05 06:59:50 +05:30
|
|
|
/*!
|
|
|
|
* The instance's current version.
|
2013-10-10 05:17:48 +05:30
|
|
|
* This value represents the instance's current version. If this value is
|
2013-08-05 06:59:50 +05:30
|
|
|
* different from the intendedVersion, the instance should be updated.
|
|
|
|
* \warning Don't change this value unless you know what you're doing.
|
|
|
|
*/
|
|
|
|
virtual QString currentVersionId() const = 0;
|
2013-10-10 05:17:48 +05:30
|
|
|
|
2013-08-05 06:59:50 +05:30
|
|
|
/*!
|
|
|
|
* Whether or not Minecraft should be downloaded when the instance is launched.
|
|
|
|
*/
|
|
|
|
virtual bool shouldUpdate() const = 0;
|
|
|
|
virtual void setShouldUpdate(bool val) = 0;
|
2013-08-24 06:39:46 +05:30
|
|
|
|
2013-10-10 05:17:48 +05:30
|
|
|
/// Get the curent base jar of this instance. By default, it's the
|
|
|
|
/// versions/$version/$version.jar
|
2013-08-24 06:39:46 +05:30
|
|
|
QString baseJar() const;
|
|
|
|
|
|
|
|
/// the default base jar of this instance
|
|
|
|
virtual QString defaultBaseJar() const = 0;
|
|
|
|
/// the default custom base jar of this instance
|
|
|
|
virtual QString defaultCustomBaseJar() const = 0;
|
2013-10-10 05:17:48 +05:30
|
|
|
|
2013-08-24 06:39:46 +05:30
|
|
|
/*!
|
|
|
|
* Whether or not custom base jar is used
|
|
|
|
*/
|
|
|
|
bool shouldUseCustomBaseJar() const;
|
|
|
|
void setShouldUseCustomBaseJar(bool val);
|
|
|
|
/*!
|
|
|
|
* The value of the custom base jar
|
|
|
|
*/
|
|
|
|
QString customBaseJar() const;
|
|
|
|
void setCustomBaseJar(QString val);
|
2013-10-10 05:17:48 +05:30
|
|
|
|
2013-08-03 19:27:33 +05:30
|
|
|
/**
|
|
|
|
* Gets the time that the instance was last launched.
|
|
|
|
* Stored in milliseconds since epoch.
|
|
|
|
*/
|
|
|
|
qint64 lastLaunch() const;
|
|
|
|
/// Sets the last launched time to 'val' milliseconds since epoch
|
|
|
|
void setLastLaunch(qint64 val = QDateTime::currentMSecsSinceEpoch());
|
2013-10-10 05:17:48 +05:30
|
|
|
|
2013-08-04 03:28:39 +05:30
|
|
|
/*!
|
2013-10-10 05:17:48 +05:30
|
|
|
* \brief Gets the instance list that this instance is a part of.
|
|
|
|
* Returns NULL if this instance is not in a list
|
2013-08-04 03:28:39 +05:30
|
|
|
* (the parent is not an InstanceList).
|
2013-10-10 05:17:48 +05:30
|
|
|
* \return A pointer to the InstanceList containing this instance.
|
2013-08-04 03:28:39 +05:30
|
|
|
*/
|
|
|
|
InstanceList *instList() const;
|
2013-10-10 05:17:48 +05:30
|
|
|
|
2013-03-09 01:26:26 +05:30
|
|
|
/*!
|
|
|
|
* \brief Gets a pointer to this instance's version list.
|
|
|
|
* \return A pointer to the available version list for this instance.
|
|
|
|
*/
|
2013-10-06 04:43:40 +05:30
|
|
|
virtual std::shared_ptr<BaseVersionList> versionList() const;
|
2013-10-10 05:17:48 +05:30
|
|
|
|
2013-02-26 02:14:36 +05:30
|
|
|
/*!
|
|
|
|
* \brief Gets this instance's settings object.
|
|
|
|
* This settings object stores instance-specific settings.
|
|
|
|
* \return A pointer to this instance's settings object.
|
|
|
|
*/
|
2013-02-26 04:06:27 +05:30
|
|
|
virtual SettingsObject &settings() const;
|
2013-10-10 05:17:48 +05:30
|
|
|
|
2013-12-15 22:40:51 +05:30
|
|
|
/// returns a valid update task
|
2013-12-09 02:36:04 +05:30
|
|
|
virtual std::shared_ptr<Task> doUpdate(bool only_prepare) = 0;
|
2013-10-10 05:17:48 +05:30
|
|
|
|
2013-11-21 06:01:15 +05:30
|
|
|
/// returns a valid minecraft process, ready for launch with the given account.
|
|
|
|
virtual MinecraftProcess *prepareForLaunch(MojangAccountPtr account) = 0;
|
2013-10-10 05:17:48 +05:30
|
|
|
|
|
|
|
/// do any necessary cleanups after the instance finishes. also runs before
|
|
|
|
/// 'prepareForLaunch'
|
2013-08-05 06:59:50 +05:30
|
|
|
virtual void cleanupAfterRun() = 0;
|
2013-10-10 05:17:48 +05:30
|
|
|
|
2013-08-17 17:10:51 +05:30
|
|
|
/// create a mod edit dialog for the instance
|
2013-10-10 05:17:48 +05:30
|
|
|
virtual QDialog *createModEditDialog(QWidget *parent) = 0;
|
|
|
|
|
2013-08-25 05:02:42 +05:30
|
|
|
/// is a particular action enabled with this instance selected?
|
|
|
|
virtual bool menuActionEnabled(QString action_name) const = 0;
|
2013-10-10 05:17:48 +05:30
|
|
|
|
2013-08-25 05:02:42 +05:30
|
|
|
virtual QString getStatusbarDescription() = 0;
|
2013-10-10 05:17:48 +05:30
|
|
|
|
2013-08-25 05:02:42 +05:30
|
|
|
/// FIXME: this really should be elsewhere...
|
|
|
|
virtual QString instanceConfigFolder() const = 0;
|
2013-10-10 05:17:48 +05:30
|
|
|
|
2013-03-19 10:54:34 +05:30
|
|
|
signals:
|
|
|
|
/*!
|
|
|
|
* \brief Signal emitted when properties relevant to the instance view change
|
|
|
|
*/
|
2013-10-10 05:17:48 +05:30
|
|
|
void propertiesChanged(BaseInstance *inst);
|
2013-08-26 02:18:41 +05:30
|
|
|
/*!
|
|
|
|
* \brief Signal emitted when groups are affected in any way
|
|
|
|
*/
|
|
|
|
void groupChanged();
|
2013-08-26 10:00:11 +05:30
|
|
|
/*!
|
|
|
|
* \brief The instance just got nuked. Hurray!
|
|
|
|
*/
|
2013-10-10 05:17:48 +05:30
|
|
|
void nuked(BaseInstance *inst);
|
|
|
|
|
2013-12-31 05:54:28 +05:30
|
|
|
protected slots:
|
|
|
|
void iconUpdated(QString key);
|
|
|
|
|
2013-08-03 19:27:33 +05:30
|
|
|
protected:
|
2013-10-06 04:43:40 +05:30
|
|
|
std::shared_ptr<BaseInstancePrivate> inst_d;
|
2013-02-15 10:10:00 +05:30
|
|
|
};
|
|
|
|
|
2013-02-22 20:47:31 +05:30
|
|
|
// pointer for lazy people
|
2013-10-06 04:43:40 +05:30
|
|
|
typedef std::shared_ptr<BaseInstance> InstancePtr;
|