1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-07 04:17:18 +08:00
osu-lazer/osu.Game/Screens/Play/HUD/KeyCounterKeyboardTrigger.cs

38 lines
855 B
C#
Raw Normal View History

// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
2018-04-13 18:19:50 +09:00
2018-10-02 12:02:47 +09:00
using osu.Framework.Input.Events;
2018-11-20 16:51:59 +09:00
using osuTK.Input;
2018-04-13 18:19:50 +09:00
namespace osu.Game.Screens.Play.HUD
2018-04-13 18:19:50 +09:00
{
public partial class KeyCounterKeyboardTrigger : InputTrigger
2018-04-13 18:19:50 +09:00
{
public Key Key { get; }
2019-02-28 13:31:40 +09:00
public KeyCounterKeyboardTrigger(Key key)
2019-02-28 13:31:40 +09:00
: base(key.ToString())
2018-04-13 18:19:50 +09:00
{
Key = key;
}
2018-10-02 12:02:47 +09:00
protected override bool OnKeyDown(KeyDownEvent e)
2018-04-13 18:19:50 +09:00
{
if (e.Key == Key)
{
Activate();
}
2018-10-02 12:02:47 +09:00
return base.OnKeyDown(e);
2018-04-13 18:19:50 +09:00
}
protected override void OnKeyUp(KeyUpEvent e)
2018-04-13 18:19:50 +09:00
{
if (e.Key == Key)
Deactivate();
base.OnKeyUp(e);
2018-04-13 18:19:50 +09:00
}
}
}