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

30 lines
862 B
C#
Raw Normal View History

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