aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Ava/Ui/Controls/ProfileImageSelectionDialog.axaml.cs
blob: 728b8906959a125592a6a92fd1971446684f8bee (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
using Avalonia;
using Avalonia.Controls;
using Avalonia.Interactivity;
using Avalonia.Markup.Xaml;
using Ryujinx.Ava.Common.Locale;
using Ryujinx.Ava.Ui.Windows;
using Ryujinx.HLE.FileSystem;
using SixLabors.ImageSharp;
using SixLabors.ImageSharp.Processing;
using System.IO;
using Image = SixLabors.ImageSharp.Image;

namespace Ryujinx.Ava.Ui.Controls
{
    public class ProfileImageSelectionDialog : StyleableWindow
    {
        private readonly ContentManager _contentManager;

        public bool FirmwareFound => _contentManager.GetCurrentFirmwareVersion() != null;

        public byte[] BufferImageProfile { get; set; }

        public ProfileImageSelectionDialog(ContentManager contentManager)
        {
            _contentManager = contentManager;
            DataContext = this;
            InitializeComponent();
#if DEBUG
            this.AttachDevTools();
#endif
        }

        public ProfileImageSelectionDialog()
        {
            DataContext = this;
            InitializeComponent();
#if DEBUG
            this.AttachDevTools();
#endif
        }

        private void InitializeComponent()
        {
            AvaloniaXamlLoader.Load(this);
        }

        private async void Import_OnClick(object sender, RoutedEventArgs e)
        {
            OpenFileDialog dialog = new();
            dialog.Filters.Add(new FileDialogFilter
            {
                Name = LocaleManager.Instance["AllSupportedFormats"],
                Extensions = { "jpg", "jpeg", "png", "bmp" }
            });
            dialog.Filters.Add(new FileDialogFilter { Name = "JPEG", Extensions = { "jpg", "jpeg" } });
            dialog.Filters.Add(new FileDialogFilter { Name = "PNG", Extensions = { "png" } });
            dialog.Filters.Add(new FileDialogFilter { Name = "BMP", Extensions = { "bmp" } });

            dialog.AllowMultiple = false;

            string[] image = await dialog.ShowAsync(this);

            if (image != null)
            {
                if (image.Length > 0)
                {
                    string imageFile = image[0];

                    ProcessProfileImage(File.ReadAllBytes(imageFile));
                }

                Close();
            }
        }

        private async void SelectFirmwareImage_OnClick(object sender, RoutedEventArgs e)
        {
            if (FirmwareFound)
            {
                AvatarWindow window = new(_contentManager);

                await window.ShowDialog(this);

                BufferImageProfile = window.SelectedImage;

                Close();
            }
        }

        private void ProcessProfileImage(byte[] buffer)
        {
            using (Image image = Image.Load(buffer))
            {
                image.Mutate(x => x.Resize(256, 256));

                using (MemoryStream streamJpg = new())
                {
                    image.SaveAsJpeg(streamJpg);

                    BufferImageProfile = streamJpg.ToArray();
                }
            }
        }
    }
}