mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2025-01-11 13:19:11 +00:00
d6d3cdd573
* Remove `async void` * Async LoadApplications * Formatting and such * Remove async from InstallUpdate * Update src/Ryujinx.Ava/UI/Controls/ApplicationContextMenu.axaml.cs Co-authored-by: TSRBerry <20988865+TSRBerry@users.noreply.github.com> * Cleanup LoadApplications() * Cleanup * Formatting * Revert some stuff * Cleanup * Update src/Ryujinx.Ava/UI/ViewModels/MainWindowViewModel.cs Co-authored-by: Ac_K <Acoustik666@gmail.com> * Ack suggestions * Whitespace * Fix Peri suggestion * Add missing trailing commas * Remove redundant method override * Remove Dispatcher.UIThread.InvokeAsync/Post where possible --------- Co-authored-by: TSR Berry <20988865+TSRBerry@users.noreply.github.com> Co-authored-by: Ac_K <Acoustik666@gmail.com>
116 lines
3.9 KiB
C#
116 lines
3.9 KiB
C#
using Avalonia.Controls;
|
|
using Avalonia.Interactivity;
|
|
using Avalonia.Platform.Storage;
|
|
using Avalonia.VisualTree;
|
|
using FluentAvalonia.UI.Controls;
|
|
using FluentAvalonia.UI.Navigation;
|
|
using Ryujinx.Ava.Common.Locale;
|
|
using Ryujinx.Ava.UI.Controls;
|
|
using Ryujinx.Ava.UI.Models;
|
|
using Ryujinx.Ava.UI.ViewModels;
|
|
using Ryujinx.HLE.FileSystem;
|
|
using SixLabors.ImageSharp;
|
|
using SixLabors.ImageSharp.Processing;
|
|
using System.Collections.Generic;
|
|
using System.IO;
|
|
using Image = SixLabors.ImageSharp.Image;
|
|
|
|
namespace Ryujinx.Ava.UI.Views.User
|
|
{
|
|
public partial class UserProfileImageSelectorView : UserControl
|
|
{
|
|
private ContentManager _contentManager;
|
|
private NavigationDialogHost _parent;
|
|
private TempProfile _profile;
|
|
|
|
internal UserProfileImageSelectorViewModel ViewModel { get; private set; }
|
|
|
|
public UserProfileImageSelectorView()
|
|
{
|
|
InitializeComponent();
|
|
AddHandler(Frame.NavigatedToEvent, (s, e) =>
|
|
{
|
|
NavigatedTo(e);
|
|
}, RoutingStrategies.Direct);
|
|
}
|
|
|
|
private void NavigatedTo(NavigationEventArgs arg)
|
|
{
|
|
if (Program.PreviewerDetached)
|
|
{
|
|
switch (arg.NavigationMode)
|
|
{
|
|
case NavigationMode.New:
|
|
(_parent, _profile) = ((NavigationDialogHost, TempProfile))arg.Parameter;
|
|
_contentManager = _parent.ContentManager;
|
|
|
|
((ContentDialog)_parent.Parent).Title = $"{LocaleManager.Instance[LocaleKeys.UserProfileWindowTitle]} - {LocaleManager.Instance[LocaleKeys.ProfileImageSelectionHeader]}";
|
|
|
|
if (Program.PreviewerDetached)
|
|
{
|
|
DataContext = ViewModel = new UserProfileImageSelectorViewModel();
|
|
ViewModel.FirmwareFound = _contentManager.GetCurrentFirmwareVersion() != null;
|
|
}
|
|
|
|
break;
|
|
case NavigationMode.Back:
|
|
if (_profile.Image != null)
|
|
{
|
|
_parent.GoBack();
|
|
}
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
|
|
private async void Import_OnClick(object sender, RoutedEventArgs e)
|
|
{
|
|
var window = this.GetVisualRoot() as Window;
|
|
var result = await window.StorageProvider.OpenFilePickerAsync(new FilePickerOpenOptions
|
|
{
|
|
AllowMultiple = false,
|
|
FileTypeFilter = new List<FilePickerFileType>
|
|
{
|
|
new(LocaleManager.Instance[LocaleKeys.AllSupportedFormats])
|
|
{
|
|
Patterns = new[] { "*.jpg", "*.jpeg", "*.png", "*.bmp" },
|
|
AppleUniformTypeIdentifiers = new[] { "public.jpeg", "public.png", "com.microsoft.bmp" },
|
|
MimeTypes = new[] { "image/jpeg", "image/png", "image/bmp" },
|
|
},
|
|
},
|
|
});
|
|
|
|
if (result.Count > 0)
|
|
{
|
|
_profile.Image = ProcessProfileImage(File.ReadAllBytes(result[0].Path.LocalPath));
|
|
_parent.GoBack();
|
|
}
|
|
}
|
|
|
|
private void GoBack(object sender, RoutedEventArgs e)
|
|
{
|
|
_parent.GoBack();
|
|
}
|
|
|
|
private void SelectFirmwareImage_OnClick(object sender, RoutedEventArgs e)
|
|
{
|
|
if (ViewModel.FirmwareFound)
|
|
{
|
|
_parent.Navigate(typeof(UserFirmwareAvatarSelectorView), (_parent, _profile));
|
|
}
|
|
}
|
|
|
|
private static byte[] ProcessProfileImage(byte[] buffer)
|
|
{
|
|
using Image image = Image.Load(buffer);
|
|
|
|
image.Mutate(x => x.Resize(256, 256));
|
|
|
|
using MemoryStream streamJpg = new();
|
|
|
|
image.SaveAsJpeg(streamJpg);
|
|
|
|
return streamJpg.ToArray();
|
|
}
|
|
}
|
|
}
|