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>
|
2019-08-04 02:27:53 +01:00
|
|
|
#include "minecraft/mod/Mod.h"
|
2015-07-21 01:38:15 +01:00
|
|
|
#include <QProcess>
|
2017-07-24 08:01:37 +01:00
|
|
|
#include <QDir>
|
2021-05-22 15:14:25 +01:00
|
|
|
#include "minecraft/launch/MinecraftServerTarget.h"
|
2015-09-05 17:46:57 +01:00
|
|
|
|
2019-08-04 02:27:53 +01:00
|
|
|
class ModFolderModel;
|
2015-08-19 00:10:17 +01:00
|
|
|
class WorldList;
|
2019-01-29 23:35:24 +00:00
|
|
|
class GameOptions;
|
2016-06-16 01:20:23 +01:00
|
|
|
class LaunchStep;
|
2020-06-27 11:02:31 +01:00
|
|
|
class PackProfile;
|
2015-01-27 21:31:07 +00:00
|
|
|
|
2021-07-25 18:11:59 +01:00
|
|
|
class 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 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;
|
2021-09-23 20:26:56 +01:00
|
|
|
QString shaderPacksDir() const;
|
2021-12-12 21:39:25 +00:00
|
|
|
QString modsRoot() const override;
|
2018-07-15 13:51:05 +01:00
|
|
|
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;
|
2019-02-19 00:00:03 +00:00
|
|
|
QString resourcesDir() const;
|
2018-07-15 13:51:05 +01:00
|
|
|
QDir jarmodsPath() const;
|
|
|
|
QDir librariesPath() const;
|
|
|
|
QDir versionsPath() const;
|
|
|
|
QString instanceConfigFolder() const override;
|
2018-07-27 22:57:09 +01:00
|
|
|
|
|
|
|
// Path to the instance's minecraft directory.
|
|
|
|
QString gameRoot() const override;
|
|
|
|
|
|
|
|
// Path to the instance's minecraft bin directory.
|
|
|
|
QString binRoot() const;
|
|
|
|
|
|
|
|
// where to put the natives during/before launch
|
|
|
|
QString getNativePath() const;
|
|
|
|
|
|
|
|
// where the instance-local libraries should be
|
|
|
|
QString getLocalLibraryPath() const;
|
2018-07-15 13:51:05 +01:00
|
|
|
|
|
|
|
|
|
|
|
////// Profile management //////
|
2020-06-27 11:02:31 +01:00
|
|
|
std::shared_ptr<PackProfile> getPackProfile() const;
|
2018-07-15 13:51:05 +01:00
|
|
|
|
|
|
|
////// Mod Lists //////
|
2019-08-04 02:27:53 +01:00
|
|
|
std::shared_ptr<ModFolderModel> loaderModList() const;
|
|
|
|
std::shared_ptr<ModFolderModel> coreModList() const;
|
|
|
|
std::shared_ptr<ModFolderModel> resourcePackList() const;
|
|
|
|
std::shared_ptr<ModFolderModel> texturePackList() const;
|
2021-09-23 20:26:56 +01:00
|
|
|
std::shared_ptr<ModFolderModel> shaderPackList() const;
|
2018-07-15 13:51:05 +01:00
|
|
|
std::shared_ptr<WorldList> worldList() const;
|
2019-01-29 23:35:24 +00:00
|
|
|
std::shared_ptr<GameOptions> gameOptionsModel() const;
|
2017-07-24 08:01:37 +01:00
|
|
|
|
2018-07-15 13:51:05 +01:00
|
|
|
////// Launch stuff //////
|
2021-11-21 22:36:55 +00:00
|
|
|
Task::Ptr createUpdateTask(Net::Mode mode) override;
|
2021-05-22 17:07:08 +01:00
|
|
|
shared_qobject_ptr<LaunchTask> createLaunchTask(AuthSessionPtr account, MinecraftServerTargetPtr serverToJoin) override;
|
2018-07-15 13:51:05 +01:00
|
|
|
QStringList extraArguments() const override;
|
2021-05-22 15:14:25 +01:00
|
|
|
QStringList verboseDescription(AuthSessionPtr session, MinecraftServerTargetPtr serverToJoin) override;
|
2018-07-15 13:51:05 +01:00
|
|
|
QList<Mod> getJarMods() const;
|
2021-05-22 15:14:25 +01:00
|
|
|
QString createLaunchScript(AuthSessionPtr session, MinecraftServerTargetPtr serverToJoin);
|
2018-07-15 13:51:05 +01:00
|
|
|
/// 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;
|
2022-06-29 21:37:25 +01:00
|
|
|
QProcessEnvironment createLaunchEnvironment() 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
|
2021-05-22 15:14:25 +01:00
|
|
|
virtual QStringList processMinecraftArgs(AuthSessionPtr account, MinecraftServerTargetPtr serverToJoin) 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
|
|
|
|
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
|
|
|
|
|
|
|
protected: // data
|
2020-06-27 11:02:31 +01:00
|
|
|
std::shared_ptr<PackProfile> m_components;
|
2019-08-04 02:27:53 +01:00
|
|
|
mutable std::shared_ptr<ModFolderModel> m_loader_mod_list;
|
|
|
|
mutable std::shared_ptr<ModFolderModel> m_core_mod_list;
|
|
|
|
mutable std::shared_ptr<ModFolderModel> m_resource_pack_list;
|
2021-09-23 20:26:56 +01:00
|
|
|
mutable std::shared_ptr<ModFolderModel> m_shader_pack_list;
|
2019-08-04 02:27:53 +01:00
|
|
|
mutable std::shared_ptr<ModFolderModel> m_texture_pack_list;
|
2018-07-15 13:51:05 +01:00
|
|
|
mutable std::shared_ptr<WorldList> m_world_list;
|
2019-01-29 23:35:24 +00:00
|
|
|
mutable std::shared_ptr<GameOptions> m_game_options;
|
2015-01-27 21:31:07 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
typedef std::shared_ptr<MinecraftInstance> MinecraftInstancePtr;
|