| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336 |
- using Avalonia;
- using Avalonia.Collections;
- using Avalonia.Controls.ApplicationLifetimes;
- using Avalonia.Platform.Storage;
- using Avalonia.Threading;
- using DynamicData;
- using Gommon;
- using Ryujinx.Ava.Common.Locale;
- using Ryujinx.Ava.UI.Helpers;
- using Ryujinx.Ava.UI.Models;
- using Ryujinx.Common.Configuration;
- using Ryujinx.Common.Logging;
- using Ryujinx.Common.Utilities;
- using Ryujinx.HLE.HOS;
- using System;
- using System.IO;
- using System.Linq;
- namespace Ryujinx.Ava.UI.ViewModels
- {
- public class ModManagerViewModel : BaseModel
- {
- private readonly string _modJsonPath;
- private AvaloniaList<ModModel> _mods = new();
- private AvaloniaList<ModModel> _views = new();
- private AvaloniaList<ModModel> _selectedMods = new();
- private string _search;
- private readonly ulong _applicationId;
- private readonly IStorageProvider _storageProvider;
- private static readonly ModMetadataJsonSerializerContext _serializerContext = new(JsonHelper.GetDefaultSerializerOptions());
- public AvaloniaList<ModModel> Mods
- {
- get => _mods;
- set
- {
- _mods = value;
- OnPropertyChanged();
- OnPropertyChanged(nameof(ModCount));
- Sort();
- }
- }
- public AvaloniaList<ModModel> Views
- {
- get => _views;
- set
- {
- _views = value;
- OnPropertyChanged();
- }
- }
- public AvaloniaList<ModModel> SelectedMods
- {
- get => _selectedMods;
- set
- {
- _selectedMods = value;
- OnPropertyChanged();
- }
- }
- public string Search
- {
- get => _search;
- set
- {
- _search = value;
- OnPropertyChanged();
- Sort();
- }
- }
- public string ModCount
- {
- get => string.Format(LocaleManager.Instance[LocaleKeys.ModWindowHeading], Mods.Count);
- }
- public ModManagerViewModel(ulong applicationId)
- {
- _applicationId = applicationId;
- _modJsonPath = Path.Combine(AppDataManager.GamesDirPath, applicationId.ToString("x16"), "mods.json");
- if (Application.Current.ApplicationLifetime is IClassicDesktopStyleApplicationLifetime desktop)
- {
- _storageProvider = desktop.MainWindow.StorageProvider;
- }
- LoadMods(applicationId);
- }
- private void LoadMods(ulong applicationId)
- {
- Mods.Clear();
- SelectedMods.Clear();
- string[] modsBasePaths = [ModLoader.GetSdModsBasePath(), ModLoader.GetModsBasePath()];
- foreach (var path in modsBasePaths)
- {
- var inSd = path == ModLoader.GetSdModsBasePath();
- var modCache = new ModLoader.ModCache();
- ModLoader.QueryContentsDir(modCache, new DirectoryInfo(Path.Combine(path, "contents")), applicationId);
- foreach (var mod in modCache.RomfsDirs)
- {
- var modModel = new ModModel(mod.Path.Parent.FullName, mod.Name, mod.Enabled, inSd);
- if (Mods.All(x => x.Path != mod.Path.Parent.FullName))
- {
- Mods.Add(modModel);
- }
- }
- foreach (var mod in modCache.RomfsContainers)
- {
- Mods.Add(new ModModel(mod.Path.FullName, mod.Name, mod.Enabled, inSd));
- }
- foreach (var mod in modCache.ExefsDirs)
- {
- var modModel = new ModModel(mod.Path.Parent.FullName, mod.Name, mod.Enabled, inSd);
- if (Mods.All(x => x.Path != mod.Path.Parent.FullName))
- {
- Mods.Add(modModel);
- }
- }
- foreach (var mod in modCache.ExefsContainers)
- {
- Mods.Add(new ModModel(mod.Path.FullName, mod.Name, mod.Enabled, inSd));
- }
- }
- Sort();
- }
- public void Sort()
- {
- Mods.AsObservableChangeSet()
- .Filter(Filter)
- .Bind(out var view).AsObservableList();
- _views.Clear();
- _views.AddRange(view);
- SelectedMods = new(Views.Where(x => x.Enabled));
- OnPropertyChanged(nameof(ModCount));
- OnPropertyChanged(nameof(Views));
- OnPropertyChanged(nameof(SelectedMods));
- }
- private bool Filter(object arg)
- {
- if (arg is ModModel content)
- {
- return string.IsNullOrWhiteSpace(_search) || content.Name.ToLower().Contains(_search.ToLower());
- }
- return false;
- }
- public void Save()
- {
- ModMetadata modData = new();
- foreach (ModModel mod in Mods)
- {
- modData.Mods.Add(new Mod
- {
- Name = mod.Name,
- Path = mod.Path,
- Enabled = SelectedMods.Contains(mod),
- });
- }
- JsonHelper.SerializeToFile(_modJsonPath, modData, _serializerContext.ModMetadata);
- }
- public void Delete(ModModel model, bool removeFromList = true)
- {
- var isSubdir = true;
- var pathToDelete = model.Path;
- var basePath = model.InSd ? ModLoader.GetSdModsBasePath() : ModLoader.GetModsBasePath();
- var modsDir = ModLoader.GetApplicationDir(basePath, _applicationId.ToString("x16"));
- if (new DirectoryInfo(model.Path).Parent?.FullName == modsDir)
- {
- isSubdir = false;
- }
- if (isSubdir)
- {
- var parentDir = String.Empty;
- foreach (var dir in Directory.GetDirectories(modsDir, "*", SearchOption.TopDirectoryOnly))
- {
- if (Directory.GetDirectories(dir, "*", SearchOption.AllDirectories).Contains(model.Path))
- {
- parentDir = dir;
- break;
- }
- }
- if (parentDir == String.Empty)
- {
- Dispatcher.UIThread.Post(async () =>
- {
- await ContentDialogHelper.CreateErrorDialog(LocaleManager.Instance.UpdateAndGetDynamicValue(
- LocaleKeys.DialogModDeleteNoParentMessage,
- model.Path));
- });
- return;
- }
- }
- Logger.Info?.Print(LogClass.Application, $"Deleting mod at \"{pathToDelete}\"");
- Directory.Delete(pathToDelete, true);
- if (removeFromList)
- {
- Mods.Remove(model);
- OnPropertyChanged(nameof(ModCount));
- }
- Sort();
- }
- private void AddMod(DirectoryInfo directory)
- {
- string[] directories;
- try
- {
- directories = Directory.GetDirectories(directory.ToString(), "*", SearchOption.AllDirectories);
- }
- catch (Exception exception)
- {
- Dispatcher.UIThread.Post(async () =>
- {
- await ContentDialogHelper.CreateErrorDialog(LocaleManager.Instance.UpdateAndGetDynamicValue(
- LocaleKeys.DialogLoadFileErrorMessage,
- exception.ToString(),
- directory));
- });
- return;
- }
- var destinationDir = ModLoader.GetApplicationDir(ModLoader.GetSdModsBasePath(), _applicationId.ToString("x16"));
- // TODO: More robust checking for valid mod folders
- var isDirectoryValid = true;
- if (directories.Length == 0)
- {
- isDirectoryValid = false;
- }
- if (!isDirectoryValid)
- {
- Dispatcher.UIThread.Post(async () =>
- {
- await ContentDialogHelper.CreateErrorDialog(LocaleManager.Instance[LocaleKeys.DialogModInvalidMessage]);
- });
- return;
- }
- foreach (var dir in directories)
- {
- string dirToCreate = dir.Replace(directory.Parent.ToString(), destinationDir);
- // Mod already exists
- if (Directory.Exists(dirToCreate))
- {
- Dispatcher.UIThread.Post(async () =>
- {
- await ContentDialogHelper.CreateErrorDialog(LocaleManager.Instance.UpdateAndGetDynamicValue(
- LocaleKeys.DialogLoadFileErrorMessage,
- LocaleManager.Instance[LocaleKeys.DialogModAlreadyExistsMessage],
- dirToCreate));
- });
- return;
- }
- Directory.CreateDirectory(dirToCreate);
- }
- var files = Directory.GetFiles(directory.ToString(), "*", SearchOption.AllDirectories);
- foreach (var file in files)
- {
- File.Copy(file, file.Replace(directory.Parent.ToString(), destinationDir), true);
- }
- LoadMods(_applicationId);
- }
- public async void Add()
- {
- var result = await _storageProvider.OpenFolderPickerAsync(new FolderPickerOpenOptions
- {
- Title = LocaleManager.Instance[LocaleKeys.SelectModDialogTitle],
- AllowMultiple = true,
- });
- foreach (var folder in result)
- {
- AddMod(new DirectoryInfo(folder.Path.LocalPath));
- }
- }
- public void DeleteAll()
- {
- Mods.ForEach(it => Delete(it, false));
- Mods.Clear();
- OnPropertyChanged(nameof(ModCount));
- Sort();
- }
- public void EnableAll()
- {
- SelectedMods = new(Mods);
- }
- public void DisableAll()
- {
- SelectedMods.Clear();
- }
- }
- }
|