2013-08-22 17:22:49 +03:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "cmodlist.h"
|
|
|
|
|
|
|
|
class CModManager
|
|
|
|
{
|
|
|
|
CModList * modList;
|
|
|
|
|
|
|
|
QString settingsPath();
|
|
|
|
|
|
|
|
// check-free version of public method
|
|
|
|
bool doEnableMod(QString mod, bool on);
|
|
|
|
bool doInstallMod(QString mod, QString archivePath);
|
|
|
|
bool doUninstallMod(QString mod);
|
|
|
|
|
|
|
|
QJsonObject modSettings;
|
|
|
|
QJsonObject localMods;
|
|
|
|
|
2013-09-06 00:25:03 +03:00
|
|
|
QStringList recentErrors;
|
|
|
|
bool addError(QString modname, QString message);
|
2013-08-22 17:22:49 +03:00
|
|
|
public:
|
|
|
|
CModManager(CModList * modList);
|
|
|
|
|
2013-08-24 23:11:51 +03:00
|
|
|
void resetRepositories();
|
2013-08-22 17:22:49 +03:00
|
|
|
void loadRepository(QString filename);
|
|
|
|
void loadModSettings();
|
|
|
|
void loadMods();
|
|
|
|
|
2013-09-06 00:25:03 +03:00
|
|
|
QStringList getErrors();
|
|
|
|
|
2013-08-22 17:22:49 +03:00
|
|
|
/// mod management functions. Return true if operation was successful
|
|
|
|
|
|
|
|
/// installs mod from zip archive located at archivePath
|
|
|
|
bool installMod(QString mod, QString archivePath);
|
|
|
|
bool uninstallMod(QString mod);
|
|
|
|
bool enableMod(QString mod);
|
|
|
|
bool disableMod(QString mod);
|
|
|
|
|
|
|
|
bool canInstallMod(QString mod);
|
|
|
|
bool canUninstallMod(QString mod);
|
|
|
|
bool canEnableMod(QString mod);
|
|
|
|
bool canDisableMod(QString mod);
|
|
|
|
};
|