2019-01-24 08:43:03 +00:00
|
|
|
|
// 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 09:19:50 +00:00
|
|
|
|
|
2018-10-02 03:02:47 +00:00
|
|
|
|
using osu.Framework.Input.Events;
|
2018-11-20 07:51:59 +00:00
|
|
|
|
using osuTK.Input;
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
|
|
|
|
namespace osu.Game.Screens.Play
|
|
|
|
|
{
|
|
|
|
|
public class KeyCounterKeyboard : KeyCounter
|
|
|
|
|
{
|
|
|
|
|
public Key Key { get; }
|
2019-02-28 04:31:40 +00:00
|
|
|
|
|
|
|
|
|
public KeyCounterKeyboard(Key key)
|
|
|
|
|
: base(key.ToString())
|
2018-04-13 09:19:50 +00:00
|
|
|
|
{
|
|
|
|
|
Key = key;
|
|
|
|
|
}
|
|
|
|
|
|
2018-10-02 03:02:47 +00:00
|
|
|
|
protected override bool OnKeyDown(KeyDownEvent e)
|
2018-04-13 09:19:50 +00:00
|
|
|
|
{
|
2019-09-12 06:41:53 +00:00
|
|
|
|
if (e.Key == Key)
|
|
|
|
|
{
|
|
|
|
|
IsLit = true;
|
|
|
|
|
Increment();
|
|
|
|
|
}
|
|
|
|
|
|
2018-10-02 03:02:47 +00:00
|
|
|
|
return base.OnKeyDown(e);
|
2018-04-13 09:19:50 +00:00
|
|
|
|
}
|
|
|
|
|
|
2020-01-20 10:35:37 +00:00
|
|
|
|
protected override void OnKeyUp(KeyUpEvent e)
|
2018-04-13 09:19:50 +00:00
|
|
|
|
{
|
2018-10-02 03:02:47 +00:00
|
|
|
|
if (e.Key == Key) IsLit = false;
|
2020-01-20 10:35:37 +00:00
|
|
|
|
base.OnKeyUp(e);
|
2018-04-13 09:19:50 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|