summaryrefslogtreecommitdiffstats
path: root/backend/LegacyInstance.cpp
diff options
context:
space:
mode:
authorPetr Mrázek <peterix@gmail.com>2013-08-17 13:40:51 +0200
committerPetr Mrázek <peterix@gmail.com>2013-08-17 13:40:51 +0200
commit253067c782955380bbf66ac0475dc954375b1ff4 (patch)
treeca97e231fd3a764256d95b5fc8d08fc25ff72161 /backend/LegacyInstance.cpp
parent77e80665422c4e97e2286418ab55e20c4030023b (diff)
downloadMultiMC-253067c782955380bbf66ac0475dc954375b1ff4.tar
MultiMC-253067c782955380bbf66ac0475dc954375b1ff4.tar.gz
MultiMC-253067c782955380bbf66ac0475dc954375b1ff4.tar.lz
MultiMC-253067c782955380bbf66ac0475dc954375b1ff4.tar.xz
MultiMC-253067c782955380bbf66ac0475dc954375b1ff4.zip
Move all the things (YES. Move them.)
Also, implemented some basic modlist logic, to be wired up.
Diffstat (limited to 'backend/LegacyInstance.cpp')
-rw-r--r--backend/LegacyInstance.cpp229
1 files changed, 0 insertions, 229 deletions
diff --git a/backend/LegacyInstance.cpp b/backend/LegacyInstance.cpp
deleted file mode 100644
index 9102c9c7..00000000
--- a/backend/LegacyInstance.cpp
+++ /dev/null
@@ -1,229 +0,0 @@
-#include "LegacyInstance.h"
-#include "LegacyInstance_p.h"
-#include "MinecraftProcess.h"
-#include "LegacyUpdate.h"
-#include <setting.h>
-#include <pathutils.h>
-#include <cmdutils.h>
-#include <QFileInfo>
-#include <QDir>
-#include <QImage>
-
-#define LAUNCHER_FILE "MultiMCLauncher.jar"
-
-LegacyInstance::LegacyInstance(const QString& rootDir, SettingsObject* settings, QObject* parent)
- :BaseInstance( new LegacyInstancePrivate(),rootDir, settings, parent)
-{
- settings->registerSetting(new Setting("NeedsRebuild", true));
- settings->registerSetting(new Setting("ShouldUpdate", false));
- settings->registerSetting(new Setting("JarVersion", "Unknown"));
- settings->registerSetting(new Setting("LwjglVersion", "2.9.0"));
- settings->registerSetting(new Setting("IntendedJarVersion", ""));
-}
-
-BaseUpdate* LegacyInstance::doUpdate()
-{
- return new LegacyUpdate(this, this);
-}
-
-MinecraftProcess* LegacyInstance::prepareForLaunch(QString user, QString session)
-{
- MinecraftProcess * proc = new MinecraftProcess(this);
-
- // FIXME: extract the icon
- // QImage(":/icons/instances/" + iconKey()).save(PathCombine(minecraftRoot(), "icon.png"));
-
- // extract the legacy launcher
- QFile(":/launcher/launcher.jar").copy(PathCombine(minecraftRoot(), LAUNCHER_FILE));
-
- // set the process arguments
- {
- QStringList args;
-
- // window size
- QString windowSize;
- if (settings().get("LaunchMaximized").toBool())
- windowSize = "max";
- else
- windowSize = QString("%1x%2").
- arg(settings().get("MinecraftWinWidth").toInt()).
- arg(settings().get("MinecraftWinHeight").toInt());
-
- // window title
- QString windowTitle;
- windowTitle.append("MultiMC: ").append(name());
-
- // Java arguments
- args.append(Util::Commandline::splitArgs(settings().get("JvmArgs").toString()));
-
-#ifdef OSX
- // OSX dock icon and name
- args << "-Xdock:icon=icon.png";
- args << QString("-Xdock:name=\"%1\"").arg(windowTitle);
-#endif
-
- QString lwjgl = QDir(globalSettings->get("LWJGLDir").toString() + "/" + lwjglVersion()).absolutePath();
-
- // launcher arguments
- args << QString("-Xms%1m").arg(settings().get("MinMemAlloc").toInt());
- args << QString("-Xmx%1m").arg(settings().get("MaxMemAlloc").toInt());
- args << "-jar" << LAUNCHER_FILE;
- args << user;
- args << session;
- args << windowTitle;
- args << windowSize;
- args << lwjgl;
- proc->setMinecraftArguments(args);
- }
-
- // set the process work path
- proc->setMinecraftWorkdir(minecraftRoot());
-
- return proc;
-}
-
-void LegacyInstance::cleanupAfterRun()
-{
- //FIXME: delete the launcher and icons and whatnot.
-}
-
-
-QString LegacyInstance::instModsDir() const
-{
- return PathCombine(instanceRoot(), "instMods");
-}
-
-QString LegacyInstance::binDir() const
-{
- return PathCombine(minecraftRoot(), "bin");
-}
-
-QString LegacyInstance::savesDir() const
-{
- return PathCombine(minecraftRoot(), "saves");
-}
-
-QString LegacyInstance::mlModsDir() const
-{
- return PathCombine(minecraftRoot(), "mods");
-}
-
-QString LegacyInstance::coreModsDir() const
-{
- return PathCombine(minecraftRoot(), "coremods");
-}
-
-QString LegacyInstance::resourceDir() const
-{
- return PathCombine(minecraftRoot(), "resources");
-}
-
-QString LegacyInstance::mcJar() const
-{
- return PathCombine(binDir(), "minecraft.jar");
-}
-
-QString LegacyInstance::mcBackup() const
-{
- return PathCombine(binDir(), "mcbackup.jar");
-}
-
-QString LegacyInstance::modListFile() const
-{
- return PathCombine(instanceRoot(), "modlist");
-}
-
-bool LegacyInstance::shouldUpdateCurrentVersion() const
-{
- QFileInfo jar(mcJar());
- return jar.lastModified().toUTC().toMSecsSinceEpoch() != lastCurrentVersionUpdate();
-}
-
-void LegacyInstance::updateCurrentVersion(bool keepCurrent)
-{
- QFileInfo jar(mcJar());
-
- if(!jar.exists())
- {
- setLastCurrentVersionUpdate(0);
- setCurrentVersionId("Unknown");
- return;
- }
-
- qint64 time = jar.lastModified().toUTC().toMSecsSinceEpoch();
-
- setLastCurrentVersionUpdate(time);
- if (!keepCurrent)
- {
- // TODO: Implement GetMinecraftJarVersion function.
- QString newVersion = "Unknown";//javautils::GetMinecraftJarVersion(jar.absoluteFilePath());
- setCurrentVersionId(newVersion);
- }
-}
-qint64 LegacyInstance::lastCurrentVersionUpdate() const
-{
- I_D(LegacyInstance);
- return d->m_settings->get ( "lastVersionUpdate" ).value<qint64>();
-}
-void LegacyInstance::setLastCurrentVersionUpdate ( qint64 val )
-{
- I_D(LegacyInstance);
- d->m_settings->set ( "lastVersionUpdate", val );
-}
-bool LegacyInstance::shouldRebuild() const
-{
- I_D(LegacyInstance);
- return d->m_settings->get ( "NeedsRebuild" ).toBool();
-}
-void LegacyInstance::setShouldRebuild ( bool val )
-{
- I_D(LegacyInstance);
- d->m_settings->set ( "NeedsRebuild", val );
-}
-QString LegacyInstance::currentVersionId() const
-{
- I_D(LegacyInstance);
- return d->m_settings->get ( "JarVersion" ).toString();
-}
-
-void LegacyInstance::setCurrentVersionId ( QString val )
-{
- I_D(LegacyInstance);
- d->m_settings->set ( "JarVersion", val );
-}
-
-QString LegacyInstance::lwjglVersion() const
-{
- I_D(LegacyInstance);
- return d->m_settings->get ( "LwjglVersion" ).toString();
-}
-void LegacyInstance::setLWJGLVersion ( QString val )
-{
- I_D(LegacyInstance);
- d->m_settings->set ( "LwjglVersion", val );
-}
-QString LegacyInstance::intendedVersionId() const
-{
- I_D(LegacyInstance);
- return d->m_settings->get ( "IntendedJarVersion" ).toString();
-}
-bool LegacyInstance::setIntendedVersionId ( QString version )
-{
- settings().set("IntendedJarVersion", version);
- setShouldUpdate(true);
- return true;
-}
-bool LegacyInstance::shouldUpdate() const
-{
- I_D(LegacyInstance);
- QVariant var = settings().get ( "ShouldUpdate" );
- if ( !var.isValid() || var.toBool() == false )
- {
- return intendedVersionId() != currentVersionId();
- }
- return true;
-}
-void LegacyInstance::setShouldUpdate ( bool val )
-{
- settings().set ( "ShouldUpdate", val );
-}