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;
|
2017-06-24 00:02:24 +08:00
|
|
|
|
using OpenTK;
|
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; }
|
2017-03-14 11:31:09 +08:00
|
|
|
|
|
|
|
|
|
public KeyCounterMouse(MouseButton button) : base(getStringRepresentation(button))
|
2016-09-23 18:57:19 +08:00
|
|
|
|
{
|
|
|
|
|
Button = button;
|
|
|
|
|
}
|
|
|
|
|
|
2017-06-30 14:54:03 +08:00
|
|
|
|
public override bool ReceiveMouseInputAt(Vector2 screenSpacePos) => true;
|
2017-06-24 00:02:24 +08:00
|
|
|
|
|
2017-03-14 11:31:09 +08:00
|
|
|
|
private static string getStringRepresentation(MouseButton button)
|
|
|
|
|
{
|
|
|
|
|
switch (button)
|
|
|
|
|
{
|
|
|
|
|
default:
|
|
|
|
|
return button.ToString();
|
|
|
|
|
case MouseButton.Left:
|
|
|
|
|
return @"M1";
|
|
|
|
|
case MouseButton.Right:
|
|
|
|
|
return @"M2";
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2016-09-23 18:57:19 +08:00
|
|
|
|
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);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|