| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257 |
- using Avalonia.Controls;
- using Avalonia.Threading;
- using FluentAvalonia.UI.Controls;
- using Ryujinx.Ava.Common.Locale;
- using Ryujinx.Ava.UI.Controls;
- using Ryujinx.Ava.UI.Helpers;
- using Ryujinx.Ava.UI.Windows;
- using Ryujinx.Ava.Utilities.Configuration;
- using Ryujinx.HLE;
- using Ryujinx.HLE.HOS.Applets;
- using Ryujinx.HLE.HOS.Applets.SoftwareKeyboard;
- using Ryujinx.HLE.HOS.Services.Am.AppletOE.ApplicationProxyService.ApplicationProxy.Types;
- using Ryujinx.HLE.UI;
- using System;
- using System.Threading;
- namespace Ryujinx.Ava.UI.Applet
- {
- internal class AvaHostUIHandler : IHostUIHandler
- {
- private readonly MainWindow _parent;
- public IHostUITheme HostUITheme { get; }
- public AvaHostUIHandler(MainWindow parent)
- {
- _parent = parent;
- HostUITheme = new AvaloniaHostUITheme(parent);
- }
- public bool DisplayMessageDialog(ControllerAppletUIArgs args)
- {
- ManualResetEvent dialogCloseEvent = new(false);
- bool okPressed = false;
- if (ConfigurationState.Instance.IgnoreApplet)
- return false;
- Dispatcher.UIThread.InvokeAsync(async () =>
- {
- var response = await ControllerAppletDialog.ShowControllerAppletDialog(_parent, args);
- if (response == UserResult.Ok)
- {
- okPressed = true;
- }
- dialogCloseEvent.Set();
- });
- dialogCloseEvent.WaitOne();
- return okPressed;
- }
- public bool DisplayMessageDialog(string title, string message)
- {
- ManualResetEvent dialogCloseEvent = new(false);
- bool okPressed = false;
- Dispatcher.UIThread.InvokeAsync(async () =>
- {
- try
- {
- ManualResetEvent deferEvent = new(false);
- bool opened = false;
- UserResult response = await ContentDialogHelper.ShowDeferredContentDialog(_parent,
- title,
- message,
- string.Empty,
- LocaleManager.Instance[LocaleKeys.DialogOpenSettingsWindowLabel],
- string.Empty,
- LocaleManager.Instance[LocaleKeys.SettingsButtonClose],
- (int)Symbol.Important,
- deferEvent,
- async window =>
- {
- if (opened)
- {
- return;
- }
- opened = true;
- _parent.SettingsWindow = new SettingsWindow(_parent.VirtualFileSystem, _parent.ContentManager);
- await _parent.SettingsWindow.ShowDialog(window);
- _parent.SettingsWindow = null;
- opened = false;
- });
- if (response == UserResult.Ok)
- {
- okPressed = true;
- }
- dialogCloseEvent.Set();
- }
- catch (Exception ex)
- {
- await ContentDialogHelper.CreateErrorDialog(LocaleManager.Instance.UpdateAndGetDynamicValue(LocaleKeys.DialogMessageDialogErrorExceptionMessage, ex));
- dialogCloseEvent.Set();
- }
- });
- dialogCloseEvent.WaitOne();
- return okPressed;
- }
- public bool DisplayInputDialog(SoftwareKeyboardUIArgs args, out string userText)
- {
- ManualResetEvent dialogCloseEvent = new(false);
- bool okPressed = false;
- bool error = false;
- string inputText = args.InitialText ?? string.Empty;
- Dispatcher.UIThread.InvokeAsync(async () =>
- {
- try
- {
- _parent.ViewModel.AppHost.NpadManager.BlockInputUpdates();
- (UserResult result, string userInput) = await SwkbdAppletDialog.ShowInputDialog(LocaleManager.Instance[LocaleKeys.SoftwareKeyboard], args);
- if (result == UserResult.Ok)
- {
- inputText = userInput;
- okPressed = true;
- }
- }
- catch (Exception ex)
- {
- error = true;
- await ContentDialogHelper.CreateErrorDialog(LocaleManager.Instance.UpdateAndGetDynamicValue(LocaleKeys.DialogSoftwareKeyboardErrorExceptionMessage, ex));
- }
- finally
- {
- dialogCloseEvent.Set();
- }
- });
- dialogCloseEvent.WaitOne();
- _parent.ViewModel.AppHost.NpadManager.UnblockInputUpdates();
- userText = error ? null : inputText;
- return error || okPressed;
- }
- public bool DisplayCabinetDialog(out string userText)
- {
- ManualResetEvent dialogCloseEvent = new(false);
- bool okPressed = false;
- string inputText = "My Amiibo";
- Dispatcher.UIThread.InvokeAsync(async () =>
- {
- try
- {
- _parent.ViewModel.AppHost.NpadManager.BlockInputUpdates();
- SoftwareKeyboardUIArgs args = new SoftwareKeyboardUIArgs();
- args.KeyboardMode = KeyboardMode.Default;
- args.InitialText = "Ryujinx";
- args.StringLengthMin = 1;
- args.StringLengthMax = 25;
- (UserResult result, string userInput) = await SwkbdAppletDialog.ShowInputDialog(LocaleManager.Instance[LocaleKeys.CabinetDialog], args);
- if (result == UserResult.Ok)
- {
- inputText = userInput;
- okPressed = true;
- }
- }
- finally
- {
- dialogCloseEvent.Set();
- }
- });
- dialogCloseEvent.WaitOne();
- _parent.ViewModel.AppHost.NpadManager.UnblockInputUpdates();
- userText = inputText;
- return okPressed;
- }
- public void DisplayCabinetMessageDialog()
- {
- ManualResetEvent dialogCloseEvent = new(false);
- Dispatcher.UIThread.InvokeAsync(async () =>
- {
- dialogCloseEvent.Set();
- await ContentDialogHelper.CreateInfoDialog(LocaleManager.Instance[LocaleKeys.CabinetScanDialog],
- string.Empty,
- LocaleManager.Instance[LocaleKeys.InputDialogOk],
- string.Empty,
- LocaleManager.Instance[LocaleKeys.CabinetTitle]);
- });
- dialogCloseEvent.WaitOne();
- }
- public void ExecuteProgram(Switch device, ProgramSpecifyKind kind, ulong value)
- {
- device.Configuration.UserChannelPersistence.ExecuteProgram(kind, value);
- _parent.ViewModel.AppHost?.Stop();
- }
- public bool DisplayErrorAppletDialog(string title, string message, string[] buttons)
- {
- ManualResetEvent dialogCloseEvent = new(false);
- bool showDetails = false;
- Dispatcher.UIThread.InvokeAsync(async () =>
- {
- try
- {
- ErrorAppletWindow msgDialog = new(_parent, buttons, message)
- {
- Title = title,
- WindowStartupLocation = WindowStartupLocation.CenterScreen,
- Width = 400
- };
- object response = await msgDialog.Run();
- if (response != null && buttons is { Length: > 1 } && (int)response != buttons.Length - 1)
- {
- showDetails = true;
- }
- dialogCloseEvent.Set();
- msgDialog.Close();
- }
- catch (Exception ex)
- {
- dialogCloseEvent.Set();
- await ContentDialogHelper.CreateErrorDialog(LocaleManager.Instance.UpdateAndGetDynamicValue(LocaleKeys.DialogErrorAppletErrorExceptionMessage, ex));
- }
- });
- dialogCloseEvent.WaitOne();
- return showDetails;
- }
- public IDynamicTextInputHandler CreateDynamicTextInputHandler() => new AvaloniaDynamicTextInputHandler(_parent);
- }
- }
|