2013-02-18 20:50:11 +00:00
|
|
|
/* Copyright 2013 MultiMC Contributors
|
|
|
|
*
|
|
|
|
* 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-11-03 20:28:04 +00:00
|
|
|
*
|
2013-02-18 20:50:11 +00:00
|
|
|
* 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-05-03 20:41:37 +01:00
|
|
|
#include <QDir>
|
2013-02-19 18:15:22 +00:00
|
|
|
#include <QFileInfo>
|
2014-05-08 20:20:10 +01:00
|
|
|
#include <inifile.h>
|
2013-08-03 14:57:33 +01:00
|
|
|
#include <inisettingsobject.h>
|
|
|
|
#include <setting.h>
|
2013-02-19 18:15:22 +00:00
|
|
|
|
2014-05-08 20:20:10 +01:00
|
|
|
#include <pathutils.h>
|
2013-11-04 01:53:05 +00:00
|
|
|
#include "logger/QsLog.h"
|
2013-02-19 18:15:22 +00:00
|
|
|
|
2014-05-08 20:20:10 +01:00
|
|
|
#include "logic/InstanceFactory.h"
|
|
|
|
|
|
|
|
#include "logic/BaseInstance.h"
|
|
|
|
#include "logic/LegacyInstance.h"
|
|
|
|
#include "logic/LegacyFTBInstance.h"
|
|
|
|
#include "logic/OneSixInstance.h"
|
|
|
|
#include "logic/OneSixFTBInstance.h"
|
|
|
|
#include "logic/OneSixInstance.h"
|
|
|
|
#include "logic/BaseVersion.h"
|
|
|
|
#include "logic/minecraft/MinecraftVersion.h"
|
|
|
|
|
2013-07-28 23:59:35 +01:00
|
|
|
InstanceFactory InstanceFactory::loader;
|
2013-02-19 18:15:22 +00:00
|
|
|
|
2013-11-03 20:28:04 +00:00
|
|
|
InstanceFactory::InstanceFactory() : QObject(NULL)
|
2013-02-18 20:50:11 +00:00
|
|
|
{
|
|
|
|
}
|
2013-02-18 21:39:01 +00:00
|
|
|
|
2014-03-30 19:11:05 +01:00
|
|
|
InstanceFactory::InstLoadError InstanceFactory::loadInstance(InstancePtr &inst,
|
2013-11-03 20:28:04 +00:00
|
|
|
const QString &instDir)
|
2013-02-18 21:39:01 +00:00
|
|
|
{
|
2013-08-03 14:57:33 +01:00
|
|
|
auto m_settings = new INISettingsObject(PathCombine(instDir, "instance.cfg"));
|
2013-11-03 20:28:04 +00:00
|
|
|
|
2014-01-01 14:08:40 +00:00
|
|
|
m_settings->registerSetting("InstanceType", "Legacy");
|
2013-11-03 20:28:04 +00:00
|
|
|
|
2013-08-03 14:57:33 +01:00
|
|
|
QString inst_type = m_settings->get("InstanceType").toString();
|
2013-11-03 20:28:04 +00:00
|
|
|
|
|
|
|
// FIXME: replace with a map lookup, where instance classes register their types
|
2014-04-23 01:27:40 +01:00
|
|
|
if (inst_type == "OneSix" || inst_type == "Nostalgia")
|
2013-08-03 14:57:33 +01:00
|
|
|
{
|
2014-03-30 19:11:05 +01:00
|
|
|
inst.reset(new OneSixInstance(instDir, m_settings, this));
|
2013-08-03 14:57:33 +01:00
|
|
|
}
|
2014-01-22 06:33:32 +00:00
|
|
|
else if (inst_type == "Legacy")
|
2013-08-03 14:57:33 +01:00
|
|
|
{
|
2014-03-30 19:11:05 +01:00
|
|
|
inst.reset(new LegacyInstance(instDir, m_settings, this));
|
2013-08-03 14:57:33 +01:00
|
|
|
}
|
2013-12-20 13:47:26 +00:00
|
|
|
else if (inst_type == "LegacyFTB")
|
|
|
|
{
|
2014-03-30 19:11:05 +01:00
|
|
|
inst.reset(new LegacyFTBInstance(instDir, m_settings, this));
|
2013-12-20 13:47:26 +00:00
|
|
|
}
|
2014-01-24 17:17:26 +00:00
|
|
|
else if (inst_type == "OneSixFTB")
|
2013-12-20 13:47:26 +00:00
|
|
|
{
|
2014-03-30 19:11:05 +01:00
|
|
|
inst.reset(new OneSixFTBInstance(instDir, m_settings, this));
|
2013-12-20 13:47:26 +00:00
|
|
|
}
|
2013-08-03 14:57:33 +01:00
|
|
|
else
|
|
|
|
{
|
|
|
|
return InstanceFactory::UnknownLoadError;
|
|
|
|
}
|
2014-02-21 17:01:06 +00:00
|
|
|
inst->init();
|
2013-07-28 07:40:15 +01:00
|
|
|
return NoLoadError;
|
2013-02-18 21:39:01 +00:00
|
|
|
}
|
|
|
|
|
2014-03-30 19:11:05 +01:00
|
|
|
InstanceFactory::InstCreateError InstanceFactory::createInstance(InstancePtr &inst, BaseVersionPtr version,
|
|
|
|
const QString &instDir, const InstanceFactory::InstType type)
|
2013-02-18 21:39:01 +00:00
|
|
|
{
|
2013-05-03 20:41:37 +01:00
|
|
|
QDir rootDir(instDir);
|
2013-11-03 20:28:04 +00:00
|
|
|
|
2013-10-06 00:13:40 +01:00
|
|
|
QLOG_DEBUG() << instDir.toUtf8();
|
2013-05-03 20:41:37 +01:00
|
|
|
if (!rootDir.exists() && !rootDir.mkpath("."))
|
2013-02-18 21:39:01 +00:00
|
|
|
{
|
2013-07-28 23:59:35 +01:00
|
|
|
return InstanceFactory::CantCreateDir;
|
2013-02-18 21:39:01 +00:00
|
|
|
}
|
2013-10-06 00:13:40 +01:00
|
|
|
auto mcVer = std::dynamic_pointer_cast<MinecraftVersion>(version);
|
2013-11-03 20:28:04 +00:00
|
|
|
if (!mcVer)
|
2013-08-11 17:58:24 +01:00
|
|
|
return InstanceFactory::NoSuchVersion;
|
2013-11-03 20:28:04 +00:00
|
|
|
|
2013-08-03 22:58:39 +01:00
|
|
|
auto m_settings = new INISettingsObject(PathCombine(instDir, "instance.cfg"));
|
2014-01-01 14:08:40 +00:00
|
|
|
m_settings->registerSetting("InstanceType", "Legacy");
|
2013-11-03 20:28:04 +00:00
|
|
|
|
2013-12-20 13:47:26 +00:00
|
|
|
if (type == NormalInst)
|
2013-08-11 17:58:24 +01:00
|
|
|
{
|
2014-04-23 01:27:40 +01:00
|
|
|
m_settings->set("InstanceType", "OneSix");
|
|
|
|
inst.reset(new OneSixInstance(instDir, m_settings, this));
|
|
|
|
inst->setIntendedVersionId(version->descriptor());
|
|
|
|
inst->setShouldUseCustomBaseJar(false);
|
2013-12-20 13:47:26 +00:00
|
|
|
}
|
|
|
|
else if (type == FTBInstance)
|
|
|
|
{
|
2014-04-23 01:27:40 +01:00
|
|
|
if(mcVer->usesLegacyLauncher())
|
2013-12-20 13:47:26 +00:00
|
|
|
{
|
|
|
|
m_settings->set("InstanceType", "LegacyFTB");
|
2014-03-30 19:11:05 +01:00
|
|
|
inst.reset(new LegacyFTBInstance(instDir, m_settings, this));
|
2013-12-20 13:47:26 +00:00
|
|
|
inst->setIntendedVersionId(version->descriptor());
|
|
|
|
inst->setShouldUseCustomBaseJar(false);
|
2014-04-23 01:27:40 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2014-01-24 17:12:02 +00:00
|
|
|
m_settings->set("InstanceType", "OneSixFTB");
|
2014-03-30 19:11:05 +01:00
|
|
|
inst.reset(new OneSixFTBInstance(instDir, m_settings, this));
|
2013-12-20 13:47:26 +00:00
|
|
|
inst->setIntendedVersionId(version->descriptor());
|
|
|
|
inst->setShouldUseCustomBaseJar(false);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
2013-11-03 20:28:04 +00:00
|
|
|
{
|
|
|
|
delete m_settings;
|
|
|
|
return InstanceFactory::NoSuchVersion;
|
|
|
|
}
|
|
|
|
|
2014-02-21 17:01:06 +00:00
|
|
|
inst->init();
|
|
|
|
|
2013-11-03 20:28:04 +00:00
|
|
|
// FIXME: really, how do you even know?
|
2013-07-28 23:59:35 +01:00
|
|
|
return InstanceFactory::NoCreateError;
|
2013-02-18 21:39:01 +00:00
|
|
|
}
|
2013-11-03 20:28:04 +00:00
|
|
|
|
2014-03-30 19:11:05 +01:00
|
|
|
InstanceFactory::InstCreateError InstanceFactory::copyInstance(InstancePtr &newInstance,
|
|
|
|
InstancePtr &oldInstance,
|
2013-11-03 20:28:04 +00:00
|
|
|
const QString &instDir)
|
|
|
|
{
|
|
|
|
QDir rootDir(instDir);
|
|
|
|
|
|
|
|
QLOG_DEBUG() << instDir.toUtf8();
|
|
|
|
if (!copyPath(oldInstance->instanceRoot(), instDir))
|
|
|
|
{
|
|
|
|
rootDir.removeRecursively();
|
|
|
|
return InstanceFactory::CantCreateDir;
|
|
|
|
}
|
2013-12-22 03:31:30 +00:00
|
|
|
|
2014-03-30 23:19:43 +01:00
|
|
|
INISettingsObject settings_obj(PathCombine(instDir, "instance.cfg"));
|
|
|
|
settings_obj.registerSetting("InstanceType", "Legacy");
|
|
|
|
QString inst_type = settings_obj.get("InstanceType").toString();
|
|
|
|
|
|
|
|
if (inst_type == "OneSixFTB")
|
|
|
|
settings_obj.set("InstanceType", "OneSix");
|
|
|
|
if (inst_type == "LegacyFTB")
|
|
|
|
settings_obj.set("InstanceType", "Legacy");
|
|
|
|
|
2014-02-21 18:15:59 +00:00
|
|
|
oldInstance->copy(instDir);
|
|
|
|
|
2013-11-03 20:28:04 +00:00
|
|
|
auto error = loadInstance(newInstance, instDir);
|
2013-12-22 03:31:30 +00:00
|
|
|
|
2013-11-04 01:53:05 +00:00
|
|
|
switch (error)
|
2013-11-03 20:28:04 +00:00
|
|
|
{
|
2013-11-04 01:53:05 +00:00
|
|
|
case NoLoadError:
|
|
|
|
return NoCreateError;
|
|
|
|
case NotAnInstance:
|
|
|
|
rootDir.removeRecursively();
|
|
|
|
return CantCreateDir;
|
2013-12-01 15:34:51 +00:00
|
|
|
default:
|
|
|
|
case UnknownLoadError:
|
|
|
|
rootDir.removeRecursively();
|
2014-03-30 19:11:05 +01:00
|
|
|
return UnknownCreateError;
|
2013-11-04 01:53:05 +00:00
|
|
|
}
|
2013-11-03 20:28:04 +00:00
|
|
|
}
|