2017-07-13 10:26:03 +02:00
|
|
|
/*
|
2024-11-12 22:00:21 +02:00
|
|
|
* modstatecontroller.h, part of VCMI engine
|
2017-07-13 10:26:03 +02:00
|
|
|
*
|
|
|
|
* 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
|
|
|
|
|
2024-11-12 22:00:21 +02:00
|
|
|
#include <QVector>
|
2013-08-22 17:22:49 +03:00
|
|
|
|
2024-11-12 22:00:21 +02:00
|
|
|
VCMI_LIB_NAMESPACE_BEGIN
|
|
|
|
class JsonNode;
|
|
|
|
VCMI_LIB_NAMESPACE_END
|
|
|
|
|
|
|
|
class ModStateModel;
|
|
|
|
|
|
|
|
class ModStateController : public QObject, public boost::noncopyable
|
2013-08-22 17:22:49 +03:00
|
|
|
{
|
2022-09-27 10:51:49 +02:00
|
|
|
Q_OBJECT
|
|
|
|
|
2024-11-12 22:00:21 +02:00
|
|
|
std::shared_ptr<ModStateModel> modList;
|
2013-08-22 17:22:49 +03:00
|
|
|
|
|
|
|
// check-free version of public method
|
|
|
|
bool doInstallMod(QString mod, QString archivePath);
|
|
|
|
bool doUninstallMod(QString mod);
|
|
|
|
|
2013-09-21 21:29:26 +03:00
|
|
|
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:
|
2024-11-12 22:00:21 +02:00
|
|
|
ModStateController(std::shared_ptr<ModStateModel> modList);
|
|
|
|
~ModStateController();
|
2013-08-22 17:22:49 +03:00
|
|
|
|
2024-11-13 19:25:59 +02:00
|
|
|
void appendRepositories(const JsonNode & repositoriesList);
|
2013-08-22 17:22:49 +03:00
|
|
|
|
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);
|
2024-11-20 00:15:05 +02:00
|
|
|
bool enableMods(QStringList mod);
|
2013-08-22 17:22:49 +03:00
|
|
|
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
|
|
|
};
|