2017-07-13 10:26:03 +02:00
|
|
|
/*
|
|
|
|
* cmodmanager.h, part of VCMI engine
|
|
|
|
*
|
|
|
|
* Authors: listed in file AUTHORS in main folder
|
|
|
|
*
|
|
|
|
* License: GNU General Public License v2.0 or later
|
|
|
|
* Full text of license available in license.txt file, in main folder
|
|
|
|
*
|
|
|
|
*/
|
2013-08-22 17:22:49 +03:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "cmodlist.h"
|
|
|
|
|
2022-09-27 10:51:49 +02:00
|
|
|
class CModManager : public QObject
|
2013-08-22 17:22:49 +03:00
|
|
|
{
|
2022-09-27 10:51:49 +02:00
|
|
|
Q_OBJECT
|
|
|
|
|
2013-08-22 17:22:49 +03:00
|
|
|
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);
|
|
|
|
|
2013-09-21 21:29:26 +03:00
|
|
|
QVariantMap modSettings;
|
|
|
|
QVariantMap localMods;
|
2013-08-22 17:22:49 +03:00
|
|
|
|
2013-09-06 00:25:03 +03:00
|
|
|
QStringList recentErrors;
|
|
|
|
bool addError(QString modname, QString message);
|
2017-05-25 02:03:02 +02:00
|
|
|
bool removeModDir(QString mod);
|
2018-04-13 07:34:58 +02:00
|
|
|
|
2013-08-22 17:22:49 +03:00
|
|
|
public:
|
|
|
|
CModManager(CModList * modList);
|
|
|
|
|
2013-08-24 23:11:51 +03:00
|
|
|
void resetRepositories();
|
2023-09-05 12:33:26 +02:00
|
|
|
void loadRepositories(QVector<QVariantMap> repomap);
|
2013-08-22 17:22:49 +03:00
|
|
|
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);
|
2023-09-19 23:38:00 +02:00
|
|
|
|
|
|
|
signals:
|
|
|
|
void extractionProgress(qint64 currentAmount, qint64 maxAmount);
|
2013-08-22 17:22:49 +03:00
|
|
|
};
|