aboutsummaryrefslogtreecommitdiff
path: root/launcher/modplatform
diff options
context:
space:
mode:
authorTrial97 <alexandru.tripon97@gmail.com>2023-04-20 22:35:10 +0300
committerTrial97 <alexandru.tripon97@gmail.com>2023-04-21 18:42:06 +0300
commitffaa47bf54bc5b320049064a897c8ad0737574ee (patch)
tree7736af7337ca51e6ad71d72e4985d660d5c7858a /launcher/modplatform
parent63c4469475da76f1c0ac27b965edbff8a13dbbef (diff)
downloadPrismLauncher-ffaa47bf54bc5b320049064a897c8ad0737574ee.tar.gz
PrismLauncher-ffaa47bf54bc5b320049064a897c8ad0737574ee.tar.bz2
PrismLauncher-ffaa47bf54bc5b320049064a897c8ad0737574ee.zip
Small cleanup
Signed-off-by: Trial97 <alexandru.tripon97@gmail.com>
Diffstat (limited to 'launcher/modplatform')
-rw-r--r--launcher/modplatform/packwiz/Packwiz.cpp11
-rw-r--r--launcher/modplatform/packwiz/Packwiz.h57
2 files changed, 27 insertions, 41 deletions
diff --git a/launcher/modplatform/packwiz/Packwiz.cpp b/launcher/modplatform/packwiz/Packwiz.cpp
index 33b5f364..510c7309 100644
--- a/launcher/modplatform/packwiz/Packwiz.cpp
+++ b/launcher/modplatform/packwiz/Packwiz.cpp
@@ -21,8 +21,6 @@
#include <QDebug>
#include <QDir>
#include <QObject>
-#include <algorithm>
-#include <iterator>
#include "FileSystem.h"
#include "StringUtils.h"
@@ -313,13 +311,4 @@ auto V1::getIndexForMod(QDir& index_dir, QVariant& mod_id) -> Mod
return {};
}
-auto V1::getAllMods(QDir& index_dir) -> QList<Mod>
-{
- auto files = index_dir.entryList(QDir::Filter::Files);
- auto mods = QList<Mod>();
- std::transform(files.begin(), files.end(), std::back_inserter(mods),
- [&index_dir](auto file_name) { return getIndexForMod(index_dir, file_name); });
- return mods;
-}
-
} // namespace Packwiz
diff --git a/launcher/modplatform/packwiz/Packwiz.h b/launcher/modplatform/packwiz/Packwiz.h
index 2801f5d0..4b096eec 100644
--- a/launcher/modplatform/packwiz/Packwiz.h
+++ b/launcher/modplatform/packwiz/Packwiz.h
@@ -1,20 +1,20 @@
// SPDX-License-Identifier: GPL-3.0-only
/*
- * PolyMC - Minecraft Launcher
- * Copyright (c) 2022 flowln <flowlnlnln@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/>.
- */
+* PolyMC - Minecraft Launcher
+* Copyright (c) 2022 flowln <flowlnlnln@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/>.
+*/
#pragma once
@@ -36,22 +36,22 @@ auto getRealIndexName(QDir& index_dir, QString normalized_index_name, bool shoul
class V1 {
public:
struct Mod {
- QString slug{};
- QString name{};
- QString filename{};
+ QString slug {};
+ QString name {};
+ QString filename {};
// FIXME: make side an enum
- QString side{ "both" };
+ QString side {"both"};
// [download]
- QString mode{};
- QUrl url{};
- QString hash_format{};
- QString hash{};
+ QString mode {};
+ QUrl url {};
+ QString hash_format {};
+ QString hash {};
// [update]
- ModPlatform::ResourceProvider provider{};
- QVariant file_id{};
- QVariant project_id{};
+ ModPlatform::ResourceProvider provider {};
+ QVariant file_id {};
+ QVariant project_id {};
public:
// This is a totally heuristic, but should work for now.
@@ -93,9 +93,6 @@ class V1 {
* If the mod doesn't have a metadata, it simply returns an empty Mod object.
* */
static auto getIndexForMod(QDir& index_dir, QVariant& mod_id) -> Mod;
-
- /* Gets the metadata for all the mods */
- static auto getAllMods(QDir& index_dir) -> QList<Mod>;
};
-} // namespace Packwiz
+} // namespace Packwiz