mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 23:07:44 +08:00
47 lines
1.3 KiB
C#
47 lines
1.3 KiB
C#
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
using osu.Framework.Input.Events;
|
|
using osuTK.Input;
|
|
using osuTK;
|
|
|
|
namespace osu.Game.Screens.Play
|
|
{
|
|
public class KeyCounterMouse : KeyCounter
|
|
{
|
|
public MouseButton Button { get; }
|
|
|
|
public KeyCounterMouse(MouseButton button) : base(getStringRepresentation(button))
|
|
{
|
|
Button = button;
|
|
}
|
|
|
|
public override bool ReceivePositionalInputAt(Vector2 screenSpacePos) => true;
|
|
|
|
private static string getStringRepresentation(MouseButton button)
|
|
{
|
|
switch (button)
|
|
{
|
|
default:
|
|
return button.ToString();
|
|
case MouseButton.Left:
|
|
return @"M1";
|
|
case MouseButton.Right:
|
|
return @"M2";
|
|
}
|
|
}
|
|
|
|
protected override bool OnMouseDown(MouseDownEvent e)
|
|
{
|
|
if (e.Button == Button) IsLit = true;
|
|
return base.OnMouseDown(e);
|
|
}
|
|
|
|
protected override bool OnMouseUp(MouseUpEvent e)
|
|
{
|
|
if (e.Button == Button) IsLit = false;
|
|
return base.OnMouseUp(e);
|
|
}
|
|
}
|
|
}
|