mirror of
https://github.com/PrismLauncher/PrismLauncher.git
synced 2025-04-29 14:14:34 +02:00
476 lines
14 KiB
C++
476 lines
14 KiB
C++
// SPDX-License-Identifier: GPL-3.0-only
|
|
/*
|
|
* Prism Launcher - Minecraft Launcher
|
|
* Copyright (C) 2022 Sefa Eyeoglu <contact@scrumplex.net>
|
|
* Copyright (c) 2023 Trial97 <alexandru.tripon97@gmail.com>
|
|
*
|
|
* 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.
|
|
*/
|
|
|
|
#include "IconList.h"
|
|
#include <FileSystem.h>
|
|
#include <QDebug>
|
|
#include <QFileSystemWatcher>
|
|
#include <QMap>
|
|
#include <QMimeData>
|
|
#include <QSet>
|
|
#include <QUrl>
|
|
#include "icons/IconUtils.h"
|
|
|
|
#define MAX_SIZE 1024
|
|
|
|
IconList::IconList(const QStringList& builtinPaths, const QString& path, QObject* parent) : QAbstractListModel(parent)
|
|
{
|
|
QSet<QString> builtinNames;
|
|
|
|
// add builtin icons
|
|
for (const auto& builtinPath : builtinPaths) {
|
|
QDir instanceIcons(builtinPath);
|
|
auto fileInfoList = instanceIcons.entryInfoList(QDir::Files, QDir::Name);
|
|
for (const auto& fileInfo : fileInfoList) {
|
|
builtinNames.insert(fileInfo.baseName());
|
|
}
|
|
}
|
|
for (const auto& builtinName : builtinNames) {
|
|
addThemeIcon(builtinName);
|
|
}
|
|
|
|
m_watcher.reset(new QFileSystemWatcher());
|
|
m_isWatching = false;
|
|
connect(m_watcher.get(), &QFileSystemWatcher::directoryChanged, this, &IconList::directoryChanged);
|
|
connect(m_watcher.get(), &QFileSystemWatcher::fileChanged, this, &IconList::fileChanged);
|
|
|
|
directoryChanged(path);
|
|
|
|
// Forces the UI to update, so that lengthy icon names are shown properly from the start
|
|
emit iconUpdated({});
|
|
}
|
|
|
|
void IconList::sortIconList()
|
|
{
|
|
qDebug() << "Sorting icon list...";
|
|
std::sort(m_icons.begin(), m_icons.end(), [](const MMCIcon& a, const MMCIcon& b) {
|
|
bool aIsSubdir = a.m_key.contains(QDir::separator());
|
|
bool bIsSubdir = b.m_key.contains(QDir::separator());
|
|
if (aIsSubdir != bIsSubdir) {
|
|
return !aIsSubdir; // root-level icons come first
|
|
}
|
|
return a.m_key.localeAwareCompare(b.m_key) < 0;
|
|
});
|
|
reindex();
|
|
}
|
|
|
|
// Helper function to add directories recursively
|
|
bool IconList::addPathRecursively(const QString& path)
|
|
{
|
|
QDir dir(path);
|
|
if (!dir.exists())
|
|
return false;
|
|
|
|
// Add the directory itself
|
|
bool watching = m_watcher->addPath(path);
|
|
|
|
// Add all subdirectories
|
|
QFileInfoList entries = dir.entryInfoList(QDir::Dirs | QDir::NoDotAndDotDot);
|
|
for (const QFileInfo& entry : entries) {
|
|
if (addPathRecursively(entry.absoluteFilePath())) {
|
|
watching = true;
|
|
}
|
|
}
|
|
return watching;
|
|
}
|
|
|
|
QStringList IconList::getIconFilePaths() const
|
|
{
|
|
QStringList iconFiles{};
|
|
QStringList directories{ m_dir.absolutePath() };
|
|
while (!directories.isEmpty()) {
|
|
QString first = directories.takeFirst();
|
|
QDir dir(first);
|
|
for (QFileInfo& fileInfo : dir.entryInfoList(QDir::AllDirs | QDir::Files | QDir::NoDotAndDotDot, QDir::Name)) {
|
|
if (fileInfo.isDir())
|
|
directories.push_back(fileInfo.absoluteFilePath());
|
|
else
|
|
iconFiles.push_back(fileInfo.absoluteFilePath());
|
|
}
|
|
}
|
|
return iconFiles;
|
|
}
|
|
|
|
QString formatName(const QDir& iconsDir, const QFileInfo& iconFile)
|
|
{
|
|
if (iconFile.dir() == iconsDir)
|
|
return iconFile.baseName();
|
|
|
|
constexpr auto delimiter = " » ";
|
|
QString relativePathWithoutExtension = iconsDir.relativeFilePath(iconFile.dir().path()) + QDir::separator() + iconFile.baseName();
|
|
return relativePathWithoutExtension.replace(QDir::separator(), delimiter);
|
|
}
|
|
|
|
/// Split into a separate function because the preprocessing impedes readability
|
|
QSet<QString> toStringSet(const QList<QString>& list)
|
|
{
|
|
QSet<QString> set(list.begin(), list.end());
|
|
return set;
|
|
}
|
|
|
|
void IconList::directoryChanged(const QString& path)
|
|
{
|
|
QDir newDir(path);
|
|
if (m_dir.absolutePath() != newDir.absolutePath()) {
|
|
if (!path.startsWith(m_dir.absolutePath()))
|
|
m_dir.setPath(path);
|
|
m_dir.refresh();
|
|
if (m_isWatching)
|
|
stopWatching();
|
|
startWatching();
|
|
}
|
|
if (!m_dir.exists() && !FS::ensureFolderPathExists(m_dir.absolutePath()))
|
|
return;
|
|
m_dir.refresh();
|
|
const QStringList newFileNamesList = getIconFilePaths();
|
|
const QSet<QString> newSet = toStringSet(newFileNamesList);
|
|
QSet<QString> currentSet;
|
|
for (const MMCIcon& it : m_icons) {
|
|
if (!it.has(IconType::FileBased))
|
|
continue;
|
|
QFileInfo icon(it.getFilePath());
|
|
currentSet.insert(icon.absoluteFilePath());
|
|
}
|
|
QSet<QString> toRemove = currentSet - newSet;
|
|
QSet<QString> toAdd = newSet - currentSet;
|
|
|
|
for (const QString& removedPath : toRemove) {
|
|
qDebug() << "Removing icon " << removedPath;
|
|
QFileInfo removedFile(removedPath);
|
|
QString relativePath = m_dir.relativeFilePath(removedFile.absoluteFilePath());
|
|
QString key = QFileInfo(relativePath).completeBaseName();
|
|
|
|
int idx = getIconIndex(key);
|
|
if (idx == -1)
|
|
continue;
|
|
m_icons[idx].remove(FileBased);
|
|
if (m_icons[idx].type() == ToBeDeleted) {
|
|
beginRemoveRows(QModelIndex(), idx, idx);
|
|
m_icons.remove(idx);
|
|
reindex();
|
|
endRemoveRows();
|
|
} else {
|
|
dataChanged(index(idx), index(idx));
|
|
}
|
|
m_watcher->removePath(removedPath);
|
|
emit iconUpdated(key);
|
|
}
|
|
|
|
for (const QString& addedPath : toAdd) {
|
|
qDebug() << "Adding icon " << addedPath;
|
|
|
|
QFileInfo addfile(addedPath);
|
|
QString relativePath = m_dir.relativeFilePath(addfile.absoluteFilePath());
|
|
QString key = QFileInfo(relativePath).completeBaseName();
|
|
QString name = formatName(m_dir, addfile);
|
|
|
|
if (addIcon(key, name, addfile.filePath(), IconType::FileBased)) {
|
|
m_watcher->addPath(addedPath);
|
|
emit iconUpdated(key);
|
|
}
|
|
}
|
|
|
|
sortIconList();
|
|
}
|
|
|
|
void IconList::fileChanged(const QString& path)
|
|
{
|
|
qDebug() << "Checking icon " << path;
|
|
QFileInfo checkfile(path);
|
|
if (!checkfile.exists())
|
|
return;
|
|
QString key = m_dir.relativeFilePath(checkfile.absoluteFilePath());
|
|
int idx = getIconIndex(key);
|
|
if (idx == -1)
|
|
return;
|
|
QIcon icon(path);
|
|
if (icon.availableSizes().empty())
|
|
return;
|
|
|
|
m_icons[idx].m_images[IconType::FileBased].icon = icon;
|
|
dataChanged(index(idx), index(idx));
|
|
emit iconUpdated(key);
|
|
}
|
|
|
|
void IconList::SettingChanged(const Setting& setting, const QVariant& value)
|
|
{
|
|
if (setting.id() != "IconsDir")
|
|
return;
|
|
|
|
directoryChanged(value.toString());
|
|
}
|
|
|
|
void IconList::startWatching()
|
|
{
|
|
auto abs_path = m_dir.absolutePath();
|
|
FS::ensureFolderPathExists(abs_path);
|
|
m_isWatching = addPathRecursively(abs_path);
|
|
if (m_isWatching) {
|
|
qDebug() << "Started watching " << abs_path;
|
|
} else {
|
|
qDebug() << "Failed to start watching " << abs_path;
|
|
}
|
|
}
|
|
|
|
void IconList::stopWatching()
|
|
{
|
|
m_watcher->removePaths(m_watcher->files());
|
|
m_watcher->removePaths(m_watcher->directories());
|
|
m_isWatching = false;
|
|
}
|
|
|
|
QStringList IconList::mimeTypes() const
|
|
{
|
|
QStringList types;
|
|
types << "text/uri-list";
|
|
return types;
|
|
}
|
|
Qt::DropActions IconList::supportedDropActions() const
|
|
{
|
|
return Qt::CopyAction;
|
|
}
|
|
|
|
bool IconList::dropMimeData(const QMimeData* data,
|
|
Qt::DropAction action,
|
|
[[maybe_unused]] int row,
|
|
[[maybe_unused]] int column,
|
|
[[maybe_unused]] const QModelIndex& parent)
|
|
{
|
|
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();
|
|
QStringList iconFiles;
|
|
for (const auto& url : urls) {
|
|
// only local files may be dropped...
|
|
if (!url.isLocalFile())
|
|
continue;
|
|
iconFiles += url.toLocalFile();
|
|
}
|
|
installIcons(iconFiles);
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
Qt::ItemFlags IconList::flags(const QModelIndex& index) const
|
|
{
|
|
Qt::ItemFlags defaultFlags = QAbstractListModel::flags(index);
|
|
return Qt::ItemIsDropEnabled | defaultFlags;
|
|
}
|
|
|
|
QVariant IconList::data(const QModelIndex& index, int role) const
|
|
{
|
|
if (!index.isValid())
|
|
return {};
|
|
|
|
int row = index.row();
|
|
|
|
if (row < 0 || row >= m_icons.size())
|
|
return {};
|
|
|
|
switch (role) {
|
|
case Qt::DecorationRole:
|
|
return m_icons[row].icon();
|
|
case Qt::DisplayRole:
|
|
return m_icons[row].name();
|
|
case Qt::UserRole:
|
|
return m_icons[row].m_key;
|
|
default:
|
|
return {};
|
|
}
|
|
}
|
|
|
|
int IconList::rowCount(const QModelIndex& parent) const
|
|
{
|
|
return parent.isValid() ? 0 : m_icons.size();
|
|
}
|
|
|
|
void IconList::installIcons(const QStringList& iconFiles)
|
|
{
|
|
for (const QString& file : iconFiles)
|
|
installIcon(file, {});
|
|
}
|
|
|
|
void IconList::installIcon(const QString& file, const QString& name)
|
|
{
|
|
QFileInfo fileinfo(file);
|
|
if (!fileinfo.isReadable() || !fileinfo.isFile())
|
|
return;
|
|
|
|
if (!IconUtils::isIconSuffix(fileinfo.suffix()))
|
|
return;
|
|
|
|
QString target = FS::PathCombine(getDirectory(), name.isEmpty() ? fileinfo.fileName() : name);
|
|
QFile::copy(file, target);
|
|
}
|
|
|
|
bool IconList::iconFileExists(const QString& key) const
|
|
{
|
|
auto iconEntry = icon(key);
|
|
return iconEntry && iconEntry->has(IconType::FileBased);
|
|
}
|
|
|
|
/// Returns the icon with the given key or nullptr if it doesn't exist.
|
|
const MMCIcon* IconList::icon(const QString& key) const
|
|
{
|
|
int iconIdx = getIconIndex(key);
|
|
if (iconIdx == -1)
|
|
return nullptr;
|
|
return &m_icons[iconIdx];
|
|
}
|
|
|
|
bool IconList::deleteIcon(const QString& key)
|
|
{
|
|
return iconFileExists(key) && FS::deletePath(icon(key)->getFilePath());
|
|
}
|
|
|
|
bool IconList::trashIcon(const QString& key)
|
|
{
|
|
return iconFileExists(key) && FS::trash(icon(key)->getFilePath(), nullptr);
|
|
}
|
|
|
|
bool IconList::addThemeIcon(const QString& key)
|
|
{
|
|
auto iter = m_nameIndex.find(key);
|
|
if (iter != m_nameIndex.end()) {
|
|
auto& oldOne = m_icons[*iter];
|
|
oldOne.replace(Builtin, key);
|
|
dataChanged(index(*iter), index(*iter));
|
|
return true;
|
|
}
|
|
// add a new icon
|
|
beginInsertRows(QModelIndex(), m_icons.size(), m_icons.size());
|
|
{
|
|
MMCIcon mmc_icon;
|
|
mmc_icon.m_name = key;
|
|
mmc_icon.m_key = key;
|
|
mmc_icon.replace(Builtin, key);
|
|
m_icons.push_back(mmc_icon);
|
|
m_nameIndex[key] = m_icons.size() - 1;
|
|
}
|
|
endInsertRows();
|
|
return true;
|
|
}
|
|
|
|
bool IconList::addIcon(const QString& key, const QString& name, const QString& path, const IconType type)
|
|
{
|
|
// replace the icon even? is the input valid?
|
|
QIcon icon(path);
|
|
if (icon.isNull())
|
|
return false;
|
|
auto iter = m_nameIndex.find(key);
|
|
if (iter != m_nameIndex.end()) {
|
|
auto& oldOne = m_icons[*iter];
|
|
oldOne.replace(type, icon, path);
|
|
dataChanged(index(*iter), index(*iter));
|
|
return true;
|
|
}
|
|
// add a new icon
|
|
beginInsertRows(QModelIndex(), m_icons.size(), m_icons.size());
|
|
{
|
|
MMCIcon mmc_icon;
|
|
mmc_icon.m_name = name;
|
|
mmc_icon.m_key = key;
|
|
mmc_icon.replace(type, icon, path);
|
|
m_icons.push_back(mmc_icon);
|
|
m_nameIndex[key] = m_icons.size() - 1;
|
|
}
|
|
endInsertRows();
|
|
return true;
|
|
}
|
|
|
|
void IconList::saveIcon(const QString& key, const QString& path, const char* format) const
|
|
{
|
|
auto icon = getIcon(key);
|
|
auto pixmap = icon.pixmap(128, 128);
|
|
pixmap.save(path, format);
|
|
}
|
|
|
|
void IconList::reindex()
|
|
{
|
|
m_nameIndex.clear();
|
|
for (int i = 0; i < m_icons.size(); i++) {
|
|
m_nameIndex[m_icons[i].m_key] = i;
|
|
emit iconUpdated(m_icons[i].m_key); // prevents incorrect indices with proxy model
|
|
}
|
|
}
|
|
|
|
QIcon IconList::getIcon(const QString& key) const
|
|
{
|
|
int iconIndex = getIconIndex(key);
|
|
|
|
if (iconIndex != -1)
|
|
return m_icons[iconIndex].icon();
|
|
|
|
// Fallback for icons that don't exist.b
|
|
iconIndex = getIconIndex("grass");
|
|
|
|
if (iconIndex != -1)
|
|
return m_icons[iconIndex].icon();
|
|
return {};
|
|
}
|
|
|
|
int IconList::getIconIndex(const QString& key) const
|
|
{
|
|
auto iter = m_nameIndex.find(key == "default" ? "grass" : key);
|
|
if (iter != m_nameIndex.end())
|
|
return *iter;
|
|
|
|
return -1;
|
|
}
|
|
|
|
QString IconList::getDirectory() const
|
|
{
|
|
return m_dir.absolutePath();
|
|
}
|
|
|
|
/// Returns the directory of the icon with the given key or the default directory if it's a builtin icon.
|
|
QString IconList::iconDirectory(const QString& key) const
|
|
{
|
|
for (const auto& mmcIcon : m_icons) {
|
|
if (mmcIcon.m_key == key && mmcIcon.has(IconType::FileBased)) {
|
|
QFileInfo iconFile(mmcIcon.getFilePath());
|
|
return iconFile.dir().path();
|
|
}
|
|
}
|
|
return getDirectory();
|
|
} |