2015-02-07 15:13:09 +05:30
|
|
|
#pragma once
|
2017-07-24 12:31:37 +05:30
|
|
|
#include "minecraft/MinecraftInstance.h"
|
2017-09-17 02:39:05 +05:30
|
|
|
#include "minecraft/legacy/LegacyInstance.h"
|
2015-10-05 05:17:27 +05:30
|
|
|
#include <FileSystem.h>
|
2015-02-07 15:13:09 +05:30
|
|
|
#include "pages/BasePage.h"
|
|
|
|
#include "pages/BasePageProvider.h"
|
2018-03-19 07:06:12 +05:30
|
|
|
#include "pages/instance/LogPage.h"
|
|
|
|
#include "pages/instance/VersionPage.h"
|
|
|
|
#include "pages/instance/ModFolderPage.h"
|
|
|
|
#include "pages/instance/ResourcePackPage.h"
|
|
|
|
#include "pages/instance/TexturePackPage.h"
|
|
|
|
#include "pages/instance/NotesPage.h"
|
|
|
|
#include "pages/instance/ScreenshotsPage.h"
|
|
|
|
#include "pages/instance/InstanceSettingsPage.h"
|
|
|
|
#include "pages/instance/OtherLogsPage.h"
|
|
|
|
#include "pages/instance/LegacyUpgradePage.h"
|
|
|
|
#include "pages/instance/WorldListPage.h"
|
2018-04-12 05:14:51 +05:30
|
|
|
#include "pages/instance/ServersPage.h"
|
2019-01-30 05:05:24 +05:30
|
|
|
#include "pages/instance/GameOptionsPage.h"
|
2015-02-07 15:13:09 +05:30
|
|
|
|
2018-08-01 23:35:18 +05:30
|
|
|
#include "Env.h"
|
2015-04-06 01:30:32 +05:30
|
|
|
|
2015-02-07 15:13:09 +05:30
|
|
|
class InstancePageProvider : public QObject, public BasePageProvider
|
|
|
|
{
|
2018-07-15 18:21:05 +05:30
|
|
|
Q_OBJECT
|
2015-02-07 15:13:09 +05:30
|
|
|
public:
|
2018-07-15 18:21:05 +05:30
|
|
|
explicit InstancePageProvider(InstancePtr parent)
|
|
|
|
{
|
|
|
|
inst = parent;
|
|
|
|
}
|
2015-02-07 15:13:09 +05:30
|
|
|
|
2018-07-15 18:21:05 +05:30
|
|
|
virtual ~InstancePageProvider() {};
|
|
|
|
virtual QList<BasePage *> getPages() override
|
|
|
|
{
|
|
|
|
QList<BasePage *> values;
|
|
|
|
values.append(new LogPage(inst));
|
|
|
|
std::shared_ptr<MinecraftInstance> onesix = std::dynamic_pointer_cast<MinecraftInstance>(inst);
|
|
|
|
if(onesix)
|
|
|
|
{
|
|
|
|
values.append(new VersionPage(onesix.get()));
|
2018-11-15 05:06:47 +05:30
|
|
|
auto modsPage = new ModFolderPage(onesix.get(), onesix->loaderModList(), "mods", "loadermods", tr("Loader mods"), "Loader-mods");
|
|
|
|
modsPage->setFilter("%1 (*.zip *.jar *.litemod)");
|
|
|
|
values.append(modsPage);
|
2018-07-15 18:21:05 +05:30
|
|
|
values.append(new CoreModFolderPage(onesix.get(), onesix->coreModList(), "coremods", "coremods", tr("Core mods"), "Core-mods"));
|
|
|
|
values.append(new ResourcePackPage(onesix.get()));
|
|
|
|
values.append(new TexturePackPage(onesix.get()));
|
|
|
|
values.append(new NotesPage(onesix.get()));
|
2019-07-17 05:31:29 +05:30
|
|
|
values.append(new WorldListPage(onesix.get(), onesix->worldList()));
|
2021-05-22 21:37:08 +05:30
|
|
|
values.append(new ServersPage(onesix));
|
2019-02-21 05:14:36 +05:30
|
|
|
// values.append(new GameOptionsPage(onesix.get()));
|
2018-07-28 03:27:09 +05:30
|
|
|
values.append(new ScreenshotsPage(FS::PathCombine(onesix->gameRoot(), "screenshots")));
|
2018-07-15 18:21:05 +05:30
|
|
|
values.append(new InstanceSettingsPage(onesix.get()));
|
|
|
|
}
|
|
|
|
std::shared_ptr<LegacyInstance> legacy = std::dynamic_pointer_cast<LegacyInstance>(inst);
|
|
|
|
if(legacy)
|
|
|
|
{
|
|
|
|
values.append(new LegacyUpgradePage(legacy));
|
|
|
|
values.append(new NotesPage(legacy.get()));
|
2019-07-17 05:31:29 +05:30
|
|
|
values.append(new WorldListPage(legacy.get(), legacy->worldList()));
|
2018-07-28 03:27:09 +05:30
|
|
|
values.append(new ScreenshotsPage(FS::PathCombine(legacy->gameRoot(), "screenshots")));
|
2018-07-15 18:21:05 +05:30
|
|
|
}
|
|
|
|
auto logMatcher = inst->getLogFileMatcher();
|
|
|
|
if(logMatcher)
|
|
|
|
{
|
|
|
|
values.append(new OtherLogsPage(inst->getLogFileRoot(), logMatcher));
|
|
|
|
}
|
|
|
|
return values;
|
|
|
|
}
|
2015-02-07 15:13:09 +05:30
|
|
|
|
2018-07-15 18:21:05 +05:30
|
|
|
virtual QString dialogTitle() override
|
|
|
|
{
|
|
|
|
return tr("Edit Instance (%1)").arg(inst->name());
|
|
|
|
}
|
2015-02-07 15:13:09 +05:30
|
|
|
protected:
|
2018-07-15 18:21:05 +05:30
|
|
|
InstancePtr inst;
|
2015-02-07 15:13:09 +05:30
|
|
|
};
|