1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-23 05:27:26 +08:00
osu-lazer/osu.Game/Screens/Play/KeyCounterKeyboard.cs

32 lines
775 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 17:19:50 +08:00
2018-10-02 11:02:47 +08:00
using osu.Framework.Input.Events;
2018-11-20 15:51:59 +08:00
using osuTK.Input;
2018-04-13 17:19:50 +08:00
namespace osu.Game.Screens.Play
{
public class KeyCounterKeyboard : KeyCounter
{
public Key Key { get; }
2019-02-28 12:31:40 +08:00
public KeyCounterKeyboard(Key key)
: base(key.ToString())
2018-04-13 17:19:50 +08:00
{
Key = key;
}
2018-10-02 11:02:47 +08:00
protected override bool OnKeyDown(KeyDownEvent e)
2018-04-13 17:19:50 +08:00
{
2018-10-02 11:02:47 +08:00
if (e.Key == Key) IsLit = true;
return base.OnKeyDown(e);
2018-04-13 17:19:50 +08:00
}
2018-10-02 11:02:47 +08:00
protected override bool OnKeyUp(KeyUpEvent e)
2018-04-13 17:19:50 +08:00
{
2018-10-02 11:02:47 +08:00
if (e.Key == Key) IsLit = false;
return base.OnKeyUp(e);
2018-04-13 17:19:50 +08:00
}
}
}