forked from MeloNX/MeloNX
* Cleanup * Remove redundant locales * Start SVG Fixes… Better +/- buttons Fix the grips Bumpers Better directional pad More SVG stuff Grip adjustments Final stuff * Make image bigger * Border radius * More cleanup * Restructure * Restructure Rumble View * Use compiled bindings where possible * Round those pesky corners * Ack Suggestions * More suggestions * Update src/Ryujinx.Ava/UI/Views/Input/RumbleInputView.axaml.cs Co-authored-by: Ac_K <Acoustik666@gmail.com> --------- Co-authored-by: Ac_K <Acoustik666@gmail.com>
58 lines
1.9 KiB
C#
58 lines
1.9 KiB
C#
using Avalonia.Controls;
|
|
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.Views.Input
|
|
{
|
|
public partial class RumbleInputView : UserControl
|
|
{
|
|
private RumbleInputViewModel _viewModel;
|
|
|
|
public RumbleInputView()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
|
|
public RumbleInputView(ControllerInputViewModel viewModel)
|
|
{
|
|
var config = viewModel.Configuration as InputConfiguration<GamepadInputId, StickInputId>;
|
|
|
|
_viewModel = new RumbleInputViewModel
|
|
{
|
|
StrongRumble = config.StrongRumble,
|
|
WeakRumble = config.WeakRumble
|
|
};
|
|
|
|
InitializeComponent();
|
|
|
|
DataContext = _viewModel;
|
|
}
|
|
|
|
public static async Task Show(ControllerInputViewModel viewModel)
|
|
{
|
|
RumbleInputView content = new(viewModel);
|
|
|
|
ContentDialog contentDialog = new()
|
|
{
|
|
Title = LocaleManager.Instance[LocaleKeys.ControllerRumbleTitle],
|
|
PrimaryButtonText = LocaleManager.Instance[LocaleKeys.ControllerSettingsSave],
|
|
SecondaryButtonText = "",
|
|
CloseButtonText = LocaleManager.Instance[LocaleKeys.ControllerSettingsClose],
|
|
Content = content,
|
|
};
|
|
|
|
contentDialog.PrimaryButtonClick += (sender, args) =>
|
|
{
|
|
var config = viewModel.Configuration as InputConfiguration<GamepadInputId, StickInputId>;
|
|
config.StrongRumble = content._viewModel.StrongRumble;
|
|
config.WeakRumble = content._viewModel.WeakRumble;
|
|
};
|
|
|
|
await contentDialog.ShowAsync();
|
|
}
|
|
}
|
|
} |