2017-01-08 09:28:05 +05:30
|
|
|
/* Copyright 2013-2017 MultiMC Contributors
|
2013-02-15 10:10:00 +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
|
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
|
2016-10-03 04:25:54 +05:30
|
|
|
#include <cassert>
|
2013-02-15 10:10:00 +05:30
|
|
|
|
|
|
|
#include <QObject>
|
2016-08-14 06:03:31 +05:30
|
|
|
#include "QObjectPtr.h"
|
2013-02-15 10:10:00 +05:30
|
|
|
#include <QDateTime>
|
2014-03-10 22:08:27 +05:30
|
|
|
#include <QSet>
|
2015-07-21 06:08:15 +05:30
|
|
|
#include <QProcess>
|
2013-02-15 10:10:00 +05:30
|
|
|
|
2015-02-09 06:21:14 +05:30
|
|
|
#include "settings/SettingsObject.h"
|
2013-02-26 02:14:36 +05:30
|
|
|
|
2015-02-09 06:21:14 +05:30
|
|
|
#include "settings/INIFile.h"
|
|
|
|
#include "BaseVersionList.h"
|
2016-02-28 00:28:40 +05:30
|
|
|
#include "minecraft/auth/MojangAccount.h"
|
2016-11-03 05:40:16 +05:30
|
|
|
#include "MessageLevel.h"
|
2015-08-18 05:55:24 +05:30
|
|
|
#include "pathmatcher/IPathMatcher.h"
|
2013-02-21 06:40:09 +05:30
|
|
|
|
2017-11-11 06:08:31 +05:30
|
|
|
#include "net/Mode.h"
|
|
|
|
|
2015-09-05 22:16:57 +05:30
|
|
|
#include "multimc_logic_export.h"
|
|
|
|
|
2014-02-21 23:45:59 +05:30
|
|
|
class QDir;
|
2013-11-24 11:06:16 +05:30
|
|
|
class Task;
|
2015-07-10 04:41:06 +05:30
|
|
|
class LaunchTask;
|
2015-02-05 01:40:10 +05:30
|
|
|
class BaseInstance;
|
2016-10-03 04:25:54 +05:30
|
|
|
class BaseInstanceProvider;
|
2013-02-15 10:10:00 +05:30
|
|
|
|
2014-09-06 21:46:56 +05:30
|
|
|
// pointer for lazy people
|
|
|
|
typedef std::shared_ptr<BaseInstance> InstancePtr;
|
|
|
|
|
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.
|
|
|
|
*/
|
2015-09-05 22:16:57 +05:30
|
|
|
class MULTIMC_LOGIC_EXPORT BaseInstance : public QObject, public std::enable_shared_from_this<BaseInstance>
|
2013-02-15 10:10:00 +05:30
|
|
|
{
|
|
|
|
Q_OBJECT
|
2013-08-03 19:27:33 +05:30
|
|
|
protected:
|
|
|
|
/// no-touchy!
|
2015-02-01 07:38:25 +05:30
|
|
|
BaseInstance(SettingsObjectPtr globalSettings, SettingsObjectPtr settings, const QString &rootDir);
|
2013-10-10 05:17:48 +05:30
|
|
|
|
2016-10-03 04:25:54 +05:30
|
|
|
public: /* types */
|
|
|
|
enum class Status
|
|
|
|
{
|
|
|
|
Present,
|
|
|
|
Gone // either nuked or invalidated
|
|
|
|
};
|
|
|
|
|
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
|
|
|
|
2015-01-28 03:01:07 +05:30
|
|
|
virtual void init() = 0;
|
2017-12-03 23:06:28 +05:30
|
|
|
virtual void saveNow() = 0;
|
2015-01-28 03:01:07 +05:30
|
|
|
|
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
|
|
|
|
2016-10-03 04:25:54 +05:30
|
|
|
/***
|
|
|
|
* the instance has been invalidated - it is no longer tracked by MultiMC for some reason,
|
|
|
|
* but it has not necessarily been deleted.
|
|
|
|
*
|
|
|
|
* Happens when the instance folder changes to some other location, or the instance is removed by external means.
|
|
|
|
*/
|
|
|
|
void invalidate();
|
|
|
|
|
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.
|
2014-01-16 03:19:37 +05:30
|
|
|
virtual QString id() const;
|
2013-10-10 05:17:48 +05:30
|
|
|
|
2014-12-18 07:18:14 +05:30
|
|
|
void setRunning(bool running);
|
|
|
|
bool isRunning() const;
|
2015-09-22 04:55:34 +05:30
|
|
|
int64_t totalTimePlayed() const;
|
|
|
|
void resetTimePlayed();
|
2014-06-30 05:32:57 +05:30
|
|
|
|
2016-10-03 04:25:54 +05:30
|
|
|
void setProvider(BaseInstanceProvider * provider);
|
|
|
|
BaseInstanceProvider * provider() const;
|
|
|
|
|
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-03 19:27:33 +05:30
|
|
|
QString name() const;
|
|
|
|
void setName(QString val);
|
2013-10-10 05:17:48 +05:30
|
|
|
|
2014-01-13 04:08:12 +05:30
|
|
|
/// Value used for instance window titles
|
|
|
|
QString windowTitle() const;
|
|
|
|
|
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
|
|
|
|
2015-07-21 06:08:15 +05:30
|
|
|
QString getPreLaunchCommand();
|
|
|
|
QString getPostExitCommand();
|
|
|
|
QString getWrapperCommand();
|
|
|
|
|
2015-07-22 12:31:04 +05:30
|
|
|
/// guess log level from a line of game log
|
|
|
|
virtual MessageLevel::Enum guessLevel(const QString &line, MessageLevel::Enum level)
|
|
|
|
{
|
|
|
|
return level;
|
|
|
|
};
|
|
|
|
|
2014-05-05 03:40:59 +05:30
|
|
|
virtual QStringList extraArguments() const;
|
2014-01-09 05:52:34 +05:30
|
|
|
|
2014-06-08 23:41:09 +05:30
|
|
|
/// Traits. Normally inside the version, depends on instance implementation.
|
2017-09-22 03:57:30 +05:30
|
|
|
virtual QSet <QString> traits() const = 0;
|
2014-06-08 23:41:09 +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
|
|
|
|
2014-09-06 21:46:56 +05:30
|
|
|
InstancePtr getSharedPtr();
|
|
|
|
|
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.
|
|
|
|
*/
|
2015-05-23 19:37:47 +05:30
|
|
|
virtual SettingsObjectPtr settings() const;
|
2013-10-10 05:17:48 +05:30
|
|
|
|
2013-12-15 22:40:51 +05:30
|
|
|
/// returns a valid update task
|
2017-11-11 06:08:31 +05:30
|
|
|
virtual shared_qobject_ptr<Task> createUpdateTask(Net::Mode mode) = 0;
|
2013-10-10 05:17:48 +05:30
|
|
|
|
2015-07-10 03:36:05 +05:30
|
|
|
/// returns a valid launcher (task container)
|
2015-07-10 04:41:06 +05:30
|
|
|
virtual std::shared_ptr<LaunchTask> createLaunchTask(AuthSessionPtr account) = 0;
|
2013-10-10 05:17:48 +05:30
|
|
|
|
2016-08-06 19:09:29 +05:30
|
|
|
/// returns the current launch task (if any)
|
|
|
|
std::shared_ptr<LaunchTask> getLaunchTask();
|
|
|
|
|
2015-07-21 06:08:15 +05:30
|
|
|
/*!
|
|
|
|
* Create envrironment variables for running the instance
|
|
|
|
*/
|
|
|
|
virtual QProcessEnvironment createEnvironment() = 0;
|
|
|
|
|
2015-08-18 05:55:24 +05:30
|
|
|
/*!
|
|
|
|
* Returns a matcher that can maps relative paths within the instance to whether they are 'log files'
|
|
|
|
*/
|
|
|
|
virtual IPathMatcher::Ptr getLogFileMatcher() = 0;
|
|
|
|
|
2015-08-19 05:34:56 +05:30
|
|
|
/*!
|
|
|
|
* Returns the root folder to use for looking up log files
|
|
|
|
*/
|
|
|
|
virtual QString getLogFileRoot() = 0;
|
|
|
|
|
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
|
|
|
|
2015-07-21 06:08:15 +05:30
|
|
|
/// get variables this instance exports
|
|
|
|
virtual QMap<QString, QString> getVariables() const = 0;
|
|
|
|
|
2015-09-22 04:36:45 +05:30
|
|
|
virtual QString typeName() const = 0;
|
|
|
|
|
2016-11-04 05:47:28 +05:30
|
|
|
bool hasVersionBroken() const
|
2014-02-18 01:01:50 +05:30
|
|
|
{
|
2016-11-04 05:47:28 +05:30
|
|
|
return m_hasBrokenVersion;
|
|
|
|
}
|
|
|
|
void setVersionBroken(bool value)
|
|
|
|
{
|
|
|
|
if(m_hasBrokenVersion != value)
|
|
|
|
{
|
|
|
|
m_hasBrokenVersion = value;
|
|
|
|
emit propertiesChanged(this);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bool hasUpdateAvailable() const
|
|
|
|
{
|
|
|
|
return m_hasUpdate;
|
|
|
|
}
|
|
|
|
void setUpdateAvailable(bool value)
|
|
|
|
{
|
|
|
|
if(m_hasUpdate != value)
|
|
|
|
{
|
|
|
|
m_hasUpdate = value;
|
|
|
|
emit propertiesChanged(this);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bool hasCrashed() const
|
|
|
|
{
|
|
|
|
return m_crashed;
|
|
|
|
}
|
|
|
|
void setCrashed(bool value)
|
|
|
|
{
|
|
|
|
if(m_crashed != value)
|
|
|
|
{
|
|
|
|
m_crashed = value;
|
|
|
|
emit propertiesChanged(this);
|
|
|
|
}
|
|
|
|
}
|
2014-02-18 01:01:50 +05:30
|
|
|
|
2017-09-21 03:08:31 +05:30
|
|
|
virtual bool canLaunch() const;
|
|
|
|
virtual bool canEdit() const = 0;
|
2016-04-28 03:34:37 +05:30
|
|
|
virtual bool canExport() const = 0;
|
2014-02-18 01:01:50 +05:30
|
|
|
|
2017-11-11 06:08:31 +05:30
|
|
|
bool reloadSettings();
|
2014-03-09 12:48:50 +05:30
|
|
|
|
2016-06-16 05:50:23 +05:30
|
|
|
/**
|
|
|
|
* 'print' a verbose desription of the instance into a QStringList
|
|
|
|
*/
|
|
|
|
virtual QStringList verboseDescription(AuthSessionPtr session) = 0;
|
|
|
|
|
2016-10-03 04:25:54 +05:30
|
|
|
Status currentStatus() const;
|
|
|
|
|
2017-02-09 00:31:42 +05:30
|
|
|
int getConsoleMaxLines() const;
|
|
|
|
bool shouldStopOnConsoleOverflow() const;
|
|
|
|
|
2016-10-03 04:25:54 +05:30
|
|
|
protected:
|
|
|
|
void changeStatus(Status newStatus);
|
|
|
|
|
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-10-10 05:17:48 +05:30
|
|
|
|
2016-08-06 19:09:29 +05:30
|
|
|
void launchTaskChanged(std::shared_ptr<LaunchTask>);
|
|
|
|
|
|
|
|
void runningStatusChanged(bool running);
|
|
|
|
|
2016-10-03 04:25:54 +05:30
|
|
|
void statusChanged(Status from, Status to);
|
|
|
|
|
2013-12-31 05:54:28 +05:30
|
|
|
protected slots:
|
|
|
|
void iconUpdated(QString key);
|
|
|
|
|
2016-10-03 04:25:54 +05:30
|
|
|
protected: /* data */
|
2014-12-18 07:18:14 +05:30
|
|
|
QString m_rootDir;
|
|
|
|
QString m_group;
|
2015-02-09 06:21:14 +05:30
|
|
|
SettingsObjectPtr m_settings;
|
2016-11-04 05:47:28 +05:30
|
|
|
// InstanceFlags m_flags;
|
2014-12-18 07:18:14 +05:30
|
|
|
bool m_isRunning = false;
|
2016-08-06 19:09:29 +05:30
|
|
|
std::shared_ptr<LaunchTask> m_launchProcess;
|
2015-09-22 04:36:45 +05:30
|
|
|
QDateTime m_timeStarted;
|
2016-10-03 04:25:54 +05:30
|
|
|
BaseInstanceProvider * m_provider = nullptr;
|
|
|
|
|
|
|
|
private: /* data */
|
|
|
|
Status m_status = Status::Present;
|
2016-11-04 05:47:28 +05:30
|
|
|
bool m_crashed = false;
|
|
|
|
bool m_hasUpdate = false;
|
|
|
|
bool m_hasBrokenVersion = false;
|
2013-02-15 10:10:00 +05:30
|
|
|
};
|
|
|
|
|
2014-09-06 21:46:56 +05:30
|
|
|
Q_DECLARE_METATYPE(std::shared_ptr<BaseInstance>)
|
2016-11-04 05:47:28 +05:30
|
|
|
//Q_DECLARE_METATYPE(BaseInstance::InstanceFlag)
|
|
|
|
//Q_DECLARE_OPERATORS_FOR_FLAGS(BaseInstance::InstanceFlags)
|