2022-05-15 13:30:15 +02:00
|
|
|
|
using Avalonia.Controls;
|
|
|
|
|
using Avalonia.Input;
|
|
|
|
|
using Ryujinx.Ava.Common.Locale;
|
|
|
|
|
using Ryujinx.Input;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
|
|
|
|
using AvaKey = Avalonia.Input.Key;
|
|
|
|
|
using Key = Ryujinx.Input.Key;
|
|
|
|
|
|
|
|
|
|
namespace Ryujinx.Ava.Input
|
|
|
|
|
{
|
2022-07-05 20:06:31 +02:00
|
|
|
|
internal class AvaloniaKeyboardDriver : IGamepadDriver
|
2022-05-15 13:30:15 +02:00
|
|
|
|
{
|
|
|
|
|
private static readonly string[] _keyboardIdentifers = new string[1] { "0" };
|
|
|
|
|
private readonly Control _control;
|
|
|
|
|
private readonly HashSet<AvaKey> _pressedKeys;
|
|
|
|
|
|
|
|
|
|
public event EventHandler<KeyEventArgs> KeyPressed;
|
|
|
|
|
public event EventHandler<KeyEventArgs> KeyRelease;
|
2022-05-15 16:02:15 +02:00
|
|
|
|
public event EventHandler<string> TextInput;
|
2022-05-15 13:30:15 +02:00
|
|
|
|
|
|
|
|
|
public string DriverName => "Avalonia";
|
|
|
|
|
|
|
|
|
|
public ReadOnlySpan<string> GamepadsIds => _keyboardIdentifers;
|
|
|
|
|
|
|
|
|
|
public AvaloniaKeyboardDriver(Control control)
|
|
|
|
|
{
|
|
|
|
|
_control = control;
|
|
|
|
|
_pressedKeys = new HashSet<AvaKey>();
|
|
|
|
|
|
|
|
|
|
_control.KeyDown += OnKeyPress;
|
|
|
|
|
_control.KeyUp += OnKeyRelease;
|
|
|
|
|
_control.TextInput += Control_TextInput;
|
|
|
|
|
}
|
|
|
|
|
|
2022-05-15 16:02:15 +02:00
|
|
|
|
private void Control_TextInput(object sender, TextInputEventArgs e)
|
2022-05-15 13:30:15 +02:00
|
|
|
|
{
|
2022-05-15 16:02:15 +02:00
|
|
|
|
TextInput?.Invoke(this, e.Text);
|
2022-05-15 13:30:15 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public event Action<string> OnGamepadConnected
|
|
|
|
|
{
|
|
|
|
|
add { }
|
|
|
|
|
remove { }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public event Action<string> OnGamepadDisconnected
|
|
|
|
|
{
|
|
|
|
|
add { }
|
|
|
|
|
remove { }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void Dispose()
|
|
|
|
|
{
|
|
|
|
|
Dispose(true);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public IGamepad GetGamepad(string id)
|
|
|
|
|
{
|
|
|
|
|
if (!_keyboardIdentifers[0].Equals(id))
|
|
|
|
|
{
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return new AvaloniaKeyboard(this, _keyboardIdentifers[0], LocaleManager.Instance["AllKeyboards"]);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected virtual void Dispose(bool disposing)
|
|
|
|
|
{
|
|
|
|
|
if (disposing)
|
|
|
|
|
{
|
|
|
|
|
_control.KeyUp -= OnKeyPress;
|
|
|
|
|
_control.KeyDown -= OnKeyRelease;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected void OnKeyPress(object sender, KeyEventArgs args)
|
|
|
|
|
{
|
|
|
|
|
AvaKey key = args.Key;
|
|
|
|
|
|
|
|
|
|
_pressedKeys.Add(args.Key);
|
|
|
|
|
|
|
|
|
|
KeyPressed?.Invoke(this, args);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected void OnKeyRelease(object sender, KeyEventArgs args)
|
|
|
|
|
{
|
|
|
|
|
_pressedKeys.Remove(args.Key);
|
|
|
|
|
|
|
|
|
|
KeyRelease?.Invoke(this, args);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
internal bool IsPressed(Key key)
|
|
|
|
|
{
|
|
|
|
|
if (key == Key.Unbound || key == Key.Unknown)
|
|
|
|
|
{
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
AvaloniaMappingHelper.TryGetAvaKey(key, out var nativeKey);
|
|
|
|
|
|
|
|
|
|
return _pressedKeys.Contains(nativeKey);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void ResetKeys()
|
|
|
|
|
{
|
|
|
|
|
_pressedKeys.Clear();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|