pollymc/libmultimc/src/instanceloader.cpp

62 lines
1.4 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 "include/instanceloader.h"
#include <QDir>
2013-02-19 23:45:22 +05:30
#include <QFileInfo>
#include "include/instance.h"
2013-02-19 03:09:01 +05:30
#include "inifile.h"
2013-02-19 23:45:22 +05:30
#include "pathutils.h"
2013-02-19 23:45:22 +05:30
InstanceLoader InstanceLoader::loader;
2013-02-19 04:28:53 +05:30
InstanceLoader::InstanceLoader() :
QObject(NULL)
{
2013-02-19 04:28:53 +05:30
}
2013-02-19 03:09:01 +05:30
InstanceLoader::InstLoaderError InstanceLoader::loadInstance(
Instance *&inst, const QString &instDir)
2013-02-19 03:09:01 +05:30
{
Instance *loadedInst = new Instance(instDir, this);
2013-02-19 03:09:01 +05:30
// TODO: Sanity checks to verify that the instance is valid.
2013-02-19 03:09:01 +05:30
inst = loadedInst;
2013-02-19 03:09:01 +05:30
return NoError;
}
2013-02-19 23:45:22 +05:30
InstanceLoader::InstLoaderError InstanceLoader::createInstance(Instance *&inst, const QString &instDir)
2013-02-19 03:09:01 +05:30
{
QDir rootDir(instDir);
2013-02-19 03:09:01 +05:30
qDebug(instDir.toUtf8());
if (!rootDir.exists() && !rootDir.mkpath("."))
2013-02-19 03:09:01 +05:30
{
return InstanceLoader::CantCreateDir;
2013-02-19 03:09:01 +05:30
}
inst = new Instance(instDir, this);
return InstanceLoader::NoError;
2013-02-19 03:09:01 +05:30
}