PrismLauncher/backend/InstanceFactory.cpp

79 lines
2.0 KiB
C++
Raw Normal View History

/* 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
*
* 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 "InstanceFactory.h"
#include <QDir>
2013-02-19 18:15:22 +00:00
#include <QFileInfo>
#include "BaseInstance.h"
2013-08-03 14:57:33 +01:00
#include "LegacyInstance.h"
#include "OneSixInstance.h"
2013-02-18 21:39:01 +00: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
#include "pathutils.h"
2013-02-19 18:15:22 +00:00
InstanceFactory InstanceFactory::loader;
2013-02-19 18:15:22 +00:00
InstanceFactory::InstanceFactory() :
2013-02-18 22:58:53 +00:00
QObject(NULL)
{
2013-02-18 22:58:53 +00:00
}
2013-02-18 21:39:01 +00:00
InstanceFactory::InstLoadError InstanceFactory::loadInstance(BaseInstance *&inst, 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-02-18 21:39:01 +00:00
2013-08-03 14:57:33 +01:00
m_settings->registerSetting(new Setting("InstanceType", "Legacy"));
2013-02-18 21:39:01 +00:00
2013-08-03 14:57:33 +01:00
QString inst_type = m_settings->get("InstanceType").toString();
2013-08-03 14:57:33 +01:00
//FIXME: replace with a map lookup, where instance classes register their types
if(inst_type == "Legacy")
{
inst = new LegacyInstance(instDir, m_settings, this);
}
else if(inst_type == "OneSix")
{
inst = new OneSixInstance(instDir, m_settings, this);
}
else
{
return InstanceFactory::UnknownLoadError;
}
return NoLoadError;
2013-02-18 21:39:01 +00:00
}
2013-02-19 18:15:22 +00:00
InstanceFactory::InstCreateError InstanceFactory::createInstance(BaseInstance *&inst, const QString &instDir)
2013-02-18 21:39:01 +00:00
{
QDir rootDir(instDir);
2013-02-18 21:39:01 +00:00
qDebug(instDir.toUtf8());
if (!rootDir.exists() && !rootDir.mkpath("."))
2013-02-18 21:39:01 +00:00
{
return InstanceFactory::CantCreateDir;
2013-02-18 21:39:01 +00:00
}
2013-08-03 14:57:33 +01:00
return InstanceFactory::UnknownCreateError;
//inst = new BaseInstance(instDir, this);
//FIXME: really, how do you even know?
return InstanceFactory::NoCreateError;
2013-02-18 21:39:01 +00:00
}