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.Graphics;
|
|
|
|
|
using osu.Framework.Input;
|
2017-01-27 20:57:22 +08:00
|
|
|
|
using OpenTK;
|
|
|
|
|
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 09:53:58 +08:00
|
|
|
|
public class KeyCounterMouse : KeyCounter
|
2016-09-23 18:57:19 +08:00
|
|
|
|
{
|
|
|
|
|
public MouseButton Button { get; }
|
2016-09-24 09:53:58 +08:00
|
|
|
|
public KeyCounterMouse(string name, MouseButton button) : base(name)
|
2016-09-23 18:57:19 +08:00
|
|
|
|
{
|
|
|
|
|
Button = button;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public override bool Contains(Vector2 screenSpacePos) => true;
|
|
|
|
|
|
|
|
|
|
protected override bool OnMouseDown(InputState state, MouseDownEventArgs args)
|
|
|
|
|
{
|
2017-02-09 21:18:08 +08:00
|
|
|
|
if (args.Button == Button) IsLit = true;
|
2016-09-23 18:57:19 +08:00
|
|
|
|
return base.OnMouseDown(state, args);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override bool OnMouseUp(InputState state, MouseUpEventArgs args)
|
|
|
|
|
{
|
2017-02-09 21:18:08 +08:00
|
|
|
|
if (args.Button == Button) IsLit = false;
|
2016-09-23 18:57:19 +08:00
|
|
|
|
return base.OnMouseUp(state, args);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|