pollymc/logic/InstanceFactory.h

101 lines
2.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.
*/
#pragma once
#include <QObject>
2013-02-19 03:09:01 +05:30
#include <QMap>
#include <QList>
#include "BaseVersion.h"
2014-03-30 23:41:05 +05:30
#include "BaseInstance.h"
2014-07-01 04:53:49 +05:30
struct BaseVersion;
class BaseInstance;
/*!
2014-09-06 21:46:56 +05:30
* The \b InstanceFactory\b is a singleton that manages loading and creating instances.
*/
class InstanceFactory : public QObject
{
Q_OBJECT
public:
/*!
* \brief Gets a reference to the instance loader.
*/
static InstanceFactory &get()
{
return loader;
}
enum InstLoadError
{
NoLoadError = 0,
UnknownLoadError,
NotAnInstance
};
enum InstCreateError
{
NoCreateError = 0,
NoSuchVersion,
UnknownCreateError,
InstExists,
2013-02-21 07:15:00 +05:30
CantCreateDir
};
/*!
2013-08-03 19:27:33 +05:30
* \brief Creates a stub instance
2013-02-19 23:45:22 +05:30
*
* \param inst Pointer to store the created instance in.
* \param version Game version to use for the instance
* \param instDir The new instance's directory.
* \param type The type of instance to create
* \return An InstCreateError error code.
* - InstExists if the given instance directory is already an instance.
* - CantCreateDir if the given instance directory cannot be created.
*/
2014-03-30 23:41:05 +05:30
InstCreateError createInstance(InstancePtr &inst, BaseVersionPtr version,
2015-01-28 03:01:07 +05:30
const QString &instDir);
/*!
* \brief Creates a copy of an existing instance with a new name
*
* \param newInstance Pointer to store the created instance in.
* \param oldInstance The instance to copy
* \param instDir The new instance's directory.
* \return An InstCreateError error code.
2013-02-19 23:45:22 +05:30
* - InstExists if the given instance directory is already an instance.
2013-02-21 07:15:00 +05:30
* - CantCreateDir if the given instance directory cannot be created.
*/
2014-03-30 23:41:05 +05:30
InstCreateError copyInstance(InstancePtr &newInstance, InstancePtr &oldInstance,
const QString &instDir);
2013-02-19 23:45:22 +05:30
/*!
* \brief Loads an instance from the given directory.
* Checks the instance's INI file to figure out what the instance's type is first.
* \param inst Pointer to store the loaded instance in.
* \param instDir The instance's directory.
* \return An InstLoadError error code.
2013-02-19 23:45:22 +05:30
* - NotAnInstance if the given instance directory isn't a valid instance.
*/
2014-03-30 23:41:05 +05:30
InstLoadError loadInstance(InstancePtr &inst, const QString &instDir);
private:
InstanceFactory();
static InstanceFactory loader;
};