2022-06-12 17:20:58 +05:30
|
|
|
// SPDX-License-Identifier: GPL-3.0-only
|
|
|
|
/*
|
|
|
|
* PolyMC - Minecraft Launcher
|
|
|
|
* Copyright (c) 2022 flowln <flowlnlnln@gmail.com>
|
|
|
|
* Copyright (C) 2022 Sefa Eyeoglu <contact@scrumplex.net>
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, version 3.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
* This file incorporates work covered by the following copyright and
|
|
|
|
* permission notice:
|
|
|
|
*
|
|
|
|
* Copyright 2013-2021 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.
|
|
|
|
*/
|
2013-08-14 11:43:41 +05:30
|
|
|
|
2019-08-04 06:57:53 +05:30
|
|
|
#include "ModFolderModel.h"
|
2022-04-16 05:05:17 +05:30
|
|
|
|
2015-10-05 05:17:27 +05:30
|
|
|
#include <FileSystem.h>
|
2022-04-16 05:05:17 +05:30
|
|
|
#include <QDebug>
|
|
|
|
#include <QFileSystemWatcher>
|
2013-08-19 00:22:17 +05:30
|
|
|
#include <QMimeData>
|
2013-12-26 09:44:32 +05:30
|
|
|
#include <QString>
|
2019-08-04 06:57:53 +05:30
|
|
|
#include <QThreadPool>
|
2022-04-16 05:05:17 +05:30
|
|
|
#include <QUrl>
|
|
|
|
#include <QUuid>
|
2019-08-04 06:57:53 +05:30
|
|
|
#include <algorithm>
|
2022-04-16 05:05:17 +05:30
|
|
|
|
|
|
|
#include "minecraft/mod/tasks/LocalModParseTask.h"
|
|
|
|
#include "minecraft/mod/tasks/ModFolderLoadTask.h"
|
2013-08-14 11:43:41 +05:30
|
|
|
|
2022-06-04 19:00:34 +05:30
|
|
|
ModFolderModel::ModFolderModel(const QString &dir, bool is_indexed) : QAbstractListModel(), m_dir(dir), m_is_indexed(is_indexed)
|
2013-08-14 11:43:41 +05:30
|
|
|
{
|
2018-07-15 18:21:05 +05:30
|
|
|
FS::ensureFolderPathExists(m_dir.absolutePath());
|
2021-09-09 03:57:46 +05:30
|
|
|
m_dir.setFilter(QDir::Readable | QDir::NoDotAndDotDot | QDir::Files | QDir::Dirs);
|
2018-07-15 18:21:05 +05:30
|
|
|
m_dir.setSorting(QDir::Name | QDir::IgnoreCase | QDir::LocaleAware);
|
|
|
|
m_watcher = new QFileSystemWatcher(this);
|
|
|
|
connect(m_watcher, SIGNAL(directoryChanged(QString)), this, SLOT(directoryChanged(QString)));
|
2013-08-14 11:43:41 +05:30
|
|
|
}
|
|
|
|
|
2019-08-04 06:57:53 +05:30
|
|
|
void ModFolderModel::startWatching()
|
2013-08-25 05:02:42 +05:30
|
|
|
{
|
2018-07-15 18:21:05 +05:30
|
|
|
if(is_watching)
|
|
|
|
return;
|
|
|
|
|
|
|
|
update();
|
|
|
|
|
|
|
|
is_watching = m_watcher->addPath(m_dir.absolutePath());
|
|
|
|
if (is_watching)
|
|
|
|
{
|
|
|
|
qDebug() << "Started watching " << m_dir.absolutePath();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
qDebug() << "Failed to start watching " << m_dir.absolutePath();
|
|
|
|
}
|
2013-08-25 05:02:42 +05:30
|
|
|
}
|
|
|
|
|
2019-08-04 06:57:53 +05:30
|
|
|
void ModFolderModel::stopWatching()
|
2013-08-25 05:02:42 +05:30
|
|
|
{
|
2018-07-15 18:21:05 +05:30
|
|
|
if(!is_watching)
|
|
|
|
return;
|
|
|
|
|
|
|
|
is_watching = !m_watcher->removePath(m_dir.absolutePath());
|
|
|
|
if (!is_watching)
|
|
|
|
{
|
|
|
|
qDebug() << "Stopped watching " << m_dir.absolutePath();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
qDebug() << "Failed to stop watching " << m_dir.absolutePath();
|
|
|
|
}
|
2013-08-25 05:02:42 +05:30
|
|
|
}
|
|
|
|
|
2019-08-04 06:57:53 +05:30
|
|
|
bool ModFolderModel::update()
|
2013-08-14 11:43:41 +05:30
|
|
|
{
|
2019-08-04 06:57:53 +05:30
|
|
|
if (!isValid()) {
|
2018-07-15 18:21:05 +05:30
|
|
|
return false;
|
2019-08-04 06:57:53 +05:30
|
|
|
}
|
|
|
|
if(m_update) {
|
|
|
|
scheduled_update = true;
|
2019-08-04 14:42:19 +05:30
|
|
|
return true;
|
2019-08-04 06:57:53 +05:30
|
|
|
}
|
|
|
|
|
2022-04-15 08:54:57 +05:30
|
|
|
auto index_dir = indexDir();
|
2022-06-04 19:00:34 +05:30
|
|
|
auto task = new ModFolderLoadTask(dir(), index_dir, m_is_indexed);
|
2022-04-15 08:54:57 +05:30
|
|
|
|
2019-08-04 06:57:53 +05:30
|
|
|
m_update = task->result();
|
2022-04-15 08:54:57 +05:30
|
|
|
|
2019-08-04 06:57:53 +05:30
|
|
|
QThreadPool *threadPool = QThreadPool::globalInstance();
|
2019-08-04 08:38:40 +05:30
|
|
|
connect(task, &ModFolderLoadTask::succeeded, this, &ModFolderModel::finishUpdate);
|
2022-04-15 08:54:57 +05:30
|
|
|
|
2019-08-04 06:57:53 +05:30
|
|
|
threadPool->start(task);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2019-08-04 08:38:40 +05:30
|
|
|
void ModFolderModel::finishUpdate()
|
2019-08-04 06:57:53 +05:30
|
|
|
{
|
|
|
|
QSet<QString> currentSet = modsIndex.keys().toSet();
|
|
|
|
auto & newMods = m_update->mods;
|
|
|
|
QSet<QString> newSet = newMods.keys().toSet();
|
|
|
|
|
|
|
|
// see if the kept mods changed in some way
|
|
|
|
{
|
|
|
|
QSet<QString> kept = currentSet;
|
|
|
|
kept.intersect(newSet);
|
|
|
|
for(auto & keptMod: kept) {
|
|
|
|
auto & newMod = newMods[keptMod];
|
|
|
|
auto row = modsIndex[keptMod];
|
|
|
|
auto & currentMod = mods[row];
|
|
|
|
if(newMod.dateTimeChanged() == currentMod.dateTimeChanged()) {
|
|
|
|
// no significant change, ignore...
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
auto & oldMod = mods[row];
|
|
|
|
if(oldMod.isResolving()) {
|
|
|
|
activeTickets.remove(oldMod.resolutionTicket());
|
|
|
|
}
|
|
|
|
oldMod = newMod;
|
|
|
|
resolveMod(mods[row]);
|
|
|
|
emit dataChanged(index(row, 0), index(row, columnCount(QModelIndex()) - 1));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// remove mods no longer present
|
|
|
|
{
|
|
|
|
QSet<QString> removed = currentSet;
|
|
|
|
QList<int> removedRows;
|
|
|
|
removed.subtract(newSet);
|
|
|
|
for(auto & removedMod: removed) {
|
|
|
|
removedRows.append(modsIndex[removedMod]);
|
|
|
|
}
|
2019-08-04 07:09:25 +05:30
|
|
|
std::sort(removedRows.begin(), removedRows.end(), std::greater<int>());
|
|
|
|
for(auto iter = removedRows.begin(); iter != removedRows.end(); iter++) {
|
2019-08-04 06:57:53 +05:30
|
|
|
int removedIndex = *iter;
|
|
|
|
beginRemoveRows(QModelIndex(), removedIndex, removedIndex);
|
|
|
|
auto removedIter = mods.begin() + removedIndex;
|
|
|
|
if(removedIter->isResolving()) {
|
|
|
|
activeTickets.remove(removedIter->resolutionTicket());
|
|
|
|
}
|
|
|
|
mods.erase(removedIter);
|
|
|
|
endRemoveRows();
|
|
|
|
}
|
|
|
|
}
|
2018-07-15 18:21:05 +05:30
|
|
|
|
2019-08-04 06:57:53 +05:30
|
|
|
// add new mods to the end
|
2018-07-15 18:21:05 +05:30
|
|
|
{
|
2019-08-04 06:57:53 +05:30
|
|
|
QSet<QString> added = newSet;
|
|
|
|
added.subtract(currentSet);
|
|
|
|
beginInsertRows(QModelIndex(), mods.size(), mods.size() + added.size() - 1);
|
|
|
|
for(auto & addedMod: added) {
|
|
|
|
mods.append(newMods[addedMod]);
|
|
|
|
resolveMod(mods.last());
|
|
|
|
}
|
|
|
|
endInsertRows();
|
|
|
|
}
|
|
|
|
|
|
|
|
// update index
|
|
|
|
{
|
|
|
|
modsIndex.clear();
|
|
|
|
int idx = 0;
|
|
|
|
for(auto & mod: mods) {
|
2022-04-16 06:37:35 +05:30
|
|
|
modsIndex[mod.internal_id()] = idx;
|
2019-08-04 06:57:53 +05:30
|
|
|
idx++;
|
|
|
|
}
|
2018-07-15 18:21:05 +05:30
|
|
|
}
|
2018-11-15 05:06:47 +05:30
|
|
|
|
2019-08-04 06:57:53 +05:30
|
|
|
m_update.reset();
|
2018-11-15 05:06:47 +05:30
|
|
|
|
2019-08-04 08:38:40 +05:30
|
|
|
emit updateFinished();
|
2019-08-04 06:57:53 +05:30
|
|
|
|
|
|
|
if(scheduled_update) {
|
|
|
|
scheduled_update = false;
|
|
|
|
update();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void ModFolderModel::resolveMod(Mod& m)
|
|
|
|
{
|
|
|
|
if(!m.shouldResolve()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2022-04-16 21:57:29 +05:30
|
|
|
auto task = new LocalModParseTask(nextResolutionTicket, m.type(), m.fileinfo());
|
2019-08-04 06:57:53 +05:30
|
|
|
auto result = task->result();
|
2022-04-16 06:37:35 +05:30
|
|
|
result->id = m.internal_id();
|
2019-08-04 06:57:53 +05:30
|
|
|
activeTickets.insert(nextResolutionTicket, result);
|
|
|
|
m.setResolving(true, nextResolutionTicket);
|
|
|
|
nextResolutionTicket++;
|
|
|
|
QThreadPool *threadPool = QThreadPool::globalInstance();
|
2019-08-04 08:38:40 +05:30
|
|
|
connect(task, &LocalModParseTask::finished, this, &ModFolderModel::finishModParse);
|
2019-08-04 06:57:53 +05:30
|
|
|
threadPool->start(task);
|
|
|
|
}
|
|
|
|
|
2019-08-04 08:38:40 +05:30
|
|
|
void ModFolderModel::finishModParse(int token)
|
2019-08-04 06:57:53 +05:30
|
|
|
{
|
|
|
|
auto iter = activeTickets.find(token);
|
|
|
|
if(iter == activeTickets.end()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
auto result = *iter;
|
|
|
|
activeTickets.remove(token);
|
|
|
|
int row = modsIndex[result->id];
|
|
|
|
auto & mod = mods[row];
|
|
|
|
mod.finishResolvingWithDetails(result->details);
|
|
|
|
emit dataChanged(index(row), index(row, columnCount(QModelIndex()) - 1));
|
2013-08-19 00:22:17 +05:30
|
|
|
}
|
2013-08-14 11:43:41 +05:30
|
|
|
|
2019-08-04 06:57:53 +05:30
|
|
|
void ModFolderModel::disableInteraction(bool disabled)
|
2019-07-15 04:37:21 +05:30
|
|
|
{
|
|
|
|
if (interaction_disabled == disabled) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
interaction_disabled = disabled;
|
|
|
|
if(size()) {
|
|
|
|
emit dataChanged(index(0), index(size() - 1));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-08-04 06:57:53 +05:30
|
|
|
void ModFolderModel::directoryChanged(QString path)
|
2013-08-25 05:02:42 +05:30
|
|
|
{
|
2018-07-15 18:21:05 +05:30
|
|
|
update();
|
2013-08-25 05:02:42 +05:30
|
|
|
}
|
|
|
|
|
2019-08-04 06:57:53 +05:30
|
|
|
bool ModFolderModel::isValid()
|
2013-08-14 11:43:41 +05:30
|
|
|
{
|
2018-07-15 18:21:05 +05:30
|
|
|
return m_dir.exists() && m_dir.isReadable();
|
2013-08-14 11:43:41 +05:30
|
|
|
}
|
|
|
|
|
2018-11-21 04:59:41 +05:30
|
|
|
// FIXME: this does not take disabled mod (with extra .disable extension) into account...
|
2019-08-04 06:57:53 +05:30
|
|
|
bool ModFolderModel::installMod(const QString &filename)
|
2013-08-14 11:43:41 +05:30
|
|
|
{
|
2019-07-15 04:37:21 +05:30
|
|
|
if(interaction_disabled) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2018-07-15 18:21:05 +05:30
|
|
|
// NOTE: fix for GH-1178: remove trailing slash to avoid issues with using the empty result of QFileInfo::fileName
|
2018-11-21 04:59:41 +05:30
|
|
|
auto originalPath = FS::NormalizePath(filename);
|
|
|
|
QFileInfo fileinfo(originalPath);
|
2018-07-15 18:21:05 +05:30
|
|
|
|
|
|
|
if (!fileinfo.exists() || !fileinfo.isReadable())
|
|
|
|
{
|
2018-11-21 04:59:41 +05:30
|
|
|
qWarning() << "Caught attempt to install non-existing file or file-like object:" << originalPath;
|
2018-07-15 18:21:05 +05:30
|
|
|
return false;
|
|
|
|
}
|
2018-11-21 04:59:41 +05:30
|
|
|
qDebug() << "installing: " << fileinfo.absoluteFilePath();
|
|
|
|
|
|
|
|
Mod installedMod(fileinfo);
|
|
|
|
if (!installedMod.valid())
|
|
|
|
{
|
|
|
|
qDebug() << originalPath << "is not a valid mod. Ignoring it.";
|
2018-07-15 18:21:05 +05:30
|
|
|
return false;
|
2018-11-21 04:59:41 +05:30
|
|
|
}
|
2018-07-15 18:21:05 +05:30
|
|
|
|
2018-11-21 04:59:41 +05:30
|
|
|
auto type = installedMod.type();
|
2018-07-15 18:21:05 +05:30
|
|
|
if (type == Mod::MOD_UNKNOWN)
|
2018-11-21 04:59:41 +05:30
|
|
|
{
|
|
|
|
qDebug() << "Cannot recognize mod type of" << originalPath << ", ignoring it.";
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2019-06-15 01:18:24 +05:30
|
|
|
auto newpath = FS::NormalizePath(FS::PathCombine(m_dir.path(), fileinfo.fileName()));
|
2018-11-21 04:59:41 +05:30
|
|
|
if(originalPath == newpath)
|
|
|
|
{
|
|
|
|
qDebug() << "Overwriting the mod (" << originalPath << ") with itself makes no sense...";
|
2018-07-15 18:21:05 +05:30
|
|
|
return false;
|
2018-11-21 04:59:41 +05:30
|
|
|
}
|
|
|
|
|
2018-07-15 18:21:05 +05:30
|
|
|
if (type == Mod::MOD_SINGLEFILE || type == Mod::MOD_ZIPFILE || type == Mod::MOD_LITEMOD)
|
|
|
|
{
|
2019-06-17 18:44:40 +05:30
|
|
|
if(QFile::exists(newpath) || QFile::exists(newpath + QString(".disabled")))
|
2018-11-12 07:09:52 +05:30
|
|
|
{
|
2018-11-21 04:59:41 +05:30
|
|
|
if(!QFile::remove(newpath))
|
2018-11-12 07:09:52 +05:30
|
|
|
{
|
2018-11-21 04:59:41 +05:30
|
|
|
// FIXME: report error in a user-visible way
|
|
|
|
qWarning() << "Copy from" << originalPath << "to" << newpath << "has failed.";
|
2018-11-12 07:09:52 +05:30
|
|
|
return false;
|
|
|
|
}
|
2018-11-21 04:59:41 +05:30
|
|
|
qDebug() << newpath << "has been deleted.";
|
2018-11-12 07:09:52 +05:30
|
|
|
}
|
2018-07-15 18:21:05 +05:30
|
|
|
if (!QFile::copy(fileinfo.filePath(), newpath))
|
2018-11-12 07:09:52 +05:30
|
|
|
{
|
2018-11-21 04:59:41 +05:30
|
|
|
qWarning() << "Copy from" << originalPath << "to" << newpath << "has failed.";
|
|
|
|
// FIXME: report error in a user-visible way
|
2018-07-15 18:21:05 +05:30
|
|
|
return false;
|
2018-11-12 07:09:52 +05:30
|
|
|
}
|
2018-07-15 18:21:05 +05:30
|
|
|
FS::updateTimestamp(newpath);
|
2018-11-21 04:59:41 +05:30
|
|
|
installedMod.repath(newpath);
|
2018-07-15 18:21:05 +05:30
|
|
|
update();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
else if (type == Mod::MOD_FOLDER)
|
|
|
|
{
|
|
|
|
QString from = fileinfo.filePath();
|
2018-11-21 04:59:41 +05:30
|
|
|
if(QFile::exists(newpath))
|
|
|
|
{
|
|
|
|
qDebug() << "Ignoring folder " << from << ", it would merge with " << newpath;
|
2018-07-15 18:21:05 +05:30
|
|
|
return false;
|
2018-11-21 04:59:41 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
if (!FS::copy(from, newpath)())
|
|
|
|
{
|
|
|
|
qWarning() << "Copy of folder from" << originalPath << "to" << newpath << "has (potentially partially) failed.";
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
installedMod.repath(newpath);
|
2018-07-15 18:21:05 +05:30
|
|
|
update();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
2013-08-14 11:43:41 +05:30
|
|
|
}
|
|
|
|
|
2019-08-05 04:14:56 +05:30
|
|
|
bool ModFolderModel::setModStatus(const QModelIndexList& indexes, ModStatusAction enable)
|
2016-08-05 02:46:03 +05:30
|
|
|
{
|
2019-07-15 04:37:21 +05:30
|
|
|
if(interaction_disabled) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2018-07-15 18:21:05 +05:30
|
|
|
if(indexes.isEmpty())
|
|
|
|
return true;
|
|
|
|
|
2019-08-05 00:43:50 +05:30
|
|
|
for (auto index: indexes)
|
2018-07-15 18:21:05 +05:30
|
|
|
{
|
2019-08-05 04:14:56 +05:30
|
|
|
if(index.column() != 0) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
setModStatus(index.row(), enable);
|
2018-07-15 18:21:05 +05:30
|
|
|
}
|
|
|
|
return true;
|
2016-08-05 02:46:03 +05:30
|
|
|
}
|
|
|
|
|
2019-08-04 06:57:53 +05:30
|
|
|
bool ModFolderModel::deleteMods(const QModelIndexList& indexes)
|
2013-08-14 11:43:41 +05:30
|
|
|
{
|
2019-07-15 04:37:21 +05:30
|
|
|
if(interaction_disabled) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2018-07-15 18:21:05 +05:30
|
|
|
if(indexes.isEmpty())
|
|
|
|
return true;
|
|
|
|
|
|
|
|
for (auto i: indexes)
|
|
|
|
{
|
2022-04-22 00:17:46 +05:30
|
|
|
if(i.column() != 0) {
|
|
|
|
continue;
|
|
|
|
}
|
2018-07-15 18:21:05 +05:30
|
|
|
Mod &m = mods[i.row()];
|
2022-04-15 08:54:57 +05:30
|
|
|
auto index_dir = indexDir();
|
|
|
|
m.destroy(index_dir);
|
2018-07-15 18:21:05 +05:30
|
|
|
}
|
|
|
|
return true;
|
2016-08-05 01:24:25 +05:30
|
|
|
}
|
|
|
|
|
2019-08-04 06:57:53 +05:30
|
|
|
int ModFolderModel::columnCount(const QModelIndex &parent) const
|
2013-08-17 17:10:51 +05:30
|
|
|
{
|
2018-07-15 18:21:05 +05:30
|
|
|
return NUM_COLUMNS;
|
2013-08-17 17:10:51 +05:30
|
|
|
}
|
|
|
|
|
2019-08-04 06:57:53 +05:30
|
|
|
QVariant ModFolderModel::data(const QModelIndex &index, int role) const
|
2013-08-17 17:10:51 +05:30
|
|
|
{
|
2018-07-15 18:21:05 +05:30
|
|
|
if (!index.isValid())
|
|
|
|
return QVariant();
|
|
|
|
|
|
|
|
int row = index.row();
|
|
|
|
int column = index.column();
|
|
|
|
|
|
|
|
if (row < 0 || row >= mods.size())
|
|
|
|
return QVariant();
|
|
|
|
|
|
|
|
switch (role)
|
|
|
|
{
|
|
|
|
case Qt::DisplayRole:
|
|
|
|
switch (column)
|
|
|
|
{
|
|
|
|
case NameColumn:
|
|
|
|
return mods[row].name();
|
2019-08-03 09:00:46 +05:30
|
|
|
case VersionColumn: {
|
|
|
|
switch(mods[row].type()) {
|
|
|
|
case Mod::MOD_FOLDER:
|
|
|
|
return tr("Folder");
|
|
|
|
case Mod::MOD_SINGLEFILE:
|
|
|
|
return tr("File");
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
2018-07-15 18:21:05 +05:30
|
|
|
return mods[row].version();
|
2019-08-03 09:00:46 +05:30
|
|
|
}
|
2018-07-15 18:21:05 +05:30
|
|
|
case DateColumn:
|
|
|
|
return mods[row].dateTimeChanged();
|
|
|
|
|
|
|
|
default:
|
|
|
|
return QVariant();
|
|
|
|
}
|
|
|
|
|
|
|
|
case Qt::ToolTipRole:
|
2022-04-16 06:37:35 +05:30
|
|
|
return mods[row].internal_id();
|
2018-07-15 18:21:05 +05:30
|
|
|
|
|
|
|
case Qt::CheckStateRole:
|
|
|
|
switch (column)
|
|
|
|
{
|
|
|
|
case ActiveColumn:
|
|
|
|
return mods[row].enabled() ? Qt::Checked : Qt::Unchecked;
|
|
|
|
default:
|
|
|
|
return QVariant();
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
return QVariant();
|
|
|
|
}
|
2013-08-17 17:10:51 +05:30
|
|
|
}
|
|
|
|
|
2019-08-04 06:57:53 +05:30
|
|
|
bool ModFolderModel::setData(const QModelIndex &index, const QVariant &value, int role)
|
2013-12-26 09:44:32 +05:30
|
|
|
{
|
2018-07-15 18:21:05 +05:30
|
|
|
if (index.row() < 0 || index.row() >= rowCount(index) || !index.isValid())
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (role == Qt::CheckStateRole)
|
|
|
|
{
|
2019-08-05 04:14:56 +05:30
|
|
|
return setModStatus(index.row(), Toggle);
|
2018-07-15 18:21:05 +05:30
|
|
|
}
|
|
|
|
return false;
|
2013-12-26 09:44:32 +05:30
|
|
|
}
|
|
|
|
|
2019-08-05 04:14:56 +05:30
|
|
|
bool ModFolderModel::setModStatus(int row, ModFolderModel::ModStatusAction action)
|
|
|
|
{
|
|
|
|
if(row < 0 || row >= mods.size()) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
auto &mod = mods[row];
|
|
|
|
bool desiredStatus;
|
|
|
|
switch(action) {
|
|
|
|
case Enable:
|
|
|
|
desiredStatus = true;
|
|
|
|
break;
|
|
|
|
case Disable:
|
|
|
|
desiredStatus = false;
|
|
|
|
break;
|
|
|
|
case Toggle:
|
|
|
|
default:
|
|
|
|
desiredStatus = !mod.enabled();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(desiredStatus == mod.enabled()) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
// preserve the row, but change its ID
|
2022-04-16 06:37:35 +05:30
|
|
|
auto oldId = mod.internal_id();
|
2019-08-05 04:14:56 +05:30
|
|
|
if(!mod.enable(!mod.enabled())) {
|
|
|
|
return false;
|
|
|
|
}
|
2022-04-16 06:37:35 +05:30
|
|
|
auto newId = mod.internal_id();
|
2019-08-05 04:14:56 +05:30
|
|
|
if(modsIndex.contains(newId)) {
|
|
|
|
// NOTE: this could handle a corner case, where we are overwriting a file, because the same 'mod' exists both enabled and disabled
|
|
|
|
// But is it necessary?
|
|
|
|
}
|
|
|
|
modsIndex.remove(oldId);
|
|
|
|
modsIndex[newId] = row;
|
|
|
|
emit dataChanged(index(row, 0), index(row, columnCount(QModelIndex()) - 1));
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2019-08-04 06:57:53 +05:30
|
|
|
QVariant ModFolderModel::headerData(int section, Qt::Orientation orientation, int role) const
|
2013-08-17 17:10:51 +05:30
|
|
|
{
|
2018-07-15 18:21:05 +05:30
|
|
|
switch (role)
|
|
|
|
{
|
|
|
|
case Qt::DisplayRole:
|
|
|
|
switch (section)
|
|
|
|
{
|
|
|
|
case ActiveColumn:
|
|
|
|
return QString();
|
|
|
|
case NameColumn:
|
|
|
|
return tr("Name");
|
|
|
|
case VersionColumn:
|
|
|
|
return tr("Version");
|
|
|
|
case DateColumn:
|
|
|
|
return tr("Last changed");
|
|
|
|
default:
|
|
|
|
return QVariant();
|
|
|
|
}
|
|
|
|
|
|
|
|
case Qt::ToolTipRole:
|
|
|
|
switch (section)
|
|
|
|
{
|
|
|
|
case ActiveColumn:
|
|
|
|
return tr("Is the mod enabled?");
|
|
|
|
case NameColumn:
|
|
|
|
return tr("The name of the mod.");
|
|
|
|
case VersionColumn:
|
|
|
|
return tr("The version of the mod.");
|
|
|
|
case DateColumn:
|
|
|
|
return tr("The date and time this mod was last changed (or added).");
|
|
|
|
default:
|
|
|
|
return QVariant();
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
return QVariant();
|
|
|
|
}
|
|
|
|
return QVariant();
|
2013-08-17 17:10:51 +05:30
|
|
|
}
|
|
|
|
|
2019-08-04 06:57:53 +05:30
|
|
|
Qt::ItemFlags ModFolderModel::flags(const QModelIndex &index) const
|
2013-08-19 00:22:17 +05:30
|
|
|
{
|
2018-07-15 18:21:05 +05:30
|
|
|
Qt::ItemFlags defaultFlags = QAbstractListModel::flags(index);
|
2019-07-15 04:37:21 +05:30
|
|
|
auto flags = defaultFlags;
|
2019-07-31 04:57:35 +05:30
|
|
|
if(interaction_disabled) {
|
|
|
|
flags &= ~Qt::ItemIsDropEnabled;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
flags |= Qt::ItemIsDropEnabled;
|
|
|
|
if(index.isValid()) {
|
2019-07-15 04:37:21 +05:30
|
|
|
flags |= Qt::ItemIsUserCheckable;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return flags;
|
2016-05-16 02:51:33 +05:30
|
|
|
}
|
|
|
|
|
2019-08-04 06:57:53 +05:30
|
|
|
Qt::DropActions ModFolderModel::supportedDropActions() const
|
2016-05-16 02:51:33 +05:30
|
|
|
{
|
2018-07-15 18:21:05 +05:30
|
|
|
// copy from outside, move from within and other mod lists
|
|
|
|
return Qt::CopyAction | Qt::MoveAction;
|
2016-05-16 02:51:33 +05:30
|
|
|
}
|
|
|
|
|
2019-08-04 06:57:53 +05:30
|
|
|
QStringList ModFolderModel::mimeTypes() const
|
2016-05-16 02:51:33 +05:30
|
|
|
{
|
2018-07-15 18:21:05 +05:30
|
|
|
QStringList types;
|
|
|
|
types << "text/uri-list";
|
|
|
|
return types;
|
2016-05-16 02:51:33 +05:30
|
|
|
}
|
|
|
|
|
2019-08-04 06:57:53 +05:30
|
|
|
bool ModFolderModel::dropMimeData(const QMimeData* data, Qt::DropAction action, int, int, const QModelIndex&)
|
2016-05-16 02:51:33 +05:30
|
|
|
{
|
2018-07-15 18:21:05 +05:30
|
|
|
if (action == Qt::IgnoreAction)
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
// check if the action is supported
|
|
|
|
if (!data || !(action & supportedDropActions()))
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// files dropped from outside?
|
|
|
|
if (data->hasUrls())
|
|
|
|
{
|
|
|
|
auto urls = data->urls();
|
|
|
|
for (auto url : urls)
|
|
|
|
{
|
|
|
|
// only local files may be dropped...
|
|
|
|
if (!url.isLocalFile())
|
|
|
|
{
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
// TODO: implement not only copy, but also move
|
|
|
|
// FIXME: handle errors here
|
|
|
|
installMod(url.toLocalFile());
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
2013-08-19 00:22:17 +05:30
|
|
|
}
|