2015-02-02 14:25:30 -08:00
|
|
|
/* Copyright 2013-2015 MultiMC Contributors
|
2013-02-14 22:40:00 -06:00
|
|
|
*
|
|
|
|
* 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 01:47:48 +02:00
|
|
|
*
|
2013-02-14 22:40:00 -06: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-29 00:59:35 +02:00
|
|
|
#pragma once
|
2013-02-14 22:40:00 -06:00
|
|
|
|
|
|
|
#include <QObject>
|
|
|
|
#include <QDateTime>
|
2014-03-10 17:38:27 +01:00
|
|
|
#include <QSet>
|
2013-02-14 22:40:00 -06:00
|
|
|
|
2015-02-09 01:51:14 +01:00
|
|
|
#include "settings/SettingsObject.h"
|
2013-02-25 14:44:36 -06:00
|
|
|
|
2015-02-09 01:51:14 +01:00
|
|
|
#include "settings/INIFile.h"
|
|
|
|
#include "BaseVersionList.h"
|
|
|
|
#include "auth/MojangAccount.h"
|
2013-02-20 19:10:09 -06:00
|
|
|
|
2014-02-21 19:15:59 +01:00
|
|
|
class QDir;
|
2013-11-24 06:36:16 +01:00
|
|
|
class Task;
|
2015-01-27 22:31:07 +01:00
|
|
|
class BaseProcess;
|
2015-02-04 21:10:10 +01:00
|
|
|
class BaseInstance;
|
2013-02-14 22:40:00 -06:00
|
|
|
|
2014-09-06 18:16:56 +02:00
|
|
|
// pointer for lazy people
|
|
|
|
typedef std::shared_ptr<BaseInstance> InstancePtr;
|
|
|
|
|
2013-02-14 22:40:00 -06:00
|
|
|
/*!
|
|
|
|
* \brief Base class for instances.
|
2013-10-10 01:47:48 +02:00
|
|
|
* This class implements many functions that are common between instances and
|
2013-02-14 22:40:00 -06:00
|
|
|
* provides a standard interface for all instances.
|
2013-10-10 01:47:48 +02:00
|
|
|
*
|
2013-02-14 22:40:00 -06:00
|
|
|
* To create a new instance type, create a new class inheriting from this class
|
|
|
|
* and implement the pure virtual functions.
|
|
|
|
*/
|
2015-01-27 22:31:07 +01:00
|
|
|
class BaseInstance : public QObject, public std::enable_shared_from_this<BaseInstance>
|
2013-02-14 22:40:00 -06:00
|
|
|
{
|
|
|
|
Q_OBJECT
|
2013-08-03 15:57:33 +02:00
|
|
|
protected:
|
|
|
|
/// no-touchy!
|
2015-02-01 03:08:25 +01:00
|
|
|
BaseInstance(SettingsObjectPtr globalSettings, SettingsObjectPtr settings, const QString &rootDir);
|
2013-10-10 01:47:48 +02:00
|
|
|
|
2013-02-14 22:40:00 -06:00
|
|
|
public:
|
2013-08-03 15:57:33 +02:00
|
|
|
/// virtual destructor to make sure the destruction is COMPLETE
|
|
|
|
virtual ~BaseInstance() {};
|
2013-10-10 01:47:48 +02:00
|
|
|
|
2014-02-21 19:15:59 +01:00
|
|
|
virtual void copy(const QDir &newDir) {}
|
2014-02-21 18:01:06 +01:00
|
|
|
|
2015-01-27 22:31:07 +01:00
|
|
|
virtual void init() = 0;
|
|
|
|
|
2013-10-10 01:47:48 +02:00
|
|
|
/// nuke thoroughly - deletes the instance contents, notifies the list/model which is
|
|
|
|
/// responsible of cleaning up the husk
|
2013-08-26 06:30:11 +02:00
|
|
|
void nuke();
|
2013-10-10 01:47:48 +02:00
|
|
|
|
|
|
|
/// The instance's ID. The ID SHALL be determined by MMC internally. The ID IS guaranteed to
|
|
|
|
/// be unique.
|
2014-01-15 22:49:37 +01:00
|
|
|
virtual QString id() const;
|
2013-10-10 01:47:48 +02:00
|
|
|
|
2014-12-18 02:48:14 +01:00
|
|
|
void setRunning(bool running);
|
|
|
|
bool isRunning() const;
|
2014-06-30 02:02:57 +02:00
|
|
|
|
2013-08-03 15:57:33 +02:00
|
|
|
/// get the type of this instance
|
|
|
|
QString instanceType() const;
|
2013-10-10 01:47:48 +02:00
|
|
|
|
2013-08-03 15:57:33 +02:00
|
|
|
/// Path to the instance's root directory.
|
2013-08-12 00:39:19 +02:00
|
|
|
QString instanceRoot() const;
|
2013-10-10 01:47:48 +02:00
|
|
|
|
2013-08-03 15:57:33 +02:00
|
|
|
QString name() const;
|
|
|
|
void setName(QString val);
|
2013-10-10 01:47:48 +02:00
|
|
|
|
2014-01-12 23:38:12 +01:00
|
|
|
/// Value used for instance window titles
|
|
|
|
QString windowTitle() const;
|
|
|
|
|
2013-08-03 15:57:33 +02:00
|
|
|
QString iconKey() const;
|
|
|
|
void setIconKey(QString val);
|
2013-10-10 01:47:48 +02:00
|
|
|
|
2013-08-03 15:57:33 +02:00
|
|
|
QString notes() const;
|
|
|
|
void setNotes(QString val);
|
2013-10-10 01:47:48 +02:00
|
|
|
|
2013-08-03 15:57:33 +02:00
|
|
|
QString group() const;
|
2013-08-25 22:48:41 +02:00
|
|
|
void setGroupInitial(QString val);
|
|
|
|
void setGroupPost(QString val);
|
2013-10-10 01:47:48 +02:00
|
|
|
|
2014-05-05 00:10:59 +02:00
|
|
|
virtual QStringList extraArguments() const;
|
2014-01-09 01:22:34 +01:00
|
|
|
|
2013-08-05 03:29:50 +02:00
|
|
|
virtual QString intendedVersionId() const = 0;
|
2013-08-03 23:58:39 +02:00
|
|
|
virtual bool setIntendedVersionId(QString version) = 0;
|
2013-10-10 01:47:48 +02:00
|
|
|
|
2013-08-05 03:29:50 +02:00
|
|
|
/*!
|
|
|
|
* The instance's current version.
|
2013-10-10 01:47:48 +02:00
|
|
|
* This value represents the instance's current version. If this value is
|
2013-08-05 03:29:50 +02:00
|
|
|
* 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 01:47:48 +02:00
|
|
|
|
2013-08-05 03:29:50 +02:00
|
|
|
/*!
|
2015-01-27 22:31:07 +01:00
|
|
|
* Whether or not 'the game' should be downloaded when the instance is launched.
|
2013-08-05 03:29:50 +02:00
|
|
|
*/
|
|
|
|
virtual bool shouldUpdate() const = 0;
|
|
|
|
virtual void setShouldUpdate(bool val) = 0;
|
2013-08-24 03:09:46 +02:00
|
|
|
|
2014-06-08 20:11:09 +02:00
|
|
|
/// Traits. Normally inside the version, depends on instance implementation.
|
|
|
|
virtual QSet <QString> traits() = 0;
|
|
|
|
|
2013-08-03 15:57:33 +02:00
|
|
|
/**
|
|
|
|
* 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 01:47:48 +02:00
|
|
|
|
2014-09-06 18:16:56 +02:00
|
|
|
InstancePtr getSharedPtr();
|
|
|
|
|
2013-03-08 13:56:26 -06:00
|
|
|
/*!
|
|
|
|
* \brief Gets a pointer to this instance's version list.
|
|
|
|
* \return A pointer to the available version list for this instance.
|
|
|
|
*/
|
2015-01-27 22:31:07 +01:00
|
|
|
virtual std::shared_ptr<BaseVersionList> versionList() const = 0;
|
2013-10-10 01:47:48 +02:00
|
|
|
|
2013-02-25 14:44:36 -06:00
|
|
|
/*!
|
|
|
|
* \brief Gets this instance's settings object.
|
|
|
|
* This settings object stores instance-specific settings.
|
|
|
|
* \return A pointer to this instance's settings object.
|
|
|
|
*/
|
2015-05-23 16:07:47 +02:00
|
|
|
virtual SettingsObjectPtr settings() const;
|
2013-10-10 01:47:48 +02:00
|
|
|
|
2013-12-15 18:10:51 +01:00
|
|
|
/// returns a valid update task
|
2014-01-27 03:00:49 +01:00
|
|
|
virtual std::shared_ptr<Task> doUpdate() = 0;
|
2013-10-10 01:47:48 +02:00
|
|
|
|
2015-01-27 22:31:07 +01:00
|
|
|
/// returns a valid process, ready for launch with the given account.
|
|
|
|
virtual BaseProcess *prepareForLaunch(AuthSessionPtr account) = 0;
|
2013-10-10 01:47:48 +02:00
|
|
|
|
|
|
|
/// do any necessary cleanups after the instance finishes. also runs before
|
|
|
|
/// 'prepareForLaunch'
|
2013-08-05 03:29:50 +02:00
|
|
|
virtual void cleanupAfterRun() = 0;
|
2013-10-10 01:47:48 +02:00
|
|
|
|
2013-08-25 01:32:42 +02:00
|
|
|
virtual QString getStatusbarDescription() = 0;
|
2013-10-10 01:47:48 +02:00
|
|
|
|
2013-08-25 01:32:42 +02:00
|
|
|
/// FIXME: this really should be elsewhere...
|
|
|
|
virtual QString instanceConfigFolder() const = 0;
|
2013-10-10 01:47:48 +02:00
|
|
|
|
2014-02-17 20:31:50 +01:00
|
|
|
enum InstanceFlag
|
|
|
|
{
|
2014-09-06 18:16:56 +02:00
|
|
|
VersionBrokenFlag = 0x01,
|
|
|
|
UpdateAvailable = 0x02
|
2014-02-17 20:31:50 +01:00
|
|
|
};
|
2014-12-18 02:48:14 +01:00
|
|
|
Q_DECLARE_FLAGS(InstanceFlags, InstanceFlag);
|
2014-09-06 18:16:56 +02:00
|
|
|
InstanceFlags flags() const;
|
|
|
|
void setFlags(const InstanceFlags &flags);
|
|
|
|
void setFlag(const InstanceFlag flag);
|
|
|
|
void unsetFlag(const InstanceFlag flag);
|
2014-02-17 20:31:50 +01:00
|
|
|
|
|
|
|
bool canLaunch() const;
|
|
|
|
|
2014-03-09 08:18:50 +01:00
|
|
|
virtual bool reload();
|
|
|
|
|
2013-03-19 06:24:34 +01:00
|
|
|
signals:
|
|
|
|
/*!
|
|
|
|
* \brief Signal emitted when properties relevant to the instance view change
|
|
|
|
*/
|
2013-10-10 01:47:48 +02:00
|
|
|
void propertiesChanged(BaseInstance *inst);
|
2013-08-25 22:48:41 +02:00
|
|
|
/*!
|
|
|
|
* \brief Signal emitted when groups are affected in any way
|
|
|
|
*/
|
|
|
|
void groupChanged();
|
2013-08-26 06:30:11 +02:00
|
|
|
/*!
|
|
|
|
* \brief The instance just got nuked. Hurray!
|
|
|
|
*/
|
2013-10-10 01:47:48 +02:00
|
|
|
void nuked(BaseInstance *inst);
|
|
|
|
|
2014-02-17 20:31:50 +01:00
|
|
|
void flagsChanged();
|
|
|
|
|
2013-12-31 01:24:28 +01:00
|
|
|
protected slots:
|
|
|
|
void iconUpdated(QString key);
|
|
|
|
|
2013-08-03 15:57:33 +02:00
|
|
|
protected:
|
2014-12-18 02:48:14 +01:00
|
|
|
QString m_rootDir;
|
|
|
|
QString m_group;
|
2015-02-09 01:51:14 +01:00
|
|
|
SettingsObjectPtr m_settings;
|
2014-12-18 02:48:14 +01:00
|
|
|
InstanceFlags m_flags;
|
|
|
|
bool m_isRunning = false;
|
2013-02-14 22:40:00 -06:00
|
|
|
};
|
|
|
|
|
2014-09-06 18:16:56 +02:00
|
|
|
Q_DECLARE_METATYPE(std::shared_ptr<BaseInstance>)
|
2014-03-10 17:38:27 +01:00
|
|
|
Q_DECLARE_METATYPE(BaseInstance::InstanceFlag)
|
2014-09-06 18:16:56 +02:00
|
|
|
Q_DECLARE_OPERATORS_FOR_FLAGS(BaseInstance::InstanceFlags)
|