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