pollymc/logic/InstanceFactory.cpp

171 lines
4.8 KiB
C++
Raw Normal View History

2015-02-03 03:55:30 +05:30
/* Copyright 2013-2015 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
*
* 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.
*/
#include <QDir>
2013-02-19 23:45:22 +05:30
#include <QFileInfo>
#include "logic/settings/INIFile.h"
#include "logic/settings/INISettingsObject.h"
#include "logic/settings/Setting.h"
2013-02-19 23:45:22 +05:30
2014-05-09 00:50:10 +05:30
#include <pathutils.h>
#include "logger/QsLog.h"
2013-02-19 23:45:22 +05:30
2014-05-09 00:50:10 +05:30
#include "logic/InstanceFactory.h"
#include "logic/BaseInstance.h"
#include "logic/LegacyInstance.h"
#include "logic/OneSixInstance.h"
#include "logic/OneSixInstance.h"
#include "logic/BaseVersion.h"
#include "logic/minecraft/MinecraftVersion.h"
2015-01-28 03:01:07 +05:30
#include "logic/ftb/LegacyFTBInstance.h"
#include "logic/ftb/OneSixFTBInstance.h"
#include "logic/ftb/FTBVersion.h"
2014-05-09 00:50:10 +05:30
InstanceFactory InstanceFactory::loader;
2013-02-19 23:45:22 +05:30
InstanceFactory::InstanceFactory() : QObject(NULL)
{
}
2013-02-19 03:09:01 +05:30
2014-03-30 23:41:05 +05:30
InstanceFactory::InstLoadError InstanceFactory::loadInstance(InstancePtr &inst,
const QString &instDir)
2013-02-19 03:09:01 +05:30
{
2013-08-03 19:27:33 +05:30
auto m_settings = new INISettingsObject(PathCombine(instDir, "instance.cfg"));
m_settings->registerSetting("InstanceType", "Legacy");
2013-08-03 19:27:33 +05:30
QString inst_type = m_settings->get("InstanceType").toString();
// FIXME: replace with a map lookup, where instance classes register their types
if (inst_type == "OneSix" || inst_type == "Nostalgia")
2013-08-03 19:27:33 +05:30
{
2014-09-06 21:46:56 +05:30
inst.reset(new OneSixInstance(instDir, m_settings));
2013-08-03 19:27:33 +05:30
}
else if (inst_type == "Legacy")
2013-08-03 19:27:33 +05:30
{
2014-09-06 21:46:56 +05:30
inst.reset(new LegacyInstance(instDir, m_settings));
2013-08-03 19:27:33 +05:30
}
else if (inst_type == "LegacyFTB")
{
2014-09-06 21:46:56 +05:30
inst.reset(new LegacyFTBInstance(instDir, m_settings));
}
2014-01-24 22:47:26 +05:30
else if (inst_type == "OneSixFTB")
{
2014-09-06 21:46:56 +05:30
inst.reset(new OneSixFTBInstance(instDir, m_settings));
}
2013-08-03 19:27:33 +05:30
else
{
return InstanceFactory::UnknownLoadError;
}
inst->init();
return NoLoadError;
2013-02-19 03:09:01 +05:30
}
2015-01-28 03:01:07 +05:30
InstanceFactory::InstCreateError
InstanceFactory::createInstance(InstancePtr &inst, BaseVersionPtr version, const QString &instDir)
2013-02-19 03:09:01 +05:30
{
QDir rootDir(instDir);
2013-10-06 04:43:40 +05:30
QLOG_DEBUG() << instDir.toUtf8();
if (!rootDir.exists() && !rootDir.mkpath("."))
2013-02-19 03:09:01 +05:30
{
2014-09-06 21:46:56 +05:30
QLOG_ERROR() << "Can't create instance folder" << instDir;
return InstanceFactory::CantCreateDir;
2013-02-19 03:09:01 +05:30
}
2015-01-28 03:01:07 +05:30
if (!version)
2014-09-06 21:46:56 +05:30
{
QLOG_ERROR() << "Can't create instance for non-existing MC version";
return InstanceFactory::NoSuchVersion;
2014-09-06 21:46:56 +05:30
}
2013-08-04 03:28:39 +05:30
auto m_settings = new INISettingsObject(PathCombine(instDir, "instance.cfg"));
m_settings->registerSetting("InstanceType", "Legacy");
2015-01-28 03:01:07 +05:30
auto minecraftVersion = std::dynamic_pointer_cast<MinecraftVersion>(version);
if(minecraftVersion)
{
2015-01-28 03:01:07 +05:30
auto mcVer = std::dynamic_pointer_cast<MinecraftVersion>(version);
m_settings->set("InstanceType", "OneSix");
2014-09-06 21:46:56 +05:30
inst.reset(new OneSixInstance(instDir, m_settings));
inst->setIntendedVersionId(version->descriptor());
2015-01-28 03:01:07 +05:30
inst->init();
return InstanceFactory::NoCreateError;
}
2015-01-28 03:01:07 +05:30
auto ftbVersion = std::dynamic_pointer_cast<FTBVersion>(version);
if(ftbVersion)
{
2015-01-28 03:01:07 +05:30
auto mcversion = ftbVersion->getMinecraftVersion();
if (mcversion->usesLegacyLauncher())
{
m_settings->set("InstanceType", "LegacyFTB");
2014-09-06 21:46:56 +05:30
inst.reset(new LegacyFTBInstance(instDir, m_settings));
2015-01-28 03:01:07 +05:30
inst->setIntendedVersionId(mcversion->descriptor());
}
else
{
m_settings->set("InstanceType", "OneSixFTB");
2014-09-06 21:46:56 +05:30
inst.reset(new OneSixFTBInstance(instDir, m_settings));
2015-01-28 03:01:07 +05:30
inst->setIntendedVersionId(mcversion->descriptor());
inst->init();
}
2015-01-28 03:01:07 +05:30
return InstanceFactory::NoCreateError;
}
2015-01-28 03:01:07 +05:30
delete m_settings;
return InstanceFactory::NoSuchVersion;
2013-02-19 03:09:01 +05:30
}
2014-03-30 23:41:05 +05:30
InstanceFactory::InstCreateError InstanceFactory::copyInstance(InstancePtr &newInstance,
InstancePtr &oldInstance,
const QString &instDir)
{
QDir rootDir(instDir);
QLOG_DEBUG() << instDir.toUtf8();
if (!copyPath(oldInstance->instanceRoot(), instDir))
{
rootDir.removeRecursively();
return InstanceFactory::CantCreateDir;
}
2014-03-31 03:49:43 +05:30
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 23:45:59 +05:30
oldInstance->copy(instDir);
auto error = loadInstance(newInstance, instDir);
switch (error)
{
case NoLoadError:
return NoCreateError;
case NotAnInstance:
rootDir.removeRecursively();
return CantCreateDir;
default:
case UnknownLoadError:
rootDir.removeRecursively();
2014-03-30 23:41:05 +05:30
return UnknownCreateError;
}
}