2015-01-27 21:31:07 +00:00
|
|
|
#pragma once
|
2015-02-09 00:51:14 +00:00
|
|
|
#include "BaseInstance.h"
|
2016-06-16 01:20:23 +01:00
|
|
|
#include <java/JavaVersion.h>
|
2015-02-09 00:51:14 +00:00
|
|
|
#include "minecraft/Mod.h"
|
2015-07-21 01:38:15 +01:00
|
|
|
#include <QProcess>
|
2017-07-24 08:01:37 +01:00
|
|
|
#include <QDir>
|
2015-09-05 17:46:57 +01:00
|
|
|
#include "multimc_logic_export.h"
|
|
|
|
|
2018-07-15 13:04:09 +01:00
|
|
|
class ModsModel;
|
|
|
|
class SimpleModList;
|
2015-08-19 00:10:17 +01:00
|
|
|
class WorldList;
|
2016-06-16 01:20:23 +01:00
|
|
|
class LaunchStep;
|
2017-10-11 22:04:24 +01:00
|
|
|
class ComponentList;
|
2015-01-27 21:31:07 +00:00
|
|
|
|
2015-09-05 17:46:57 +01:00
|
|
|
class MULTIMC_LOGIC_EXPORT MinecraftInstance: public BaseInstance
|
2015-01-27 21:31:07 +00:00
|
|
|
{
|
2018-07-15 13:51:05 +01:00
|
|
|
Q_OBJECT
|
2015-01-27 21:31:07 +00:00
|
|
|
public:
|
2018-07-15 13:51:05 +01:00
|
|
|
MinecraftInstance(SettingsObjectPtr globalSettings, SettingsObjectPtr settings, const QString &rootDir);
|
|
|
|
virtual ~MinecraftInstance() {};
|
|
|
|
virtual void init() override;
|
|
|
|
virtual void saveNow() override;
|
|
|
|
|
|
|
|
// FIXME: remove
|
|
|
|
QString typeName() const override;
|
|
|
|
// FIXME: remove
|
|
|
|
QSet<QString> traits() const override;
|
|
|
|
|
|
|
|
bool canEdit() const override
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool canExport() const override
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
////// Directories and files //////
|
|
|
|
QString jarModsDir() const;
|
|
|
|
QString resourcePacksDir() const;
|
|
|
|
QString texturePacksDir() const;
|
|
|
|
QString loaderModsDir() const;
|
|
|
|
QString coreModsDir() const;
|
2018-07-15 13:04:09 +01:00
|
|
|
QString modsCacheLocation() const;
|
2018-07-15 13:51:05 +01:00
|
|
|
QString libDir() const;
|
|
|
|
QString worldDir() const;
|
|
|
|
QDir jarmodsPath() const;
|
|
|
|
QDir librariesPath() const;
|
|
|
|
QDir versionsPath() const;
|
|
|
|
QString instanceConfigFolder() const override;
|
|
|
|
QString minecraftRoot() const; // Path to the instance's minecraft directory.
|
|
|
|
QString binRoot() const; // Path to the instance's minecraft bin directory.
|
|
|
|
QString getNativePath() const; // where to put the natives during/before launch
|
|
|
|
QString getLocalLibraryPath() const; // where the instance-local libraries should be
|
|
|
|
|
|
|
|
|
|
|
|
////// Profile management //////
|
|
|
|
std::shared_ptr<ComponentList> getComponentList() const;
|
|
|
|
|
|
|
|
////// Mod Lists //////
|
2018-07-15 13:04:09 +01:00
|
|
|
std::shared_ptr<ModsModel> modsModel() const;
|
2018-07-15 13:51:05 +01:00
|
|
|
std::shared_ptr<SimpleModList> loaderModList() const;
|
|
|
|
std::shared_ptr<SimpleModList> coreModList() const;
|
|
|
|
std::shared_ptr<SimpleModList> resourcePackList() const;
|
|
|
|
std::shared_ptr<SimpleModList> texturePackList() const;
|
|
|
|
std::shared_ptr<WorldList> worldList() const;
|
2017-07-24 08:01:37 +01:00
|
|
|
|
|
|
|
|
2018-07-15 13:51:05 +01:00
|
|
|
////// Launch stuff //////
|
|
|
|
shared_qobject_ptr<Task> createUpdateTask(Net::Mode mode) override;
|
|
|
|
std::shared_ptr<LaunchTask> createLaunchTask(AuthSessionPtr account) override;
|
|
|
|
QStringList extraArguments() const override;
|
|
|
|
QStringList verboseDescription(AuthSessionPtr session) override;
|
|
|
|
QList<Mod> getJarMods() const;
|
|
|
|
QString createLaunchScript(AuthSessionPtr session);
|
|
|
|
/// get arguments passed to java
|
|
|
|
QStringList javaArguments() const;
|
2015-07-21 01:38:15 +01:00
|
|
|
|
2018-07-15 13:51:05 +01:00
|
|
|
/// get variables for launch command variable substitution/environment
|
|
|
|
QMap<QString, QString> getVariables() const override;
|
2015-07-21 01:38:15 +01:00
|
|
|
|
2018-07-15 13:51:05 +01:00
|
|
|
/// create an environment for launching processes
|
|
|
|
QProcessEnvironment createEnvironment() override;
|
2015-07-22 08:01:04 +01:00
|
|
|
|
2018-07-15 13:51:05 +01:00
|
|
|
/// guess log level from a line of minecraft log
|
|
|
|
MessageLevel::Enum guessLevel(const QString &line, MessageLevel::Enum level) override;
|
2015-08-18 01:25:24 +01:00
|
|
|
|
2018-07-15 13:51:05 +01:00
|
|
|
IPathMatcher::Ptr getLogFileMatcher() override;
|
2015-08-19 01:04:56 +01:00
|
|
|
|
2018-07-15 13:51:05 +01:00
|
|
|
QString getLogFileRoot() override;
|
2015-09-22 00:06:45 +01:00
|
|
|
|
2018-07-15 13:51:05 +01:00
|
|
|
QString getStatusbarDescription() override;
|
2016-06-16 01:20:23 +01:00
|
|
|
|
2018-07-15 13:51:05 +01:00
|
|
|
// FIXME: remove
|
|
|
|
virtual QStringList getClassPath() const;
|
|
|
|
// FIXME: remove
|
|
|
|
virtual QStringList getNativeJars() const;
|
|
|
|
// FIXME: remove
|
|
|
|
virtual QString getMainClass() const;
|
2016-06-16 01:20:23 +01:00
|
|
|
|
2018-07-15 13:51:05 +01:00
|
|
|
// FIXME: remove
|
|
|
|
virtual QStringList processMinecraftArgs(AuthSessionPtr account) const;
|
2016-06-16 01:20:23 +01:00
|
|
|
|
2018-07-15 13:51:05 +01:00
|
|
|
virtual JavaVersion getJavaVersion() const;
|
2016-10-01 23:26:10 +01:00
|
|
|
|
2017-07-24 08:01:37 +01:00
|
|
|
signals:
|
2018-07-15 13:51:05 +01:00
|
|
|
void versionReloaded();
|
2016-06-16 01:20:23 +01:00
|
|
|
|
2015-08-16 01:17:50 +01:00
|
|
|
protected:
|
2018-07-15 13:51:05 +01:00
|
|
|
QMap<QString, QString> createCensorFilterFromSession(AuthSessionPtr session);
|
|
|
|
QStringList validLaunchMethods();
|
|
|
|
QString launchMethod();
|
2017-07-24 08:01:37 +01:00
|
|
|
|
2015-09-22 00:06:45 +01:00
|
|
|
private:
|
2018-07-15 13:51:05 +01:00
|
|
|
QString prettifyTimeDuration(int64_t duration);
|
2017-07-24 08:01:37 +01:00
|
|
|
|
|
|
|
protected: // data
|
2018-07-15 13:51:05 +01:00
|
|
|
std::shared_ptr<ComponentList> m_components;
|
|
|
|
mutable std::shared_ptr<ModsModel> m_mods_model;
|
|
|
|
mutable std::shared_ptr<SimpleModList> m_loader_mod_list;
|
|
|
|
mutable std::shared_ptr<SimpleModList> m_core_mod_list;
|
|
|
|
mutable std::shared_ptr<SimpleModList> m_resource_pack_list;
|
|
|
|
mutable std::shared_ptr<SimpleModList> m_texture_pack_list;
|
|
|
|
mutable std::shared_ptr<WorldList> m_world_list;
|
2015-01-27 21:31:07 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
typedef std::shared_ptr<MinecraftInstance> MinecraftInstancePtr;
|