aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx/Ui/Windows/ControllerWindow.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/Ryujinx/Ui/Windows/ControllerWindow.cs')
-rw-r--r--src/Ryujinx/Ui/Windows/ControllerWindow.cs788
1 files changed, 398 insertions, 390 deletions
diff --git a/src/Ryujinx/Ui/Windows/ControllerWindow.cs b/src/Ryujinx/Ui/Windows/ControllerWindow.cs
index 9b4befd8..19cc6f20 100644
--- a/src/Ryujinx/Ui/Windows/ControllerWindow.cs
+++ b/src/Ryujinx/Ui/Windows/ControllerWindow.cs
@@ -31,47 +31,47 @@ namespace Ryujinx.Ui.Windows
private bool _isWaitingForInput;
-#pragma warning disable CS0649, IDE0044
- [GUI] Adjustment _controllerStrongRumble;
- [GUI] Adjustment _controllerWeakRumble;
- [GUI] Adjustment _controllerDeadzoneLeft;
- [GUI] Adjustment _controllerDeadzoneRight;
- [GUI] Adjustment _controllerRangeLeft;
- [GUI] Adjustment _controllerRangeRight;
- [GUI] Adjustment _controllerTriggerThreshold;
- [GUI] Adjustment _slotNumber;
- [GUI] Adjustment _altSlotNumber;
- [GUI] Adjustment _sensitivity;
- [GUI] Adjustment _gyroDeadzone;
- [GUI] CheckButton _enableMotion;
- [GUI] CheckButton _enableCemuHook;
- [GUI] CheckButton _mirrorInput;
- [GUI] Entry _dsuServerHost;
- [GUI] Entry _dsuServerPort;
+#pragma warning disable CS0649, IDE0044 // Field is never assigned to, Add readonly modifier
+ [GUI] Adjustment _controllerStrongRumble;
+ [GUI] Adjustment _controllerWeakRumble;
+ [GUI] Adjustment _controllerDeadzoneLeft;
+ [GUI] Adjustment _controllerDeadzoneRight;
+ [GUI] Adjustment _controllerRangeLeft;
+ [GUI] Adjustment _controllerRangeRight;
+ [GUI] Adjustment _controllerTriggerThreshold;
+ [GUI] Adjustment _slotNumber;
+ [GUI] Adjustment _altSlotNumber;
+ [GUI] Adjustment _sensitivity;
+ [GUI] Adjustment _gyroDeadzone;
+ [GUI] CheckButton _enableMotion;
+ [GUI] CheckButton _enableCemuHook;
+ [GUI] CheckButton _mirrorInput;
+ [GUI] Entry _dsuServerHost;
+ [GUI] Entry _dsuServerPort;
[GUI] ComboBoxText _inputDevice;
[GUI] ComboBoxText _profile;
- [GUI] Box _settingsBox;
- [GUI] Box _motionAltBox;
- [GUI] Box _motionBox;
- [GUI] Box _dsuServerHostBox;
- [GUI] Box _dsuServerPortBox;
- [GUI] Box _motionControllerSlot;
- [GUI] Grid _leftStickKeyboard;
- [GUI] Grid _leftStickController;
- [GUI] Box _deadZoneLeftBox;
- [GUI] Box _rangeLeftBox;
- [GUI] Grid _rightStickKeyboard;
- [GUI] Grid _rightStickController;
- [GUI] Box _deadZoneRightBox;
- [GUI] Box _rangeRightBox;
- [GUI] Grid _leftSideTriggerBox;
- [GUI] Grid _rightSideTriggerBox;
- [GUI] Box _triggerThresholdBox;
+ [GUI] Box _settingsBox;
+ [GUI] Box _motionAltBox;
+ [GUI] Box _motionBox;
+ [GUI] Box _dsuServerHostBox;
+ [GUI] Box _dsuServerPortBox;
+ [GUI] Box _motionControllerSlot;
+ [GUI] Grid _leftStickKeyboard;
+ [GUI] Grid _leftStickController;
+ [GUI] Box _deadZoneLeftBox;
+ [GUI] Box _rangeLeftBox;
+ [GUI] Grid _rightStickKeyboard;
+ [GUI] Grid _rightStickController;
+ [GUI] Box _deadZoneRightBox;
+ [GUI] Box _rangeRightBox;
+ [GUI] Grid _leftSideTriggerBox;
+ [GUI] Grid _rightSideTriggerBox;
+ [GUI] Box _triggerThresholdBox;
[GUI] ComboBoxText _controllerType;
[GUI] ToggleButton _lStick;
- [GUI] CheckButton _invertLStickX;
- [GUI] CheckButton _invertLStickY;
- [GUI] CheckButton _rotateL90CW;
+ [GUI] CheckButton _invertLStickX;
+ [GUI] CheckButton _invertLStickY;
+ [GUI] CheckButton _rotateL90CW;
[GUI] ToggleButton _lStickUp;
[GUI] ToggleButton _lStickDown;
[GUI] ToggleButton _lStickLeft;
@@ -85,9 +85,9 @@ namespace Ryujinx.Ui.Windows
[GUI] ToggleButton _l;
[GUI] ToggleButton _zL;
[GUI] ToggleButton _rStick;
- [GUI] CheckButton _invertRStickX;
- [GUI] CheckButton _invertRStickY;
- [GUI] CheckButton _rotateR90CW;
+ [GUI] CheckButton _invertRStickX;
+ [GUI] CheckButton _invertRStickY;
+ [GUI] CheckButton _rotateR90Cw;
[GUI] ToggleButton _rStickUp;
[GUI] ToggleButton _rStickDown;
[GUI] ToggleButton _rStickLeft;
@@ -104,18 +104,18 @@ namespace Ryujinx.Ui.Windows
[GUI] ToggleButton _lSr;
[GUI] ToggleButton _rSl;
[GUI] ToggleButton _rSr;
- [GUI] Image _controllerImage;
- [GUI] CheckButton _enableRumble;
- [GUI] Box _rumbleBox;
+ [GUI] Image _controllerImage;
+ [GUI] CheckButton _enableRumble;
+ [GUI] Box _rumbleBox;
#pragma warning restore CS0649, IDE0044
- private MainWindow _mainWindow;
- private IGamepadDriver _gtk3KeyboardDriver;
+ private readonly MainWindow _mainWindow;
+ private readonly IGamepadDriver _gtk3KeyboardDriver;
private IGamepad _selectedGamepad;
private bool _mousePressed;
private bool _middleMousePressed;
- private static readonly InputConfigJsonSerializerContext SerializerContext = new(JsonHelper.GetDefaultSerializerOptions());
+ private static readonly InputConfigJsonSerializerContext _serializerContext = new(JsonHelper.GetDefaultSerializerOptions());
public ControllerWindow(MainWindow mainWindow, PlayerIndex controllerId) : this(mainWindow, new Builder("Ryujinx.Ui.Windows.ControllerWindow.glade"), controllerId) { }
@@ -152,36 +152,36 @@ namespace Ryujinx.Ui.Windows
_controllerType.Active = 0; // Set initial value to first in list.
// Bind Events.
- _lStick.Clicked += ButtonForStick_Pressed;
- _lStickUp.Clicked += Button_Pressed;
- _lStickDown.Clicked += Button_Pressed;
- _lStickLeft.Clicked += Button_Pressed;
- _lStickRight.Clicked += Button_Pressed;
- _lStickButton.Clicked += Button_Pressed;
- _dpadUp.Clicked += Button_Pressed;
- _dpadDown.Clicked += Button_Pressed;
- _dpadLeft.Clicked += Button_Pressed;
- _dpadRight.Clicked += Button_Pressed;
- _minus.Clicked += Button_Pressed;
- _l.Clicked += Button_Pressed;
- _zL.Clicked += Button_Pressed;
- _lSl.Clicked += Button_Pressed;
- _lSr.Clicked += Button_Pressed;
- _rStick.Clicked += ButtonForStick_Pressed;
- _rStickUp.Clicked += Button_Pressed;
- _rStickDown.Clicked += Button_Pressed;
- _rStickLeft.Clicked += Button_Pressed;
- _rStickRight.Clicked += Button_Pressed;
- _rStickButton.Clicked += Button_Pressed;
- _a.Clicked += Button_Pressed;
- _b.Clicked += Button_Pressed;
- _x.Clicked += Button_Pressed;
- _y.Clicked += Button_Pressed;
- _plus.Clicked += Button_Pressed;
- _r.Clicked += Button_Pressed;
- _zR.Clicked += Button_Pressed;
- _rSl.Clicked += Button_Pressed;
- _rSr.Clicked += Button_Pressed;
+ _lStick.Clicked += ButtonForStick_Pressed;
+ _lStickUp.Clicked += Button_Pressed;
+ _lStickDown.Clicked += Button_Pressed;
+ _lStickLeft.Clicked += Button_Pressed;
+ _lStickRight.Clicked += Button_Pressed;
+ _lStickButton.Clicked += Button_Pressed;
+ _dpadUp.Clicked += Button_Pressed;
+ _dpadDown.Clicked += Button_Pressed;
+ _dpadLeft.Clicked += Button_Pressed;
+ _dpadRight.Clicked += Button_Pressed;
+ _minus.Clicked += Button_Pressed;
+ _l.Clicked += Button_Pressed;
+ _zL.Clicked += Button_Pressed;
+ _lSl.Clicked += Button_Pressed;
+ _lSr.Clicked += Button_Pressed;
+ _rStick.Clicked += ButtonForStick_Pressed;
+ _rStickUp.Clicked += Button_Pressed;
+ _rStickDown.Clicked += Button_Pressed;
+ _rStickLeft.Clicked += Button_Pressed;
+ _rStickRight.Clicked += Button_Pressed;
+ _rStickButton.Clicked += Button_Pressed;
+ _a.Clicked += Button_Pressed;
+ _b.Clicked += Button_Pressed;
+ _x.Clicked += Button_Pressed;
+ _y.Clicked += Button_Pressed;
+ _plus.Clicked += Button_Pressed;
+ _r.Clicked += Button_Pressed;
+ _zR.Clicked += Button_Pressed;
+ _rSl.Clicked += Button_Pressed;
+ _rSr.Clicked += Button_Pressed;
_enableCemuHook.Clicked += CemuHookCheckButtonPressed;
// Setup current values.
@@ -197,10 +197,7 @@ namespace Ryujinx.Ui.Windows
mainWindow.InputManager.GamepadDriver.OnGamepadConnected += HandleOnGamepadConnected;
mainWindow.InputManager.GamepadDriver.OnGamepadDisconnected += HandleOnGamepadDisconnected;
- if (_mainWindow.RendererWidget != null)
- {
- _mainWindow.RendererWidget.NpadManager.BlockInputUpdates();
- }
+ _mainWindow.RendererWidget?.NpadManager.BlockInputUpdates();
}
private void CemuHookCheckButtonPressed(object sender, EventArgs e)
@@ -229,10 +226,7 @@ namespace Ryujinx.Ui.Windows
_mainWindow.InputManager.GamepadDriver.OnGamepadConnected -= HandleOnGamepadConnected;
_mainWindow.InputManager.GamepadDriver.OnGamepadDisconnected -= HandleOnGamepadDisconnected;
- if (_mainWindow.RendererWidget != null)
- {
- _mainWindow.RendererWidget.NpadManager.UnblockInputUpdates();
- }
+ _mainWindow.RendererWidget?.NpadManager.UnblockInputUpdates();
_selectedGamepad?.Dispose();
@@ -384,62 +378,62 @@ namespace Ryujinx.Ui.Windows
_controllerImage.Pixbuf = _controllerType.ActiveId switch
{
"ProController" => new Gdk.Pixbuf(Assembly.GetAssembly(typeof(ConfigurationState)), "Ryujinx.Ui.Common.Resources.Controller_ProCon.svg", 400, 400),
- "JoyconLeft" => new Gdk.Pixbuf(Assembly.GetAssembly(typeof(ConfigurationState)), "Ryujinx.Ui.Common.Resources.Controller_JoyConLeft.svg", 400, 500),
- "JoyconRight" => new Gdk.Pixbuf(Assembly.GetAssembly(typeof(ConfigurationState)), "Ryujinx.Ui.Common.Resources.Controller_JoyConRight.svg", 400, 500),
- _ => new Gdk.Pixbuf(Assembly.GetAssembly(typeof(ConfigurationState)), "Ryujinx.Ui.Common.Resources.Controller_JoyConPair.svg", 400, 500),
+ "JoyconLeft" => new Gdk.Pixbuf(Assembly.GetAssembly(typeof(ConfigurationState)), "Ryujinx.Ui.Common.Resources.Controller_JoyConLeft.svg", 400, 500),
+ "JoyconRight" => new Gdk.Pixbuf(Assembly.GetAssembly(typeof(ConfigurationState)), "Ryujinx.Ui.Common.Resources.Controller_JoyConRight.svg", 400, 500),
+ _ => new Gdk.Pixbuf(Assembly.GetAssembly(typeof(ConfigurationState)), "Ryujinx.Ui.Common.Resources.Controller_JoyConPair.svg", 400, 500),
};
}
}
private void ClearValues()
{
- _lStick.Label = "Unbound";
- _lStickUp.Label = "Unbound";
- _lStickDown.Label = "Unbound";
- _lStickLeft.Label = "Unbound";
- _lStickRight.Label = "Unbound";
- _lStickButton.Label = "Unbound";
- _dpadUp.Label = "Unbound";
- _dpadDown.Label = "Unbound";
- _dpadLeft.Label = "Unbound";
- _dpadRight.Label = "Unbound";
- _minus.Label = "Unbound";
- _l.Label = "Unbound";
- _zL.Label = "Unbound";
- _lSl.Label = "Unbound";
- _lSr.Label = "Unbound";
- _rStick.Label = "Unbound";
- _rStickUp.Label = "Unbound";
- _rStickDown.Label = "Unbound";
- _rStickLeft.Label = "Unbound";
- _rStickRight.Label = "Unbound";
- _rStickButton.Label = "Unbound";
- _a.Label = "Unbound";
- _b.Label = "Unbound";
- _x.Label = "Unbound";
- _y.Label = "Unbound";
- _plus.Label = "Unbound";
- _r.Label = "Unbound";
- _zR.Label = "Unbound";
- _rSl.Label = "Unbound";
- _rSr.Label = "Unbound";
- _controllerStrongRumble.Value = 1;
- _controllerWeakRumble.Value = 1;
- _controllerDeadzoneLeft.Value = 0;
- _controllerDeadzoneRight.Value = 0;
- _controllerRangeLeft.Value = 1;
- _controllerRangeRight.Value = 1;
+ _lStick.Label = "Unbound";
+ _lStickUp.Label = "Unbound";
+ _lStickDown.Label = "Unbound";
+ _lStickLeft.Label = "Unbound";
+ _lStickRight.Label = "Unbound";
+ _lStickButton.Label = "Unbound";
+ _dpadUp.Label = "Unbound";
+ _dpadDown.Label = "Unbound";
+ _dpadLeft.Label = "Unbound";
+ _dpadRight.Label = "Unbound";
+ _minus.Label = "Unbound";
+ _l.Label = "Unbound";
+ _zL.Label = "Unbound";
+ _lSl.Label = "Unbound";
+ _lSr.Label = "Unbound";
+ _rStick.Label = "Unbound";
+ _rStickUp.Label = "Unbound";
+ _rStickDown.Label = "Unbound";
+ _rStickLeft.Label = "Unbound";
+ _rStickRight.Label = "Unbound";
+ _rStickButton.Label = "Unbound";
+ _a.Label = "Unbound";
+ _b.Label = "Unbound";
+ _x.Label = "Unbound";
+ _y.Label = "Unbound";
+ _plus.Label = "Unbound";
+ _r.Label = "Unbound";
+ _zR.Label = "Unbound";
+ _rSl.Label = "Unbound";
+ _rSr.Label = "Unbound";
+ _controllerStrongRumble.Value = 1;
+ _controllerWeakRumble.Value = 1;
+ _controllerDeadzoneLeft.Value = 0;
+ _controllerDeadzoneRight.Value = 0;
+ _controllerRangeLeft.Value = 1;
+ _controllerRangeRight.Value = 1;
_controllerTriggerThreshold.Value = 0;
- _mirrorInput.Active = false;
- _enableMotion.Active = false;
- _enableCemuHook.Active = false;
- _slotNumber.Value = 0;
- _altSlotNumber.Value = 0;
- _sensitivity.Value = 100;
- _gyroDeadzone.Value = 1;
- _dsuServerHost.Buffer.Text = "";
- _dsuServerPort.Buffer.Text = "";
- _enableRumble.Active = false;
+ _mirrorInput.Active = false;
+ _enableMotion.Active = false;
+ _enableCemuHook.Active = false;
+ _slotNumber.Value = 0;
+ _altSlotNumber.Value = 0;
+ _sensitivity.Value = 100;
+ _gyroDeadzone.Value = 1;
+ _dsuServerHost.Buffer.Text = "";
+ _dsuServerPort.Buffer.Text = "";
+ _enableRumble.Active = false;
}
private void SetValues(InputConfig config)
@@ -454,34 +448,34 @@ namespace Ryujinx.Ui.Windows
: ControllerType.ProController.ToString());
}
- _lStickUp.Label = keyboardConfig.LeftJoyconStick.StickUp.ToString();
- _lStickDown.Label = keyboardConfig.LeftJoyconStick.StickDown.ToString();
- _lStickLeft.Label = keyboardConfig.LeftJoyconStick.StickLeft.ToString();
- _lStickRight.Label = keyboardConfig.LeftJoyconStick.StickRight.ToString();
- _lStickButton.Label = keyboardConfig.LeftJoyconStick.StickButton.ToString();
- _dpadUp.Label = keyboardConfig.LeftJoycon.DpadUp.ToString();
- _dpadDown.Label = keyboardConfig.LeftJoycon.DpadDown.ToString();
- _dpadLeft.Label = keyboardConfig.LeftJoycon.DpadLeft.ToString();
- _dpadRight.Label = keyboardConfig.LeftJoycon.DpadRight.ToString();
- _minus.Label = keyboardConfig.LeftJoycon.ButtonMinus.ToString();
- _l.Label = keyboardConfig.LeftJoycon.ButtonL.ToString();
- _zL.Label = keyboardConfig.LeftJoycon.ButtonZl.ToString();
- _lSl.Label = keyboardConfig.LeftJoycon.ButtonSl.ToString();
- _lSr.Label = keyboardConfig.LeftJoycon.ButtonSr.ToString();
- _rStickUp.Label = keyboardConfig.RightJoyconStick.StickUp.ToString();
- _rStickDown.Label = keyboardConfig.RightJoyconStick.StickDown.ToString();
- _rStickLeft.Label = keyboardConfig.RightJoyconStick.StickLeft.ToString();
- _rStickRight.Label = keyboardConfig.RightJoyconStick.StickRight.ToString();
- _rStickButton.Label = keyboardConfig.RightJoyconStick.StickButton.ToString();
- _a.Label = keyboardConfig.RightJoycon.ButtonA.ToString();
- _b.Label = keyboardConfig.RightJoycon.ButtonB.ToString();
- _x.Label = keyboardConfig.RightJoycon.ButtonX.ToString();
- _y.Label = keyboardConfig.RightJoycon.ButtonY.ToString();
- _plus.Label = keyboardConfig.RightJoycon.ButtonPlus.ToString();
- _r.Label = keyboardConfig.RightJoycon.ButtonR.ToString();
- _zR.Label = keyboardConfig.RightJoycon.ButtonZr.ToString();
- _rSl.Label = keyboardConfig.RightJoycon.ButtonSl.ToString();
- _rSr.Label = keyboardConfig.RightJoycon.ButtonSr.ToString();
+ _lStickUp.Label = keyboardConfig.LeftJoyconStick.StickUp.ToString();
+ _lStickDown.Label = keyboardConfig.LeftJoyconStick.StickDown.ToString();
+ _lStickLeft.Label = keyboardConfig.LeftJoyconStick.StickLeft.ToString();
+ _lStickRight.Label = keyboardConfig.LeftJoyconStick.StickRight.ToString();
+ _lStickButton.Label = keyboardConfig.LeftJoyconStick.StickButton.ToString();
+ _dpadUp.Label = keyboardConfig.LeftJoycon.DpadUp.ToString();
+ _dpadDown.Label = keyboardConfig.LeftJoycon.DpadDown.ToString();
+ _dpadLeft.Label = keyboardConfig.LeftJoycon.DpadLeft.ToString();
+ _dpadRight.Label = keyboardConfig.LeftJoycon.DpadRight.ToString();
+ _minus.Label = keyboardConfig.LeftJoycon.ButtonMinus.ToString();
+ _l.Label = keyboardConfig.LeftJoycon.ButtonL.ToString();
+ _zL.Label = keyboardConfig.LeftJoycon.ButtonZl.ToString();
+ _lSl.Label = keyboardConfig.LeftJoycon.ButtonSl.ToString();
+ _lSr.Label = keyboardConfig.LeftJoycon.ButtonSr.ToString();
+ _rStickUp.Label = keyboardConfig.RightJoyconStick.StickUp.ToString();
+ _rStickDown.Label = keyboardConfig.RightJoyconStick.StickDown.ToString();
+ _rStickLeft.Label = keyboardConfig.RightJoyconStick.StickLeft.ToString();
+ _rStickRight.Label = keyboardConfig.RightJoyconStick.StickRight.ToString();
+ _rStickButton.Label = keyboardConfig.RightJoyconStick.StickButton.ToString();
+ _a.Label = keyboardConfig.RightJoycon.ButtonA.ToString();
+ _b.Label = keyboardConfig.RightJoycon.ButtonB.ToString();
+ _x.Label = keyboardConfig.RightJoycon.ButtonX.ToString();
+ _y.Label = keyboardConfig.RightJoycon.ButtonY.ToString();
+ _plus.Label = keyboardConfig.RightJoycon.ButtonPlus.ToString();
+ _r.Label = keyboardConfig.RightJoycon.ButtonR.ToString();
+ _zR.Label = keyboardConfig.RightJoycon.ButtonZr.ToString();
+ _rSl.Label = keyboardConfig.RightJoycon.ButtonSl.ToString();
+ _rSr.Label = keyboardConfig.RightJoycon.ButtonSr.ToString();
break;
case StandardControllerInputConfig controllerConfig:
@@ -492,63 +486,63 @@ namespace Ryujinx.Ui.Windows
: ControllerType.ProController.ToString());
}
- _lStick.Label = controllerConfig.LeftJoyconStick.Joystick.ToString();
- _invertLStickX.Active = controllerConfig.LeftJoyconStick.InvertStickX;
- _invertLStickY.Active = controllerConfig.LeftJoyconStick.InvertStickY;
- _rotateL90CW.Active = controllerConfig.LeftJoyconStick.Rotate90CW;
- _lStickButton.Label = controllerConfig.LeftJoyconStick.StickButton.ToString();
- _dpadUp.Label = controllerConfig.LeftJoycon.DpadUp.ToString();
- _dpadDown.Label = controllerConfig.LeftJoycon.DpadDown.ToString();
- _dpadLeft.Label = controllerConfig.LeftJoycon.DpadLeft.ToString();
- _dpadRight.Label = controllerConfig.LeftJoycon.DpadRight.ToString();
- _minus.Label = controllerConfig.LeftJoycon.ButtonMinus.ToString();
- _l.Label = controllerConfig.LeftJoycon.ButtonL.ToString();
- _zL.Label = controllerConfig.LeftJoycon.ButtonZl.ToString();
- _lSl.Label = controllerConfig.LeftJoycon.ButtonSl.ToString();
- _lSr.Label = controllerConfig.LeftJoycon.ButtonSr.ToString();
- _rStick.Label = controllerConfig.RightJoyconStick.Joystick.ToString();
- _invertRStickX.Active = controllerConfig.RightJoyconStick.InvertStickX;
- _invertRStickY.Active = controllerConfig.RightJoyconStick.InvertStickY;
- _rotateR90CW.Active = controllerConfig.RightJoyconStick.Rotate90CW;
- _rStickButton.Label = controllerConfig.RightJoyconStick.StickButton.ToString();
- _a.Label = controllerConfig.RightJoycon.ButtonA.ToString();
- _b.Label = controllerConfig.RightJoycon.ButtonB.ToString();
- _x.Label = controllerConfig.RightJoycon.ButtonX.ToString();
- _y.Label = controllerConfig.RightJoycon.ButtonY.ToString();
- _plus.Label = controllerConfig.RightJoycon.ButtonPlus.ToString();
- _r.Label = controllerConfig.RightJoycon.ButtonR.ToString();
- _zR.Label = controllerConfig.RightJoycon.ButtonZr.ToString();
- _rSl.Label = controllerConfig.RightJoycon.ButtonSl.ToString();
- _rSr.Label = controllerConfig.RightJoycon.ButtonSr.ToString();
- _controllerStrongRumble.Value = controllerConfig.Rumble.StrongRumble;
- _controllerWeakRumble.Value = controllerConfig.Rumble.WeakRumble;
- _enableRumble.Active = controllerConfig.Rumble.EnableRumble;
- _controllerDeadzoneLeft.Value = controllerConfig.DeadzoneLeft;
- _controllerDeadzoneRight.Value = controllerConfig.DeadzoneRight;
- _controllerRangeLeft.Value = controllerConfig.RangeLeft;
- _controllerRangeRight.Value = controllerConfig.RangeRight;
+ _lStick.Label = controllerConfig.LeftJoyconStick.Joystick.ToString();
+ _invertLStickX.Active = controllerConfig.LeftJoyconStick.InvertStickX;
+ _invertLStickY.Active = controllerConfig.LeftJoyconStick.InvertStickY;
+ _rotateL90CW.Active = controllerConfig.LeftJoyconStick.Rotate90CW;
+ _lStickButton.Label = controllerConfig.LeftJoyconStick.StickButton.ToString();
+ _dpadUp.Label = controllerConfig.LeftJoycon.DpadUp.ToString();
+ _dpadDown.Label = controllerConfig.LeftJoycon.DpadDown.ToString();
+ _dpadLeft.Label = controllerConfig.LeftJoycon.DpadLeft.ToString();
+ _dpadRight.Label = controllerConfig.LeftJoycon.DpadRight.ToString();
+ _minus.Label = controllerConfig.LeftJoycon.ButtonMinus.ToString();
+ _l.Label = controllerConfig.LeftJoycon.ButtonL.ToString();
+ _zL.Label = controllerConfig.LeftJoycon.ButtonZl.ToString();
+ _lSl.Label = controllerConfig.LeftJoycon.ButtonSl.ToString();
+ _lSr.Label = controllerConfig.LeftJoycon.ButtonSr.ToString();
+ _rStick.Label = controllerConfig.RightJoyconStick.Joystick.ToString();
+ _invertRStickX.Active = controllerConfig.RightJoyconStick.InvertStickX;
+ _invertRStickY.Active = controllerConfig.RightJoyconStick.InvertStickY;
+ _rotateR90Cw.Active = controllerConfig.RightJoyconStick.Rotate90CW;
+ _rStickButton.Label = controllerConfig.RightJoyconStick.StickButton.ToString();
+ _a.Label = controllerConfig.RightJoycon.ButtonA.ToString();
+ _b.Label = controllerConfig.RightJoycon.ButtonB.ToString();
+ _x.Label = controllerConfig.RightJoycon.ButtonX.ToString();
+ _y.Label = controllerConfig.RightJoycon.ButtonY.ToString();
+ _plus.Label = controllerConfig.RightJoycon.ButtonPlus.ToString();
+ _r.Label = controllerConfig.RightJoycon.ButtonR.ToString();
+ _zR.Label = controllerConfig.RightJoycon.ButtonZr.ToString();
+ _rSl.Label = controllerConfig.RightJoycon.ButtonSl.ToString();
+ _rSr.Label = controllerConfig.RightJoycon.ButtonSr.ToString();
+ _controllerStrongRumble.Value = controllerConfig.Rumble.StrongRumble;
+ _controllerWeakRumble.Value = controllerConfig.Rumble.WeakRumble;
+ _enableRumble.Active = controllerConfig.Rumble.EnableRumble;
+ _controllerDeadzoneLeft.Value = controllerConfig.DeadzoneLeft;
+ _controllerDeadzoneRight.Value = controllerConfig.DeadzoneRight;
+ _controllerRangeLeft.Value = controllerConfig.RangeLeft;
+ _controllerRangeRight.Value = controllerConfig.RangeRight;
_controllerTriggerThreshold.Value = controllerConfig.TriggerThreshold;
- _sensitivity.Value = controllerConfig.Motion.Sensitivity;
- _gyroDeadzone.Value = controllerConfig.Motion.GyroDeadzone;
- _enableMotion.Active = controllerConfig.Motion.EnableMotion;
- _enableCemuHook.Active = controllerConfig.Motion.MotionBackend == MotionInputBackendType.CemuHook;
+ _sensitivity.Value = controllerConfig.Motion.Sensitivity;
+ _gyroDeadzone.Value = controllerConfig.Motion.GyroDeadzone;
+ _enableMotion.Active = controllerConfig.Motion.EnableMotion;
+ _enableCemuHook.Active = controllerConfig.Motion.MotionBackend == MotionInputBackendType.CemuHook;
// If both stick ranges are 0 (usually indicative of an outdated profile load) then both sticks will be set to 1.0.
if (_controllerRangeLeft.Value <= 0.0 && _controllerRangeRight.Value <= 0.0)
{
- _controllerRangeLeft.Value = 1.0;
+ _controllerRangeLeft.Value = 1.0;
_controllerRangeRight.Value = 1.0;
-
+
Logger.Info?.Print(LogClass.Application, $"{config.PlayerIndex} stick range reset. Save the profile now to update your configuration");
}
if (controllerConfig.Motion is CemuHookMotionConfigController cemuHookMotionConfig)
{
- _slotNumber.Value = cemuHookMotionConfig.Slot;
- _altSlotNumber.Value = cemuHookMotionConfig.AltSlot;
- _mirrorInput.Active = cemuHookMotionConfig.MirrorInput;
- _dsuServerHost.Buffer.Text = cemuHookMotionConfig.DsuServerHost;
- _dsuServerPort.Buffer.Text = cemuHookMotionConfig.DsuServerPort.ToString();
+ _slotNumber.Value = cemuHookMotionConfig.Slot;
+ _altSlotNumber.Value = cemuHookMotionConfig.AltSlot;
+ _mirrorInput.Active = cemuHookMotionConfig.MirrorInput;
+ _dsuServerHost.Buffer.Text = cemuHookMotionConfig.DsuServerHost;
+ _dsuServerPort.Buffer.Text = cemuHookMotionConfig.DsuServerPort.ToString();
}
break;
@@ -559,6 +553,7 @@ namespace Ryujinx.Ui.Windows
{
if (_inputDevice.ActiveId.StartsWith("keyboard"))
{
+#pragma warning disable CA1806, IDE0055 // Disable formatting
Enum.TryParse(_lStickUp.Label, out Key lStickUp);
Enum.TryParse(_lStickDown.Label, out Key lStickDown);
Enum.TryParse(_lStickLeft.Label, out Key lStickLeft);
@@ -588,60 +583,62 @@ namespace Ryujinx.Ui.Windows
Enum.TryParse(_zR.Label, out Key rButtonZr);
Enum.TryParse(_rSl.Label, out Key rButtonSl);
Enum.TryParse(_rSr.Label, out Key rButtonSr);
+#pragma warning restore CA1806, IDE0055
return new StandardKeyboardInputConfig
{
- Backend = InputBackendType.WindowKeyboard,
- Version = InputConfig.CurrentVersion,
- Id = _inputDevice.ActiveId.Split("/")[1],
- ControllerType = Enum.Parse<ControllerType>(_controllerType.ActiveId),
- PlayerIndex = _playerIndex,
- LeftJoycon = new LeftJoyconCommonConfig<Key>
+ Backend = InputBackendType.WindowKeyboard,
+ Version = InputConfig.CurrentVersion,
+ Id = _inputDevice.ActiveId.Split("/")[1],
+ ControllerType = Enum.Parse<ControllerType>(_controllerType.ActiveId),
+ PlayerIndex = _playerIndex,
+ LeftJoycon = new LeftJoyconCommonConfig<Key>
{
- ButtonMinus = lButtonMinus,
- ButtonL = lButtonL,
- ButtonZl = lButtonZl,
- ButtonSl = lButtonSl,
- ButtonSr = lButtonSr,
- DpadUp = lDPadUp,
- DpadDown = lDPadDown,
- DpadLeft = lDPadLeft,
- DpadRight = lDPadRight
+ ButtonMinus = lButtonMinus,
+ ButtonL = lButtonL,
+ ButtonZl = lButtonZl,
+ ButtonSl = lButtonSl,
+ ButtonSr = lButtonSr,
+ DpadUp = lDPadUp,
+ DpadDown = lDPadDown,
+ DpadLeft = lDPadLeft,
+ DpadRight = lDPadRight,
},
LeftJoyconStick = new JoyconConfigKeyboardStick<Key>
{
- StickUp = lStickUp,
- StickDown = lStickDown,
- StickLeft = lStickLeft,
- StickRight = lStickRight,
- StickButton = lStickButton,
+ StickUp = lStickUp,
+ StickDown = lStickDown,
+ StickLeft = lStickLeft,
+ StickRight = lStickRight,
+ StickButton = lStickButton,
},
- RightJoycon = new RightJoyconCommonConfig<Key>
+ RightJoycon = new RightJoyconCommonConfig<Key>
{
- ButtonA = rButtonA,
- ButtonB = rButtonB,
- ButtonX = rButtonX,
- ButtonY = rButtonY,
- ButtonPlus = rButtonPlus,
- ButtonR = rButtonR,
- ButtonZr = rButtonZr,
- ButtonSl = rButtonSl,
- ButtonSr = rButtonSr
+ ButtonA = rButtonA,
+ ButtonB = rButtonB,
+ ButtonX = rButtonX,
+ ButtonY = rButtonY,
+ ButtonPlus = rButtonPlus,
+ ButtonR = rButtonR,
+ ButtonZr = rButtonZr,
+ ButtonSl = rButtonSl,
+ ButtonSr = rButtonSr,
},
RightJoyconStick = new JoyconConfigKeyboardStick<Key>
{
- StickUp = rStickUp,
- StickDown = rStickDown,
- StickLeft = rStickLeft,
- StickRight = rStickRight,
- StickButton = rStickButton,
+ StickUp = rStickUp,
+ StickDown = rStickDown,
+ StickLeft = rStickLeft,
+ StickRight = rStickRight,
+ StickButton = rStickButton,
},
};
}
-
+
if (_inputDevice.ActiveId.StartsWith("controller"))
{
- Enum.TryParse(_lStick.Label, out ConfigStickInputId lStick);
+#pragma warning disable CA1806, IDE0055 // Disable formatting
+ Enum.TryParse(_lStick.Label, out ConfigStickInputId lStick);
Enum.TryParse(_lStickButton.Label, out ConfigGamepadInputId lStickButton);
Enum.TryParse(_minus.Label, out ConfigGamepadInputId lButtonMinus);
Enum.TryParse(_l.Label, out ConfigGamepadInputId lButtonL);
@@ -653,7 +650,7 @@ namespace Ryujinx.Ui.Windows
Enum.TryParse(_dpadLeft.Label, out ConfigGamepadInputId lDPadLeft);
Enum.TryParse(_dpadRight.Label, out ConfigGamepadInputId lDPadRight);
- Enum.TryParse(_rStick.Label, out ConfigStickInputId rStick);
+ Enum.TryParse(_rStick.Label, out ConfigStickInputId rStick);
Enum.TryParse(_rStickButton.Label, out ConfigGamepadInputId rStickButton);
Enum.TryParse(_a.Label, out ConfigGamepadInputId rButtonA);
Enum.TryParse(_b.Label, out ConfigGamepadInputId rButtonB);
@@ -666,94 +663,95 @@ namespace Ryujinx.Ui.Windows
Enum.TryParse(_rSr.Label, out ConfigGamepadInputId rButtonSr);
int.TryParse(_dsuServerPort.Buffer.Text, out int port);
+#pragma warning restore CA1806, IDE0055
MotionConfigController motionConfig;
if (_enableCemuHook.Active)
{
- motionConfig = new CemuHookMotionConfigController
+ motionConfig = new CemuHookMotionConfigController
{
MotionBackend = MotionInputBackendType.CemuHook,
- EnableMotion = _enableMotion.Active,
- Sensitivity = (int)_sensitivity.Value,
- GyroDeadzone = _gyroDeadzone.Value,
- MirrorInput = _mirrorInput.Active,
- Slot = (int)_slotNumber.Value,
- AltSlot = (int)_altSlotNumber.Value,
+ EnableMotion = _enableMotion.Active,
+ Sensitivity = (int)_sensitivity.Value,
+ GyroDeadzone = _gyroDeadzone.Value,
+ MirrorInput = _mirrorInput.Active,
+ Slot = (int)_slotNumber.Value,
+ AltSlot = (int)_altSlotNumber.Value,
DsuServerHost = _dsuServerHost.Buffer.Text,
- DsuServerPort = port
+ DsuServerPort = port,
};
}
else
{
- motionConfig = new StandardMotionConfigController
+ motionConfig = new StandardMotionConfigController
{
MotionBackend = MotionInputBackendType.GamepadDriver,
- EnableMotion = _enableMotion.Active,
- Sensitivity = (int)_sensitivity.Value,
- GyroDeadzone = _gyroDeadzone.Value,
+ EnableMotion = _enableMotion.Active,
+ Sensitivity = (int)_sensitivity.Value,
+ GyroDeadzone = _gyroDeadzone.Value,
};
}
return new StandardControllerInputConfig
{
- Backend = InputBackendType.GamepadSDL2,
- Version = InputConfig.CurrentVersion,
- Id = _inputDevice.ActiveId.Split("/")[1].Split(" ")[0],
- ControllerType = Enum.Parse<ControllerType>(_controllerType.ActiveId),
- PlayerIndex = _playerIndex,
- DeadzoneLeft = (float)_controllerDeadzoneLeft.Value,
- DeadzoneRight = (float)_controllerDeadzoneRight.Value,
- RangeLeft = (float)_controllerRangeLeft.Value,
- RangeRight = (float)_controllerRangeRight.Value,
+ Backend = InputBackendType.GamepadSDL2,
+ Version = InputConfig.CurrentVersion,
+ Id = _inputDevice.ActiveId.Split("/")[1].Split(" ")[0],
+ ControllerType = Enum.Parse<ControllerType>(_controllerType.ActiveId),
+ PlayerIndex = _playerIndex,
+ DeadzoneLeft = (float)_controllerDeadzoneLeft.Value,
+ DeadzoneRight = (float)_controllerDeadzoneRight.Value,
+ RangeLeft = (float)_controllerRangeLeft.Value,
+ RangeRight = (float)_controllerRangeRight.Value,
TriggerThreshold = (float)_controllerTriggerThreshold.Value,
- LeftJoycon = new LeftJoyconCommonConfig<ConfigGamepadInputId>
+ LeftJoycon = new LeftJoyconCommonConfig<ConfigGamepadInputId>
{
- ButtonMinus = lButtonMinus,
- ButtonL = lButtonL,
- ButtonZl = lButtonZl,
- ButtonSl = lButtonSl,
- ButtonSr = lButtonSr,
- DpadUp = lDPadUp,
- DpadDown = lDPadDown,
- DpadLeft = lDPadLeft,
- DpadRight = lDPadRight
+ ButtonMinus = lButtonMinus,
+ ButtonL = lButtonL,
+ ButtonZl = lButtonZl,
+ ButtonSl = lButtonSl,
+ ButtonSr = lButtonSr,
+ DpadUp = lDPadUp,
+ DpadDown = lDPadDown,
+ DpadLeft = lDPadLeft,
+ DpadRight = lDPadRight,
},
LeftJoyconStick = new JoyconConfigControllerStick<ConfigGamepadInputId, ConfigStickInputId>
{
InvertStickX = _invertLStickX.Active,
- Joystick = lStick,
+ Joystick = lStick,
InvertStickY = _invertLStickY.Active,
- StickButton = lStickButton,
- Rotate90CW = _rotateL90CW.Active,
+ StickButton = lStickButton,
+ Rotate90CW = _rotateL90CW.Active,
},
- RightJoycon = new RightJoyconCommonConfig<ConfigGamepadInputId>
+ RightJoycon = new RightJoyconCommonConfig<ConfigGamepadInputId>
{
- ButtonA = rButtonA,
- ButtonB = rButtonB,
- ButtonX = rButtonX,
- ButtonY = rButtonY,
- ButtonPlus = rButtonPlus,
- ButtonR = rButtonR,
- ButtonZr = rButtonZr,
- ButtonSl = rButtonSl,
- ButtonSr = rButtonSr
+ ButtonA = rButtonA,
+ ButtonB = rButtonB,
+ ButtonX = rButtonX,
+ ButtonY = rButtonY,
+ ButtonPlus = rButtonPlus,
+ ButtonR = rButtonR,
+ ButtonZr = rButtonZr,
+ ButtonSl = rButtonSl,
+ ButtonSr = rButtonSr,
},
RightJoyconStick = new JoyconConfigControllerStick<ConfigGamepadInputId, ConfigStickInputId>
{
InvertStickX = _invertRStickX.Active,
- Joystick = rStick,
+ Joystick = rStick,
InvertStickY = _invertRStickY.Active,
- StickButton = rStickButton,
- Rotate90CW = _rotateR90CW.Active,
+ StickButton = rStickButton,
+ Rotate90CW = _rotateR90Cw.Active,
},
- Motion = motionConfig,
- Rumble = new RumbleConfigController
+ Motion = motionConfig,
+ Rumble = new RumbleConfigController
{
StrongRumble = (float)_controllerStrongRumble.Value,
- WeakRumble = (float)_controllerWeakRumble.Value,
- EnableRumble = _enableRumble.Active
- }
+ WeakRumble = (float)_controllerWeakRumble.Value,
+ EnableRumble = _enableRumble.Active,
+ },
};
}
@@ -856,7 +854,7 @@ namespace Ryujinx.Ui.Windows
{
throw new Exception("Controller not supported");
}
-
+
return assigner;
}
@@ -880,7 +878,7 @@ namespace Ryujinx.Ui.Windows
// Open GTK3 keyboard for cancel operations
IKeyboard keyboard = (IKeyboard)_gtk3KeyboardDriver.GetGamepad("0");
- Thread inputThread = new Thread(() =>
+ Thread inputThread = new(() =>
{
assigner.Initialize();
@@ -916,10 +914,11 @@ namespace Ryujinx.Ui.Windows
button.Active = false;
_isWaitingForInput = false;
});
- });
-
- inputThread.Name = "GUI.InputThread";
- inputThread.IsBackground = true;
+ })
+ {
+ Name = "GUI.InputThread",
+ IsBackground = true,
+ };
inputThread.Start();
}
@@ -950,7 +949,7 @@ namespace Ryujinx.Ui.Windows
Directory.CreateDirectory(basePath);
}
- if (_inputDevice.ActiveId == null|| _inputDevice.ActiveId.Equals("disabled"))
+ if (_inputDevice.ActiveId == null || _inputDevice.ActiveId.Equals("disabled"))
{
_profile.Append("default", "None");
}
@@ -971,10 +970,13 @@ namespace Ryujinx.Ui.Windows
{
((ToggleButton)sender).SetStateFlags(StateFlags.Normal, true);
- if (_inputDevice.ActiveId == "disabled" || _profile.ActiveId == null) return;
+ if (_inputDevice.ActiveId == "disabled" || _profile.ActiveId == null)
+ {
+ return;
+ }
InputConfig config = null;
- int pos = _profile.Active;
+ int pos = _profile.Active;
if (_profile.ActiveId == "default")
{
@@ -982,53 +984,53 @@ namespace Ryujinx.Ui.Windows
{
config = new StandardKeyboardInputConfig
{
- Version = InputConfig.CurrentVersion,
- Backend = InputBackendType.WindowKeyboard,
- Id = null,
- ControllerType = ControllerType.ProController,
- LeftJoycon = new LeftJoyconCommonConfig<Key>
+ Version = InputConfig.CurrentVersion,
+ Backend = InputBackendType.WindowKeyboard,
+ Id = null,
+ ControllerType = ControllerType.ProController,
+ LeftJoycon = new LeftJoyconCommonConfig<Key>
{
- DpadUp = Key.Up,
- DpadDown = Key.Down,
- DpadLeft = Key.Left,
- DpadRight = Key.Right,
- ButtonMinus = Key.Minus,
- ButtonL = Key.E,
- ButtonZl = Key.Q,
- ButtonSl = Key.Unbound,
- ButtonSr = Key.Unbound
+ DpadUp = Key.Up,
+ DpadDown = Key.Down,
+ DpadLeft = Key.Left,
+ DpadRight = Key.Right,
+ ButtonMinus = Key.Minus,
+ ButtonL = Key.E,
+ ButtonZl = Key.Q,
+ ButtonSl = Key.Unbound,
+ ButtonSr = Key.Unbound,
},
- LeftJoyconStick = new JoyconConfigKeyboardStick<Key>
+ LeftJoyconStick = new JoyconConfigKeyboardStick<Key>
{
- StickUp = Key.W,
- StickDown = Key.S,
- StickLeft = Key.A,
- StickRight = Key.D,
- StickButton = Key.F,
+ StickUp = Key.W,
+ StickDown = Key.S,
+ StickLeft = Key.A,
+ StickRight = Key.D,
+ StickButton = Key.F,
},
- RightJoycon = new RightJoyconCommonConfig<Key>
+ RightJoycon = new RightJoyconCommonConfig<Key>
{
- ButtonA = Key.Z,
- ButtonB = Key.X,
- ButtonX = Key.C,
- ButtonY = Key.V,
- ButtonPlus = Key.Plus,
- ButtonR = Key.U,
- ButtonZr = Key.O,
- ButtonSl = Key.Unbound,
- ButtonSr = Key.Unbound
+ ButtonA = Key.Z,
+ ButtonB = Key.X,
+ ButtonX = Key.C,
+ ButtonY = Key.V,
+ ButtonPlus = Key.Plus,
+ ButtonR = Key.U,
+ ButtonZr = Key.O,
+ ButtonSl = Key.Unbound,
+ ButtonSr = Key.Unbound,
},
RightJoyconStick = new JoyconConfigKeyboardStick<Key>
{
- StickUp = Key.I,
- StickDown = Key.K,
- StickLeft = Key.J,
- StickRight = Key.L,
- StickButton = Key.H,
- }
+ StickUp = Key.I,
+ StickDown = Key.K,
+ StickLeft = Key.J,
+ StickRight = Key.L,
+ StickButton = Key.H,
+ },
};
}
else if (_inputDevice.ActiveId.StartsWith("controller"))
@@ -1037,72 +1039,72 @@ namespace Ryujinx.Ui.Windows
config = new StandardControllerInputConfig
{
- Version = InputConfig.CurrentVersion,
- Backend = InputBackendType.GamepadSDL2,
- Id = null,
- ControllerType = ControllerType.JoyconPair,
- DeadzoneLeft = 0.1f,
- DeadzoneRight = 0.1f,
- RangeLeft = 1.0f,
- RangeRight = 1.0f,
+ Version = InputConfig.CurrentVersion,
+ Backend = InputBackendType.GamepadSDL2,
+ Id = null,
+ ControllerType = ControllerType.JoyconPair,
+ DeadzoneLeft = 0.1f,
+ DeadzoneRight = 0.1f,
+ RangeLeft = 1.0f,
+ RangeRight = 1.0f,
TriggerThreshold = 0.5f,
LeftJoycon = new LeftJoyconCommonConfig<ConfigGamepadInputId>
{
- DpadUp = ConfigGamepadInputId.DpadUp,
- DpadDown = ConfigGamepadInputId.DpadDown,
- DpadLeft = ConfigGamepadInputId.DpadLeft,
- DpadRight = ConfigGamepadInputId.DpadRight,
- ButtonMinus = ConfigGamepadInputId.Minus,
- ButtonL = ConfigGamepadInputId.LeftShoulder,
- ButtonZl = ConfigGamepadInputId.LeftTrigger,
- ButtonSl = ConfigGamepadInputId.Unbound,
- ButtonSr = ConfigGamepadInputId.Unbound,
+ DpadUp = ConfigGamepadInputId.DpadUp,
+ DpadDown = ConfigGamepadInputId.DpadDown,
+ DpadLeft = ConfigGamepadInputId.DpadLeft,
+ DpadRight = ConfigGamepadInputId.DpadRight,
+ ButtonMinus = ConfigGamepadInputId.Minus,
+ ButtonL = ConfigGamepadInputId.LeftShoulder,
+ ButtonZl = ConfigGamepadInputId.LeftTrigger,
+ ButtonSl = ConfigGamepadInputId.Unbound,
+ ButtonSr = ConfigGamepadInputId.Unbound,
},
LeftJoyconStick = new JoyconConfigControllerStick<ConfigGamepadInputId, ConfigStickInputId>
{
- Joystick = ConfigStickInputId.Left,
- StickButton = ConfigGamepadInputId.LeftStick,
+ Joystick = ConfigStickInputId.Left,
+ StickButton = ConfigGamepadInputId.LeftStick,
InvertStickX = false,
InvertStickY = false,
- Rotate90CW = false,
+ Rotate90CW = false,
},
RightJoycon = new RightJoyconCommonConfig<ConfigGamepadInputId>
{
- ButtonA = isNintendoStyle ? ConfigGamepadInputId.A : ConfigGamepadInputId.B,
- ButtonB = isNintendoStyle ? ConfigGamepadInputId.B : ConfigGamepadInputId.A,
- ButtonX = isNintendoStyle ? ConfigGamepadInputId.X : ConfigGamepadInputId.Y,
- ButtonY = isNintendoStyle ? ConfigGamepadInputId.Y : ConfigGamepadInputId.X,
- ButtonPlus = ConfigGamepadInputId.Plus,
- ButtonR = ConfigGamepadInputId.RightShoulder,
- ButtonZr = ConfigGamepadInputId.RightTrigger,
- ButtonSl = ConfigGamepadInputId.Unbound,
- ButtonSr = ConfigGamepadInputId.Unbound,
+ ButtonA = isNintendoStyle ? ConfigGamepadInputId.A : ConfigGamepadInputId.B,
+ ButtonB = isNintendoStyle ? ConfigGamepadInputId.B : ConfigGamepadInputId.A,
+ ButtonX = isNintendoStyle ? ConfigGamepadInputId.X : ConfigGamepadInputId.Y,
+ ButtonY = isNintendoStyle ? ConfigGamepadInputId.Y : ConfigGamepadInputId.X,
+ ButtonPlus = ConfigGamepadInputId.Plus,
+ ButtonR = ConfigGamepadInputId.RightShoulder,
+ ButtonZr = ConfigGamepadInputId.RightTrigger,
+ ButtonSl = ConfigGamepadInputId.Unbound,
+ ButtonSr = ConfigGamepadInputId.Unbound,
},
RightJoyconStick = new JoyconConfigControllerStick<ConfigGamepadInputId, ConfigStickInputId>
{
- Joystick = ConfigStickInputId.Right,
- StickButton = ConfigGamepadInputId.RightStick,
+ Joystick = ConfigStickInputId.Right,
+ StickButton = ConfigGamepadInputId.RightStick,
InvertStickX = false,
InvertStickY = false,
- Rotate90CW = false,
+ Rotate90CW = false,
},
Motion = new StandardMotionConfigController
{
MotionBackend = MotionInputBackendType.GamepadDriver,
EnableMotion = true,
- Sensitivity = 100,
+ Sensitivity = 100,
GyroDeadzone = 1,
},
Rumble = new RumbleConfigController
{
StrongRumble = 1f,
- WeakRumble = 1f,
- EnableRumble = false
- }
+ WeakRumble = 1f,
+ EnableRumble = false,
+ },
};
}
}
@@ -1122,7 +1124,7 @@ namespace Ryujinx.Ui.Windows
try
{
- config = JsonHelper.DeserializeFromFile(path, SerializerContext.InputConfig);
+ config = JsonHelper.DeserializeFromFile(path, _serializerContext.InputConfig);
}
catch (JsonException) { }
}
@@ -1134,17 +1136,23 @@ namespace Ryujinx.Ui.Windows
{
((ToggleButton)sender).SetStateFlags(StateFlags.Normal, true);
- if (_inputDevice.ActiveId == "disabled") return;
+ if (_inputDevice.ActiveId == "disabled")
+ {
+ return;
+ }
- InputConfig inputConfig = GetValues();
- ProfileDialog profileDialog = new ProfileDialog();
+ InputConfig inputConfig = GetValues();
+ ProfileDialog profileDialog = new();
- if (inputConfig == null) return;
+ if (inputConfig == null)
+ {
+ return;
+ }
if (profileDialog.Run() == (int)ResponseType.Ok)
{
string path = System.IO.Path.Combine(GetProfileBasePath(), profileDialog.FileName);
- string jsonString = JsonHelper.Serialize(inputConfig, SerializerContext.InputConfig);
+ string jsonString = JsonHelper.Serialize(inputConfig, _serializerContext.InputConfig);
File.WriteAllText(path, jsonString);
}
@@ -1156,9 +1164,12 @@ namespace Ryujinx.Ui.Windows
private void ProfileRemove_Activated(object sender, EventArgs args)
{
- ((ToggleButton) sender).SetStateFlags(StateFlags.Normal, true);
+ ((ToggleButton)sender).SetStateFlags(StateFlags.Normal, true);
- if (_inputDevice.ActiveId == "disabled" || _profile.ActiveId == "default" || _profile.ActiveId == null) return;
+ if (_inputDevice.ActiveId == "disabled" || _profile.ActiveId == "default" || _profile.ActiveId == null)
+ {
+ return;
+ }
MessageDialog confirmDialog = GtkDialog.CreateConfirmationDialog("Deleting Profile", "This action is irreversible, are you sure you want to continue?");
@@ -1200,10 +1211,7 @@ namespace Ryujinx.Ui.Windows
}
}
- if (_mainWindow.RendererWidget != null)
- {
- _mainWindow.RendererWidget.NpadManager.ReloadConfiguration(newConfig, ConfigurationState.Instance.Hid.EnableKeyboard, ConfigurationState.Instance.Hid.EnableMouse);
- }
+ _mainWindow.RendererWidget?.NpadManager.ReloadConfiguration(newConfig, ConfigurationState.Instance.Hid.EnableKeyboard, ConfigurationState.Instance.Hid.EnableMouse);
// Atomically replace and signal input change.
// NOTE: Do not modify InputConfig.Value directly as other code depends on the on-change event.