mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-11 07:36:39 +00:00
81 lines
3.1 KiB
C#
81 lines
3.1 KiB
C#
|
using Avalonia.Controls;
|
||
|
using Avalonia.Markup.Xaml;
|
||
|
using FluentAvalonia.UI.Controls;
|
||
|
using Ryujinx.Ava.Common.Locale;
|
||
|
using Ryujinx.Ava.Ui.Models;
|
||
|
using Ryujinx.Ava.Ui.ViewModels;
|
||
|
using Ryujinx.Common.Configuration.Hid.Controller;
|
||
|
using System.Threading.Tasks;
|
||
|
|
||
|
namespace Ryujinx.Ava.Ui.Windows
|
||
|
{
|
||
|
public class MotionSettingsWindow : UserControl
|
||
|
{
|
||
|
private readonly InputConfiguration<GamepadInputId, StickInputId> _viewmodel;
|
||
|
|
||
|
public MotionSettingsWindow()
|
||
|
{
|
||
|
InitializeComponent();
|
||
|
}
|
||
|
|
||
|
public MotionSettingsWindow(ControllerSettingsViewModel viewmodel)
|
||
|
{
|
||
|
var config = viewmodel.Configuration as InputConfiguration<GamepadInputId, StickInputId>;
|
||
|
|
||
|
_viewmodel = new InputConfiguration<GamepadInputId, StickInputId>()
|
||
|
{
|
||
|
Slot = config.Slot,
|
||
|
AltSlot = config.AltSlot,
|
||
|
DsuServerHost = config.DsuServerHost,
|
||
|
DsuServerPort = config.DsuServerPort,
|
||
|
MirrorInput = config.MirrorInput,
|
||
|
EnableMotion = config.EnableMotion,
|
||
|
Sensitivity = config.Sensitivity,
|
||
|
GyroDeadzone = config.GyroDeadzone,
|
||
|
EnableCemuHookMotion = config.EnableCemuHookMotion
|
||
|
};
|
||
|
|
||
|
InitializeComponent();
|
||
|
}
|
||
|
|
||
|
private void InitializeComponent()
|
||
|
{
|
||
|
DataContext = _viewmodel;
|
||
|
|
||
|
AvaloniaXamlLoader.Load(this);
|
||
|
}
|
||
|
|
||
|
public static async Task Show(ControllerSettingsViewModel viewmodel, StyleableWindow window)
|
||
|
{
|
||
|
ContentDialog contentDialog = window.ContentDialog;
|
||
|
|
||
|
string name = string.Empty;
|
||
|
|
||
|
MotionSettingsWindow content = new MotionSettingsWindow(viewmodel);
|
||
|
|
||
|
if (contentDialog != null)
|
||
|
{
|
||
|
contentDialog.Title = LocaleManager.Instance["ControllerMotionTitle"];
|
||
|
contentDialog.PrimaryButtonText = LocaleManager.Instance["ControllerSettingsSave"];
|
||
|
contentDialog.SecondaryButtonText = "";
|
||
|
contentDialog.CloseButtonText = LocaleManager.Instance["ControllerSettingsClose"];
|
||
|
contentDialog.Content = content;
|
||
|
contentDialog.PrimaryButtonClick += (sender, args) =>
|
||
|
{
|
||
|
var config = viewmodel.Configuration as InputConfiguration<GamepadInputId, StickInputId>;
|
||
|
config.Slot = content._viewmodel.Slot;
|
||
|
config.EnableMotion = content._viewmodel.EnableMotion;
|
||
|
config.Sensitivity = content._viewmodel.Sensitivity;
|
||
|
config.GyroDeadzone = content._viewmodel.GyroDeadzone;
|
||
|
config.AltSlot = content._viewmodel.AltSlot;
|
||
|
config.DsuServerHost = content._viewmodel.DsuServerHost;
|
||
|
config.DsuServerPort = content._viewmodel.DsuServerPort;
|
||
|
config.EnableCemuHookMotion = content._viewmodel.EnableCemuHookMotion;
|
||
|
config.MirrorInput = content._viewmodel.MirrorInput;
|
||
|
};
|
||
|
|
||
|
await contentDialog.ShowAsync();
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|