mirror of
https://github.com/ryujinx-mirror/ryujinx.git
synced 2026-03-11 22:15:33 +00:00
* Add hooks to ApplicationLibrary for loading DLC/updates * Trigger DLC/update load on games refresh * Initial moving of DLC/updates to UI.Common * Use new models in ApplicationLibrary * Make dlc/updates records; use ApplicationLibrary for loading logic * Fix a bug with DLC window; rework some logic * Auto-load bundled DLC on startup * Autoload DLC * Add setting for autoloading dlc/updates * Remove dead code; bind to AppLibrary apps directly in mainwindow * Stub out bulk dlc menu item * Add localization; stub out bulk load updates * Set autoload dirs explicitly * Begin extracting updates to match DLC refactors * Add title update autoloading * Reduce size of settings sections * Better cache lookup for apps * Dont reload entire library on game version change * Remove ApplicationAdded event; always enumerate nsp when autoloading
103 lines
3.2 KiB
C#
103 lines
3.2 KiB
C#
using Avalonia.Controls;
|
|
using Avalonia.Interactivity;
|
|
using Avalonia.Styling;
|
|
using FluentAvalonia.UI.Controls;
|
|
using Ryujinx.Ava.Common.Locale;
|
|
using Ryujinx.Ava.UI.ViewModels;
|
|
using Ryujinx.UI.App.Common;
|
|
using Ryujinx.UI.Common.Helper;
|
|
using Ryujinx.UI.Common.Models;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Ryujinx.Ava.UI.Windows
|
|
{
|
|
public partial class DownloadableContentManagerWindow : UserControl
|
|
{
|
|
public DownloadableContentManagerViewModel ViewModel;
|
|
|
|
public DownloadableContentManagerWindow()
|
|
{
|
|
DataContext = this;
|
|
|
|
InitializeComponent();
|
|
}
|
|
|
|
public DownloadableContentManagerWindow(ApplicationLibrary applicationLibrary, ApplicationData applicationData)
|
|
{
|
|
DataContext = ViewModel = new DownloadableContentManagerViewModel(applicationLibrary, applicationData);
|
|
|
|
InitializeComponent();
|
|
}
|
|
|
|
public static async Task Show(ApplicationLibrary applicationLibrary, ApplicationData applicationData)
|
|
{
|
|
ContentDialog contentDialog = new()
|
|
{
|
|
PrimaryButtonText = "",
|
|
SecondaryButtonText = "",
|
|
CloseButtonText = "",
|
|
Content = new DownloadableContentManagerWindow(applicationLibrary, applicationData),
|
|
Title = string.Format(LocaleManager.Instance[LocaleKeys.DlcWindowTitle], applicationData.Name, applicationData.IdBaseString),
|
|
};
|
|
|
|
Style bottomBorder = new(x => x.OfType<Grid>().Name("DialogSpace").Child().OfType<Border>());
|
|
bottomBorder.Setters.Add(new Setter(IsVisibleProperty, false));
|
|
|
|
contentDialog.Styles.Add(bottomBorder);
|
|
|
|
await contentDialog.ShowAsync();
|
|
}
|
|
|
|
private void SaveAndClose(object sender, RoutedEventArgs routedEventArgs)
|
|
{
|
|
ViewModel.Save();
|
|
((ContentDialog)Parent).Hide();
|
|
}
|
|
|
|
private void Close(object sender, RoutedEventArgs e)
|
|
{
|
|
((ContentDialog)Parent).Hide();
|
|
}
|
|
|
|
private void RemoveDLC(object sender, RoutedEventArgs e)
|
|
{
|
|
if (sender is Button button)
|
|
{
|
|
if (button.DataContext is DownloadableContentModel model)
|
|
{
|
|
ViewModel.Remove(model);
|
|
}
|
|
}
|
|
}
|
|
|
|
private void OpenLocation(object sender, RoutedEventArgs e)
|
|
{
|
|
if (sender is Button button)
|
|
{
|
|
if (button.DataContext is DownloadableContentModel model)
|
|
{
|
|
OpenHelper.LocateFile(model.ContainerPath);
|
|
}
|
|
}
|
|
}
|
|
|
|
private void OnSelectionChanged(object sender, SelectionChangedEventArgs e)
|
|
{
|
|
foreach (var content in e.AddedItems)
|
|
{
|
|
if (content is DownloadableContentModel model)
|
|
{
|
|
ViewModel.Enable(model);
|
|
}
|
|
}
|
|
|
|
foreach (var content in e.RemovedItems)
|
|
{
|
|
if (content is DownloadableContentModel model)
|
|
{
|
|
ViewModel.Disable(model);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|