2017-02-07 12:59:30 +08:00
|
|
|
|
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
|
|
|
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
2016-09-23 18:57:19 +08:00
|
|
|
|
|
|
|
|
|
using osu.Framework.Input;
|
2017-01-27 20:57:22 +08:00
|
|
|
|
using OpenTK.Input;
|
2016-09-23 18:57:19 +08:00
|
|
|
|
|
2017-01-27 20:57:22 +08:00
|
|
|
|
namespace osu.Game.Screens.Play
|
2016-09-23 18:57:19 +08:00
|
|
|
|
{
|
2016-09-24 14:28:59 +08:00
|
|
|
|
public class KeyCounterKeyboard : KeyCounter
|
2016-09-23 18:57:19 +08:00
|
|
|
|
{
|
|
|
|
|
public Key Key { get; }
|
2017-03-05 02:42:37 +08:00
|
|
|
|
public KeyCounterKeyboard(Key key) : base(key.ToString())
|
2016-09-23 18:57:19 +08:00
|
|
|
|
{
|
|
|
|
|
Key = key;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override bool OnKeyDown(InputState state, KeyDownEventArgs args)
|
|
|
|
|
{
|
2017-02-09 21:18:08 +08:00
|
|
|
|
if (args.Key == Key) IsLit = true;
|
2016-09-23 18:57:19 +08:00
|
|
|
|
return base.OnKeyDown(state, args);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override bool OnKeyUp(InputState state, KeyUpEventArgs args)
|
|
|
|
|
{
|
2017-02-09 21:18:08 +08:00
|
|
|
|
if (args.Key == Key) IsLit = false;
|
2016-09-23 18:57:19 +08:00
|
|
|
|
return base.OnKeyUp(state, args);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|