aboutsummaryrefslogtreecommitdiff
path: root/libs/game_gamebryo/src/gamebryo/gamebryounmanagedmods.cpp
diff options
context:
space:
mode:
authorSulfurNitride <SulfurNitride@users.noreply.github.com>2026-02-11 02:37:39 -0600
committerSulfurNitride <SulfurNitride@users.noreply.github.com>2026-02-11 02:37:39 -0600
commit7ee008e150bc5bcf76082d726f719ee0fdfda982 (patch)
tree27fb39be241fdb5ac2734c574de678977d1856d0 /libs/game_gamebryo/src/gamebryo/gamebryounmanagedmods.cpp
Fluorine Manager: full Linux port of Mod Organizer 2
Complete native Linux port with FUSE-based virtual filesystem, Proton/umu-run integration, and Flatpak packaging. Key features: - FUSE VFS replacing Windows USVFS (in-process + standalone helper for Flatpak) - Proton/GE-Proton/umu-run launcher with env var forwarding - Flatpak support (sandbox-aware VFS, NXM handler, umu-run) - Wine prefix management UI - Case-insensitive path resolution for Linux filesystems - QSettings-safe INI handling (avoids Bethesda INI corruption) - Portable instance support with auto-generated launcher scripts Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Diffstat (limited to 'libs/game_gamebryo/src/gamebryo/gamebryounmanagedmods.cpp')
-rw-r--r--libs/game_gamebryo/src/gamebryo/gamebryounmanagedmods.cpp51
1 files changed, 51 insertions, 0 deletions
diff --git a/libs/game_gamebryo/src/gamebryo/gamebryounmanagedmods.cpp b/libs/game_gamebryo/src/gamebryo/gamebryounmanagedmods.cpp
new file mode 100644
index 0000000..e5c7608
--- /dev/null
+++ b/libs/game_gamebryo/src/gamebryo/gamebryounmanagedmods.cpp
@@ -0,0 +1,51 @@
+#include "gamebryounmanagedmods.h"
+#include "gamegamebryo.h"
+#include <pluginsetting.h>
+
+GamebryoUnmangedMods::GamebryoUnmangedMods(const GameGamebryo* game) : m_Game(game) {}
+
+GamebryoUnmangedMods::~GamebryoUnmangedMods() {}
+
+QStringList GamebryoUnmangedMods::mods(bool onlyOfficial) const
+{
+ QStringList result;
+
+ QStringList dlcPlugins = m_Game->DLCPlugins();
+ QStringList mainPlugins = m_Game->primaryPlugins();
+
+ QDir dataDir(m_Game->dataDirectory());
+ for (const QString& fileName : dataDir.entryList({"*.esp", "*.esl", "*.esm"})) {
+ if (!mainPlugins.contains(fileName, Qt::CaseInsensitive) &&
+ (!onlyOfficial || dlcPlugins.contains(fileName, Qt::CaseInsensitive))) {
+ result.append(fileName.chopped(4)); // trims the extension off
+ }
+ }
+
+ return result;
+}
+
+QString GamebryoUnmangedMods::displayName(const QString& modName) const
+{
+ return modName;
+}
+
+QFileInfo GamebryoUnmangedMods::referenceFile(const QString& modName) const
+{
+ QFileInfoList files =
+ m_Game->dataDirectory().entryInfoList(QStringList() << modName + ".es*");
+ if (files.size() > 0) {
+ return files.at(0);
+ } else {
+ return QFileInfo();
+ }
+}
+
+QStringList GamebryoUnmangedMods::secondaryFiles(const QString& modName) const
+{
+ QStringList archives;
+ QDir dataDir = m_Game->dataDirectory();
+ for (const QString& archiveName : dataDir.entryList({modName + "*.bsa"})) {
+ archives.append(dataDir.absoluteFilePath(archiveName));
+ }
+ return archives;
+}