2014-11-03 00:38:26 +05:30
|
|
|
/* Copyright 2013-2014 MultiMC Contributors
|
2013-11-04 07:23:05 +05:30
|
|
|
*
|
|
|
|
* 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
|
|
|
|
|
|
|
#include "ModList.h"
|
|
|
|
#include "LegacyInstance.h"
|
|
|
|
#include <pathutils.h>
|
2013-08-19 00:22:17 +05:30
|
|
|
#include <QMimeData>
|
|
|
|
#include <QUrl>
|
|
|
|
#include <QUuid>
|
2013-12-26 09:44:32 +05:30
|
|
|
#include <QString>
|
2013-08-25 05:02:42 +05:30
|
|
|
#include <QFileSystemWatcher>
|
2013-11-04 07:23:05 +05:30
|
|
|
#include "logger/QsLog.h"
|
2013-08-14 11:43:41 +05:30
|
|
|
|
2013-10-10 02:46:10 +05:30
|
|
|
ModList::ModList(const QString &dir, const QString &list_file)
|
|
|
|
: QAbstractListModel(), m_dir(dir), m_list_file(list_file)
|
2013-08-14 11:43:41 +05:30
|
|
|
{
|
2014-06-02 04:19:53 +05:30
|
|
|
ensureFolderPathExists(m_dir.absolutePath());
|
2013-10-10 02:46:10 +05:30
|
|
|
m_dir.setFilter(QDir::Readable | QDir::NoDotAndDotDot | QDir::Files | QDir::Dirs |
|
|
|
|
QDir::NoSymLinks);
|
2013-12-26 09:44:32 +05:30
|
|
|
m_dir.setSorting(QDir::Name | QDir::IgnoreCase | QDir::LocaleAware);
|
2013-08-19 00:22:17 +05:30
|
|
|
m_list_id = QUuid::createUuid().toString();
|
2013-08-25 05:02:42 +05:30
|
|
|
m_watcher = new QFileSystemWatcher(this);
|
|
|
|
is_watching = false;
|
2013-10-10 02:46:10 +05:30
|
|
|
connect(m_watcher, SIGNAL(directoryChanged(QString)), this,
|
|
|
|
SLOT(directoryChanged(QString)));
|
2013-08-14 11:43:41 +05:30
|
|
|
}
|
|
|
|
|
2013-08-25 05:02:42 +05:30
|
|
|
void ModList::startWatching()
|
|
|
|
{
|
|
|
|
is_watching = m_watcher->addPath(m_dir.absolutePath());
|
2013-10-10 02:46:10 +05:30
|
|
|
if (is_watching)
|
2013-12-01 21:04:51 +05:30
|
|
|
{
|
2013-10-06 04:43:40 +05:30
|
|
|
QLOG_INFO() << "Started watching " << m_dir.absolutePath();
|
2013-12-01 21:04:51 +05:30
|
|
|
}
|
2013-08-25 05:02:42 +05:30
|
|
|
else
|
2013-12-01 21:04:51 +05:30
|
|
|
{
|
2013-10-06 04:43:40 +05:30
|
|
|
QLOG_INFO() << "Failed to start watching " << m_dir.absolutePath();
|
2013-12-01 21:04:51 +05:30
|
|
|
}
|
2013-08-25 05:02:42 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
void ModList::stopWatching()
|
|
|
|
{
|
|
|
|
is_watching = !m_watcher->removePath(m_dir.absolutePath());
|
2013-10-10 02:46:10 +05:30
|
|
|
if (!is_watching)
|
2013-12-01 21:04:51 +05:30
|
|
|
{
|
2013-10-06 04:43:40 +05:30
|
|
|
QLOG_INFO() << "Stopped watching " << m_dir.absolutePath();
|
2013-12-01 21:04:51 +05:30
|
|
|
}
|
2013-08-25 05:02:42 +05:30
|
|
|
else
|
2013-12-01 21:04:51 +05:30
|
|
|
{
|
2013-10-06 04:43:40 +05:30
|
|
|
QLOG_INFO() << "Failed to stop watching " << m_dir.absolutePath();
|
2013-12-01 21:04:51 +05:30
|
|
|
}
|
2013-08-25 05:02:42 +05:30
|
|
|
}
|
|
|
|
|
2014-02-06 14:02:44 +05:30
|
|
|
void ModList::internalSort(QList<Mod> &what)
|
|
|
|
{
|
|
|
|
auto predicate = [](const Mod & left, const Mod & right)
|
|
|
|
{
|
|
|
|
if (left.name() == right.name())
|
|
|
|
{
|
2014-07-09 02:35:33 +05:30
|
|
|
return left.mmc_id().localeAwareCompare(right.mmc_id()) < 0;
|
2014-02-06 14:02:44 +05:30
|
|
|
}
|
2014-07-09 02:35:33 +05:30
|
|
|
return left.name().localeAwareCompare(right.name()) < 0;
|
2014-02-06 14:02:44 +05:30
|
|
|
};
|
|
|
|
std::sort(what.begin(), what.end(), predicate);
|
|
|
|
}
|
|
|
|
|
2013-08-14 11:43:41 +05:30
|
|
|
bool ModList::update()
|
|
|
|
{
|
|
|
|
if (!isValid())
|
|
|
|
return false;
|
2013-10-10 02:46:10 +05:30
|
|
|
|
2013-12-26 09:44:32 +05:30
|
|
|
QList<Mod> orderedMods;
|
2013-08-19 00:22:17 +05:30
|
|
|
QList<Mod> newMods;
|
2013-08-20 05:59:36 +05:30
|
|
|
m_dir.refresh();
|
2013-08-19 00:22:17 +05:30
|
|
|
auto folderContents = m_dir.entryInfoList();
|
2013-12-26 09:44:32 +05:30
|
|
|
bool orderOrStateChanged = false;
|
2013-10-10 02:46:10 +05:30
|
|
|
|
2013-08-19 00:22:17 +05:30
|
|
|
// first, process the ordered items (if any)
|
2013-12-26 09:44:32 +05:30
|
|
|
OrderList listOrder = readListFile();
|
2013-10-10 02:46:10 +05:30
|
|
|
for (auto item : listOrder)
|
2013-08-19 00:22:17 +05:30
|
|
|
{
|
2013-12-26 09:44:32 +05:30
|
|
|
QFileInfo infoEnabled(m_dir.filePath(item.id));
|
|
|
|
QFileInfo infoDisabled(m_dir.filePath(item.id + ".disabled"));
|
|
|
|
int idxEnabled = folderContents.indexOf(infoEnabled);
|
|
|
|
int idxDisabled = folderContents.indexOf(infoDisabled);
|
2013-12-27 06:48:40 +05:30
|
|
|
bool isEnabled;
|
|
|
|
// if both enabled and disabled versions are present, it's a special case...
|
2013-12-26 09:44:32 +05:30
|
|
|
if (idxEnabled >= 0 && idxDisabled >= 0)
|
|
|
|
{
|
2013-12-27 06:48:40 +05:30
|
|
|
// we only process the one we actually have in the order file.
|
|
|
|
// and exactly as we have it.
|
|
|
|
// THIS IS A CORNER CASE
|
|
|
|
isEnabled = item.enabled;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// only one is present.
|
|
|
|
// we pick the one that we found.
|
|
|
|
// we assume the mod was enabled/disabled by external means
|
|
|
|
isEnabled = idxEnabled >= 0;
|
2013-12-26 09:44:32 +05:30
|
|
|
}
|
|
|
|
int idx = isEnabled ? idxEnabled : idxDisabled;
|
2014-02-06 14:02:44 +05:30
|
|
|
QFileInfo &info = isEnabled ? infoEnabled : infoDisabled;
|
2013-08-19 00:22:17 +05:30
|
|
|
// if the file from the index file exists
|
2013-10-10 02:46:10 +05:30
|
|
|
if (idx != -1)
|
2013-08-19 00:22:17 +05:30
|
|
|
{
|
|
|
|
// remove from the actual folder contents list
|
|
|
|
folderContents.takeAt(idx);
|
|
|
|
// append the new mod
|
2013-12-26 09:44:32 +05:30
|
|
|
orderedMods.append(Mod(info));
|
|
|
|
if (isEnabled != item.enabled)
|
|
|
|
orderOrStateChanged = true;
|
2013-08-19 00:22:17 +05:30
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2013-12-26 09:44:32 +05:30
|
|
|
orderOrStateChanged = true;
|
2013-08-19 00:22:17 +05:30
|
|
|
}
|
|
|
|
}
|
2013-12-26 09:44:32 +05:30
|
|
|
// if there are any untracked files...
|
|
|
|
if (folderContents.size())
|
2013-08-19 00:22:17 +05:30
|
|
|
{
|
2013-12-26 09:44:32 +05:30
|
|
|
// the order surely changed!
|
|
|
|
for (auto entry : folderContents)
|
|
|
|
{
|
|
|
|
newMods.append(Mod(entry));
|
|
|
|
}
|
2014-02-06 14:02:44 +05:30
|
|
|
internalSort(newMods);
|
2013-12-26 09:44:32 +05:30
|
|
|
orderedMods.append(newMods);
|
|
|
|
orderOrStateChanged = true;
|
2013-08-19 00:22:17 +05:30
|
|
|
}
|
2013-12-26 09:44:32 +05:30
|
|
|
// otherwise, if we were already tracking some mods
|
|
|
|
else if (mods.size())
|
2013-08-19 00:22:17 +05:30
|
|
|
{
|
2013-12-26 09:44:32 +05:30
|
|
|
// if the number doesn't match, order changed.
|
|
|
|
if (mods.size() != orderedMods.size())
|
|
|
|
orderOrStateChanged = true;
|
|
|
|
// if it does match, compare the mods themselves
|
|
|
|
else
|
|
|
|
for (int i = 0; i < mods.size(); i++)
|
2013-10-10 02:46:10 +05:30
|
|
|
{
|
2013-12-26 09:44:32 +05:30
|
|
|
if (!mods[i].strongCompare(orderedMods[i]))
|
|
|
|
{
|
|
|
|
orderOrStateChanged = true;
|
|
|
|
break;
|
|
|
|
}
|
2013-10-10 02:46:10 +05:30
|
|
|
}
|
2013-12-26 09:44:32 +05:30
|
|
|
}
|
2013-08-19 00:22:17 +05:30
|
|
|
beginResetModel();
|
2013-12-26 09:44:32 +05:30
|
|
|
mods.swap(orderedMods);
|
2013-08-19 00:22:17 +05:30
|
|
|
endResetModel();
|
2013-12-26 09:44:32 +05:30
|
|
|
if (orderOrStateChanged && !m_list_file.isEmpty())
|
2013-08-19 00:22:17 +05:30
|
|
|
{
|
2013-12-26 09:44:32 +05:30
|
|
|
QLOG_INFO() << "Mod list " << m_list_file << " changed!";
|
2013-08-19 00:22:17 +05:30
|
|
|
saveListFile();
|
|
|
|
emit changed();
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
2013-08-14 11:43:41 +05:30
|
|
|
|
2013-10-10 02:46:10 +05:30
|
|
|
void ModList::directoryChanged(QString path)
|
2013-08-25 05:02:42 +05:30
|
|
|
{
|
|
|
|
update();
|
|
|
|
}
|
|
|
|
|
2013-12-26 09:44:32 +05:30
|
|
|
ModList::OrderList ModList::readListFile()
|
2013-08-19 00:22:17 +05:30
|
|
|
{
|
2013-12-26 09:44:32 +05:30
|
|
|
OrderList itemList;
|
2013-10-10 02:46:10 +05:30
|
|
|
if (m_list_file.isNull() || m_list_file.isEmpty())
|
2013-12-26 09:44:32 +05:30
|
|
|
return itemList;
|
2013-10-10 02:46:10 +05:30
|
|
|
|
2013-08-19 00:22:17 +05:30
|
|
|
QFile textFile(m_list_file);
|
2013-10-10 02:46:10 +05:30
|
|
|
if (!textFile.open(QIODevice::ReadOnly | QIODevice::Text))
|
2013-12-26 09:44:32 +05:30
|
|
|
return OrderList();
|
2013-10-10 02:46:10 +05:30
|
|
|
|
2013-12-26 09:44:32 +05:30
|
|
|
QTextStream textStream;
|
|
|
|
textStream.setAutoDetectUnicode(true);
|
|
|
|
textStream.setDevice(&textFile);
|
2013-08-19 00:22:17 +05:30
|
|
|
while (true)
|
2013-08-14 11:43:41 +05:30
|
|
|
{
|
2013-08-19 00:22:17 +05:30
|
|
|
QString line = textStream.readLine();
|
|
|
|
if (line.isNull() || line.isEmpty())
|
|
|
|
break;
|
|
|
|
else
|
2013-08-14 11:43:41 +05:30
|
|
|
{
|
2013-12-26 09:44:32 +05:30
|
|
|
OrderItem it;
|
|
|
|
it.enabled = !line.endsWith(".disabled");
|
|
|
|
if (!it.enabled)
|
|
|
|
{
|
|
|
|
line.chop(9);
|
|
|
|
}
|
|
|
|
it.id = line;
|
|
|
|
itemList.append(it);
|
2013-08-14 11:43:41 +05:30
|
|
|
}
|
|
|
|
}
|
2013-08-19 00:22:17 +05:30
|
|
|
textFile.close();
|
2013-12-26 09:44:32 +05:30
|
|
|
return itemList;
|
2013-08-19 00:22:17 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
bool ModList::saveListFile()
|
|
|
|
{
|
2013-10-10 02:46:10 +05:30
|
|
|
if (m_list_file.isNull() || m_list_file.isEmpty())
|
2013-08-19 00:22:17 +05:30
|
|
|
return false;
|
|
|
|
QFile textFile(m_list_file);
|
2013-10-10 02:46:10 +05:30
|
|
|
if (!textFile.open(QIODevice::WriteOnly | QIODevice::Text | QIODevice::Truncate))
|
2013-08-19 00:22:17 +05:30
|
|
|
return false;
|
2013-12-26 09:44:32 +05:30
|
|
|
QTextStream textStream;
|
|
|
|
textStream.setGenerateByteOrderMark(true);
|
|
|
|
textStream.setCodec("UTF-8");
|
|
|
|
textStream.setDevice(&textFile);
|
2013-10-10 02:46:10 +05:30
|
|
|
for (auto mod : mods)
|
2013-08-19 00:22:17 +05:30
|
|
|
{
|
2013-12-26 09:44:32 +05:30
|
|
|
textStream << mod.mmc_id();
|
|
|
|
if (!mod.enabled())
|
|
|
|
textStream << ".disabled";
|
|
|
|
textStream << endl;
|
2013-08-19 00:22:17 +05:30
|
|
|
}
|
|
|
|
textFile.close();
|
|
|
|
return false;
|
2013-08-14 11:43:41 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
bool ModList::isValid()
|
|
|
|
{
|
|
|
|
return m_dir.exists() && m_dir.isReadable();
|
|
|
|
}
|
|
|
|
|
2013-10-10 02:46:10 +05:30
|
|
|
bool ModList::installMod(const QFileInfo &filename, int index)
|
2013-08-14 11:43:41 +05:30
|
|
|
{
|
2013-10-10 02:46:10 +05:30
|
|
|
if (!filename.exists() || !filename.isReadable() || index < 0)
|
2013-08-14 11:43:41 +05:30
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
Mod m(filename);
|
2013-10-10 02:46:10 +05:30
|
|
|
if (!m.valid())
|
2013-08-14 11:43:41 +05:30
|
|
|
return false;
|
2013-10-10 02:46:10 +05:30
|
|
|
|
2013-08-14 11:43:41 +05:30
|
|
|
// if it's already there, replace the original mod (in place)
|
|
|
|
int idx = mods.indexOf(m);
|
2013-10-10 02:46:10 +05:30
|
|
|
if (idx != -1)
|
2013-08-14 11:43:41 +05:30
|
|
|
{
|
2014-02-06 14:02:44 +05:30
|
|
|
int idx2 = mods.indexOf(m, idx + 1);
|
|
|
|
if (idx2 != -1)
|
2013-12-27 06:48:40 +05:30
|
|
|
return false;
|
2013-10-10 02:46:10 +05:30
|
|
|
if (mods[idx].replace(m))
|
2013-08-14 11:43:41 +05:30
|
|
|
{
|
2013-10-10 02:46:10 +05:30
|
|
|
|
2013-08-19 00:22:17 +05:30
|
|
|
auto left = this->index(index);
|
|
|
|
auto right = this->index(index, columnCount(QModelIndex()) - 1);
|
|
|
|
emit dataChanged(left, right);
|
|
|
|
saveListFile();
|
2013-08-14 11:43:41 +05:30
|
|
|
emit changed();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
2013-10-10 02:46:10 +05:30
|
|
|
|
2013-08-14 11:43:41 +05:30
|
|
|
auto type = m.type();
|
2013-10-10 02:46:10 +05:30
|
|
|
if (type == Mod::MOD_UNKNOWN)
|
2013-08-14 11:43:41 +05:30
|
|
|
return false;
|
2013-12-29 06:58:24 +05:30
|
|
|
if (type == Mod::MOD_SINGLEFILE || type == Mod::MOD_ZIPFILE || type == Mod::MOD_LITEMOD)
|
2013-08-14 11:43:41 +05:30
|
|
|
{
|
|
|
|
QString newpath = PathCombine(m_dir.path(), filename.fileName());
|
2013-10-10 02:46:10 +05:30
|
|
|
if (!QFile::copy(filename.filePath(), newpath))
|
2013-08-14 11:43:41 +05:30
|
|
|
return false;
|
|
|
|
m.repath(newpath);
|
2013-08-19 00:22:17 +05:30
|
|
|
beginInsertRows(QModelIndex(), index, index);
|
2013-10-10 02:46:10 +05:30
|
|
|
mods.insert(index, m);
|
2013-08-19 00:22:17 +05:30
|
|
|
endInsertRows();
|
|
|
|
saveListFile();
|
2013-08-14 11:43:41 +05:30
|
|
|
emit changed();
|
|
|
|
return true;
|
|
|
|
}
|
2013-10-10 02:46:10 +05:30
|
|
|
else if (type == Mod::MOD_FOLDER)
|
2013-08-14 11:43:41 +05:30
|
|
|
{
|
2013-10-10 02:46:10 +05:30
|
|
|
|
2013-08-19 00:22:17 +05:30
|
|
|
QString from = filename.filePath();
|
|
|
|
QString to = PathCombine(m_dir.path(), filename.fileName());
|
2013-10-10 02:46:10 +05:30
|
|
|
if (!copyPath(from, to))
|
2013-08-14 11:43:41 +05:30
|
|
|
return false;
|
2013-08-19 00:22:17 +05:30
|
|
|
m.repath(to);
|
|
|
|
beginInsertRows(QModelIndex(), index, index);
|
2013-10-10 02:46:10 +05:30
|
|
|
mods.insert(index, m);
|
2013-08-19 00:22:17 +05:30
|
|
|
endInsertRows();
|
|
|
|
saveListFile();
|
2013-08-14 11:43:41 +05:30
|
|
|
emit changed();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2013-10-10 02:46:10 +05:30
|
|
|
bool ModList::deleteMod(int index)
|
2013-08-14 11:43:41 +05:30
|
|
|
{
|
2013-10-10 02:46:10 +05:30
|
|
|
if (index >= mods.size() || index < 0)
|
2013-08-14 11:43:41 +05:30
|
|
|
return false;
|
2013-10-10 02:46:10 +05:30
|
|
|
Mod &m = mods[index];
|
|
|
|
if (m.destroy())
|
2013-08-14 11:43:41 +05:30
|
|
|
{
|
2013-08-19 00:22:17 +05:30
|
|
|
beginRemoveRows(QModelIndex(), index, index);
|
2013-08-20 05:59:36 +05:30
|
|
|
mods.removeAt(index);
|
2013-08-19 00:22:17 +05:30
|
|
|
endRemoveRows();
|
|
|
|
saveListFile();
|
2013-08-14 11:43:41 +05:30
|
|
|
emit changed();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2013-10-10 02:46:10 +05:30
|
|
|
bool ModList::deleteMods(int first, int last)
|
2013-08-21 04:37:54 +05:30
|
|
|
{
|
2013-10-10 02:46:10 +05:30
|
|
|
for (int i = first; i <= last; i++)
|
2013-08-21 04:37:54 +05:30
|
|
|
{
|
2013-10-10 02:46:10 +05:30
|
|
|
Mod &m = mods[i];
|
2013-08-21 04:37:54 +05:30
|
|
|
m.destroy();
|
|
|
|
}
|
|
|
|
beginRemoveRows(QModelIndex(), first, last);
|
|
|
|
mods.erase(mods.begin() + first, mods.begin() + last + 1);
|
|
|
|
endRemoveRows();
|
|
|
|
saveListFile();
|
|
|
|
emit changed();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2013-10-10 02:46:10 +05:30
|
|
|
bool ModList::moveModTo(int from, int to)
|
2013-08-17 17:10:51 +05:30
|
|
|
{
|
2013-10-10 02:46:10 +05:30
|
|
|
if (from < 0 || from >= mods.size())
|
2013-08-19 00:22:17 +05:30
|
|
|
return false;
|
|
|
|
if (to >= rowCount())
|
|
|
|
to = rowCount() - 1;
|
|
|
|
if (to == -1)
|
|
|
|
to = rowCount() - 1;
|
2013-10-10 02:46:10 +05:30
|
|
|
if (from == to)
|
2013-08-21 04:37:54 +05:30
|
|
|
return false;
|
2013-10-10 02:46:10 +05:30
|
|
|
int togap = to > from ? to + 1 : to;
|
2013-08-21 04:37:54 +05:30
|
|
|
beginMoveRows(QModelIndex(), from, from, QModelIndex(), togap);
|
2013-08-19 00:22:17 +05:30
|
|
|
mods.move(from, to);
|
2013-08-21 04:37:54 +05:30
|
|
|
endMoveRows();
|
2013-08-19 00:22:17 +05:30
|
|
|
saveListFile();
|
|
|
|
emit changed();
|
|
|
|
return true;
|
2013-08-17 17:10:51 +05:30
|
|
|
}
|
|
|
|
|
2013-10-10 02:46:10 +05:30
|
|
|
bool ModList::moveModUp(int from)
|
2013-08-21 04:37:54 +05:30
|
|
|
{
|
2013-10-10 02:46:10 +05:30
|
|
|
if (from > 0)
|
2013-08-21 04:37:54 +05:30
|
|
|
return moveModTo(from, from - 1);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2013-10-10 02:46:10 +05:30
|
|
|
bool ModList::moveModsUp(int first, int last)
|
2013-08-21 04:37:54 +05:30
|
|
|
{
|
2013-10-10 02:46:10 +05:30
|
|
|
if (first == 0)
|
2013-08-21 04:37:54 +05:30
|
|
|
return false;
|
2013-10-10 02:46:10 +05:30
|
|
|
|
2013-08-21 04:37:54 +05:30
|
|
|
beginMoveRows(QModelIndex(), first, last, QModelIndex(), first - 1);
|
2013-10-10 02:46:10 +05:30
|
|
|
mods.move(first - 1, last);
|
2013-08-21 04:37:54 +05:30
|
|
|
endMoveRows();
|
|
|
|
saveListFile();
|
|
|
|
emit changed();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2013-10-10 02:46:10 +05:30
|
|
|
bool ModList::moveModDown(int from)
|
2013-08-21 04:37:54 +05:30
|
|
|
{
|
2013-10-10 02:46:10 +05:30
|
|
|
if (from < 0)
|
2013-08-21 04:37:54 +05:30
|
|
|
return false;
|
2013-10-10 02:46:10 +05:30
|
|
|
if (from < mods.size() - 1)
|
2013-08-21 04:37:54 +05:30
|
|
|
return moveModTo(from, from + 1);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2013-10-10 02:46:10 +05:30
|
|
|
bool ModList::moveModsDown(int first, int last)
|
2013-08-21 04:37:54 +05:30
|
|
|
{
|
2013-10-10 02:46:10 +05:30
|
|
|
if (last == mods.size() - 1)
|
2013-08-21 04:37:54 +05:30
|
|
|
return false;
|
2013-10-10 02:46:10 +05:30
|
|
|
|
2013-08-21 04:37:54 +05:30
|
|
|
beginMoveRows(QModelIndex(), first, last, QModelIndex(), last + 2);
|
2013-10-10 02:46:10 +05:30
|
|
|
mods.move(last + 1, first);
|
2013-08-21 04:37:54 +05:30
|
|
|
endMoveRows();
|
|
|
|
saveListFile();
|
|
|
|
emit changed();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2013-10-10 02:46:10 +05:30
|
|
|
int ModList::columnCount(const QModelIndex &parent) const
|
2013-08-17 17:10:51 +05:30
|
|
|
{
|
2013-12-26 09:44:32 +05:30
|
|
|
return 3;
|
2013-08-17 17:10:51 +05:30
|
|
|
}
|
|
|
|
|
2013-10-10 02:46:10 +05:30
|
|
|
QVariant ModList::data(const QModelIndex &index, int role) const
|
2013-08-17 17:10:51 +05:30
|
|
|
{
|
2013-10-10 02:46:10 +05:30
|
|
|
if (!index.isValid())
|
2013-08-17 17:10:51 +05:30
|
|
|
return QVariant();
|
2013-10-10 02:46:10 +05:30
|
|
|
|
2013-08-17 17:10:51 +05:30
|
|
|
int row = index.row();
|
|
|
|
int column = index.column();
|
2013-10-10 02:46:10 +05:30
|
|
|
|
|
|
|
if (row < 0 || row >= mods.size())
|
2013-08-17 17:10:51 +05:30
|
|
|
return QVariant();
|
2013-10-10 02:46:10 +05:30
|
|
|
|
2013-12-26 09:44:32 +05:30
|
|
|
switch (role)
|
2013-08-17 17:10:51 +05:30
|
|
|
{
|
2013-12-26 09:44:32 +05:30
|
|
|
case Qt::DisplayRole:
|
2014-04-12 23:44:09 +05:30
|
|
|
switch (column)
|
2013-12-26 09:44:32 +05:30
|
|
|
{
|
|
|
|
case NameColumn:
|
|
|
|
return mods[row].name();
|
|
|
|
case VersionColumn:
|
|
|
|
return mods[row].version();
|
|
|
|
|
|
|
|
default:
|
|
|
|
return QVariant();
|
|
|
|
}
|
|
|
|
|
|
|
|
case Qt::ToolTipRole:
|
|
|
|
return mods[row].mmc_id();
|
|
|
|
|
|
|
|
case Qt::CheckStateRole:
|
2014-04-12 23:44:09 +05:30
|
|
|
switch (column)
|
2013-12-26 09:44:32 +05:30
|
|
|
{
|
|
|
|
case ActiveColumn:
|
2014-02-06 14:02:44 +05:30
|
|
|
return mods[row].enabled() ? Qt::Checked : Qt::Unchecked;
|
2013-12-26 09:44:32 +05:30
|
|
|
default:
|
|
|
|
return QVariant();
|
|
|
|
}
|
2013-10-10 02:46:10 +05:30
|
|
|
default:
|
|
|
|
return QVariant();
|
2013-08-17 17:10:51 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-12-26 09:44:32 +05:30
|
|
|
bool ModList::setData(const QModelIndex &index, const QVariant &value, int role)
|
|
|
|
{
|
|
|
|
if (index.row() < 0 || index.row() >= rowCount(index) || !index.isValid())
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (role == Qt::CheckStateRole)
|
|
|
|
{
|
|
|
|
auto &mod = mods[index.row()];
|
|
|
|
if (mod.enable(!mod.enabled()))
|
|
|
|
{
|
|
|
|
emit dataChanged(index, index);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2013-10-10 02:46:10 +05:30
|
|
|
QVariant ModList::headerData(int section, Qt::Orientation orientation, int role) const
|
2013-08-17 17:10:51 +05:30
|
|
|
{
|
2013-12-26 09:44:32 +05:30
|
|
|
switch (role)
|
2013-08-17 17:10:51 +05:30
|
|
|
{
|
2013-12-26 09:44:32 +05:30
|
|
|
case Qt::DisplayRole:
|
|
|
|
switch (section)
|
|
|
|
{
|
|
|
|
case ActiveColumn:
|
|
|
|
return QString();
|
|
|
|
case NameColumn:
|
2014-11-02 23:54:28 +05:30
|
|
|
return tr("Name");
|
2013-12-26 09:44:32 +05:30
|
|
|
case VersionColumn:
|
2014-11-02 23:54:28 +05:30
|
|
|
return tr("Version");
|
2013-12-26 09:44:32 +05:30
|
|
|
default:
|
|
|
|
return QVariant();
|
|
|
|
}
|
|
|
|
|
|
|
|
case Qt::ToolTipRole:
|
|
|
|
switch (section)
|
|
|
|
{
|
|
|
|
case ActiveColumn:
|
2014-11-02 23:54:28 +05:30
|
|
|
return tr("Is the mod enabled?");
|
2013-12-26 09:44:32 +05:30
|
|
|
case NameColumn:
|
2014-11-02 23:54:28 +05:30
|
|
|
return tr("The name of the mod.");
|
2013-12-26 09:44:32 +05:30
|
|
|
case VersionColumn:
|
2014-11-02 23:54:28 +05:30
|
|
|
return tr("The version of the mod.");
|
2013-12-26 09:44:32 +05:30
|
|
|
default:
|
|
|
|
return QVariant();
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
return QVariant();
|
2013-08-17 17:10:51 +05:30
|
|
|
}
|
2013-12-26 09:44:32 +05:30
|
|
|
return QVariant();
|
2013-08-17 17:10:51 +05:30
|
|
|
}
|
|
|
|
|
2013-10-10 02:46:10 +05:30
|
|
|
Qt::ItemFlags ModList::flags(const QModelIndex &index) const
|
2013-08-19 00:22:17 +05:30
|
|
|
{
|
2013-10-10 02:46:10 +05:30
|
|
|
Qt::ItemFlags defaultFlags = QAbstractListModel::flags(index);
|
2013-08-19 00:22:17 +05:30
|
|
|
if (index.isValid())
|
2013-12-26 09:44:32 +05:30
|
|
|
return Qt::ItemIsUserCheckable | Qt::ItemIsDragEnabled | Qt::ItemIsDropEnabled |
|
|
|
|
defaultFlags;
|
2013-08-19 00:22:17 +05:30
|
|
|
else
|
|
|
|
return Qt::ItemIsDropEnabled | defaultFlags;
|
|
|
|
}
|
|
|
|
|
|
|
|
QStringList ModList::mimeTypes() const
|
|
|
|
{
|
|
|
|
QStringList types;
|
|
|
|
types << "text/uri-list";
|
2013-08-20 05:59:36 +05:30
|
|
|
types << "text/plain";
|
2013-08-19 00:22:17 +05:30
|
|
|
return types;
|
|
|
|
}
|
|
|
|
|
|
|
|
Qt::DropActions ModList::supportedDropActions() const
|
|
|
|
{
|
|
|
|
// copy from outside, move from within and other mod lists
|
|
|
|
return Qt::CopyAction | Qt::MoveAction;
|
|
|
|
}
|
|
|
|
|
|
|
|
Qt::DropActions ModList::supportedDragActions() const
|
|
|
|
{
|
|
|
|
// move to other mod lists or VOID
|
|
|
|
return Qt::MoveAction;
|
|
|
|
}
|
|
|
|
|
2013-10-10 02:46:10 +05:30
|
|
|
QMimeData *ModList::mimeData(const QModelIndexList &indexes) const
|
2013-08-19 00:22:17 +05:30
|
|
|
{
|
2013-10-10 02:46:10 +05:30
|
|
|
QMimeData *data = new QMimeData();
|
|
|
|
|
|
|
|
if (indexes.size() == 0)
|
2013-08-20 05:59:36 +05:30
|
|
|
return data;
|
2013-10-10 02:46:10 +05:30
|
|
|
|
2013-08-19 00:22:17 +05:30
|
|
|
auto idx = indexes[0];
|
|
|
|
int row = idx.row();
|
2013-10-10 02:46:10 +05:30
|
|
|
if (row < 0 || row >= mods.size())
|
2013-08-20 05:59:36 +05:30
|
|
|
return data;
|
2013-10-10 02:46:10 +05:30
|
|
|
|
2013-08-19 00:22:17 +05:30
|
|
|
QStringList params;
|
|
|
|
params << m_list_id << QString::number(row);
|
2013-08-20 05:59:36 +05:30
|
|
|
data->setText(params.join('|'));
|
2013-08-19 00:22:17 +05:30
|
|
|
return data;
|
|
|
|
}
|
2013-10-10 02:46:10 +05:30
|
|
|
bool ModList::dropMimeData(const QMimeData *data, Qt::DropAction action, int row, int column,
|
|
|
|
const QModelIndex &parent)
|
2013-08-19 00:22:17 +05:30
|
|
|
{
|
|
|
|
if (action == Qt::IgnoreAction)
|
2013-10-10 02:46:10 +05:30
|
|
|
return true;
|
2013-08-19 00:22:17 +05:30
|
|
|
// check if the action is supported
|
|
|
|
if (!data || !(action & supportedDropActions()))
|
|
|
|
return false;
|
2013-10-10 02:46:10 +05:30
|
|
|
if (parent.isValid())
|
2013-08-19 00:22:17 +05:30
|
|
|
{
|
|
|
|
row = parent.row();
|
|
|
|
column = parent.column();
|
|
|
|
}
|
2013-10-10 02:46:10 +05:30
|
|
|
|
2013-08-19 00:22:17 +05:30
|
|
|
if (row > rowCount())
|
|
|
|
row = rowCount();
|
|
|
|
if (row == -1)
|
|
|
|
row = rowCount();
|
|
|
|
if (column == -1)
|
|
|
|
column = 0;
|
2013-10-06 04:43:40 +05:30
|
|
|
QLOG_INFO() << "Drop row: " << row << " column: " << column;
|
2013-10-10 02:46:10 +05:30
|
|
|
|
2013-08-19 00:22:17 +05:30
|
|
|
// files dropped from outside?
|
2013-10-10 02:46:10 +05:30
|
|
|
if (data->hasUrls())
|
2013-08-19 00:22:17 +05:30
|
|
|
{
|
2013-08-25 05:02:42 +05:30
|
|
|
bool was_watching = is_watching;
|
2013-10-10 02:46:10 +05:30
|
|
|
if (was_watching)
|
2013-08-25 05:02:42 +05:30
|
|
|
stopWatching();
|
2013-08-19 00:22:17 +05:30
|
|
|
auto urls = data->urls();
|
2013-10-10 02:46:10 +05:30
|
|
|
for (auto url : urls)
|
2013-08-19 00:22:17 +05:30
|
|
|
{
|
|
|
|
// only local files may be dropped...
|
2013-10-10 02:46:10 +05:30
|
|
|
if (!url.isLocalFile())
|
2013-08-19 00:22:17 +05:30
|
|
|
continue;
|
|
|
|
QString filename = url.toLocalFile();
|
|
|
|
installMod(filename, row);
|
2013-10-06 04:43:40 +05:30
|
|
|
QLOG_INFO() << "installing: " << filename;
|
2013-12-26 09:44:32 +05:30
|
|
|
// if there is no ordering, re-sort the list
|
|
|
|
if (m_list_file.isEmpty())
|
|
|
|
{
|
|
|
|
beginResetModel();
|
2014-02-06 14:02:44 +05:30
|
|
|
internalSort(mods);
|
2013-12-26 09:44:32 +05:30
|
|
|
endResetModel();
|
|
|
|
}
|
2013-08-19 00:22:17 +05:30
|
|
|
}
|
2013-10-10 02:46:10 +05:30
|
|
|
if (was_watching)
|
2013-08-25 05:02:42 +05:30
|
|
|
startWatching();
|
2013-08-19 00:22:17 +05:30
|
|
|
return true;
|
|
|
|
}
|
2013-10-10 02:46:10 +05:30
|
|
|
else if (data->hasText())
|
2013-08-19 00:22:17 +05:30
|
|
|
{
|
2013-08-20 05:59:36 +05:30
|
|
|
QString sourcestr = data->text();
|
2013-08-19 00:22:17 +05:30
|
|
|
auto list = sourcestr.split('|');
|
2013-10-10 02:46:10 +05:30
|
|
|
if (list.size() != 2)
|
2013-08-19 00:22:17 +05:30
|
|
|
return false;
|
|
|
|
QString remoteId = list[0];
|
|
|
|
int remoteIndex = list[1].toInt();
|
2013-10-06 04:43:40 +05:30
|
|
|
QLOG_INFO() << "move: " << sourcestr;
|
2013-08-19 00:22:17 +05:30
|
|
|
// no moving of things between two lists
|
2013-10-10 02:46:10 +05:30
|
|
|
if (remoteId != m_list_id)
|
2013-08-19 00:22:17 +05:30
|
|
|
return false;
|
|
|
|
// no point moving to the same place...
|
2013-10-10 02:46:10 +05:30
|
|
|
if (row == remoteIndex)
|
2013-08-19 00:22:17 +05:30
|
|
|
return false;
|
|
|
|
// otherwise, move the mod :D
|
2013-08-21 04:37:54 +05:30
|
|
|
moveModTo(remoteIndex, row);
|
2013-08-19 00:22:17 +05:30
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|