MultiMC5/backend/InstanceFactory.cpp

62 lines
1.5 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-02-18 21:39:01 +00:00
#include "inifile.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
{
BaseInstance *loadedInst = new BaseInstance(instDir, this);
2013-02-18 21:39:01 +00:00
// TODO: Sanity checks to verify that the instance is valid.
2013-02-18 21:39:01 +00:00
inst = loadedInst;
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
}
inst = new BaseInstance(instDir, this);
//FIXME: really, how do you even know?
return InstanceFactory::NoCreateError;
2013-02-18 21:39:01 +00:00
}