1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 08:07:24 +08:00
osu-lazer/osu.Game/Screens/Play/HUD/KeyCounterMouseTrigger.cs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

54 lines
1.3 KiB
C#
Raw Normal View History

// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
2018-04-13 17:19:50 +08:00
2018-10-02 11:02:47 +08:00
using osu.Framework.Input.Events;
2018-11-20 15:51:59 +08:00
using osuTK;
using osuTK.Input;
2018-04-13 17:19:50 +08:00
namespace osu.Game.Screens.Play.HUD
{
public partial class KeyCounterMouseTrigger : InputTrigger
{
public MouseButton Button { get; }
2018-04-13 17:19:50 +08:00
public KeyCounterMouseTrigger(MouseButton button)
2019-02-28 12:31:40 +08:00
: base(getStringRepresentation(button))
{
Button = button;
}
2018-04-13 17:19:50 +08:00
public override bool ReceivePositionalInputAt(Vector2 screenSpacePos) => true;
2018-04-13 17:19:50 +08:00
2017-03-14 11:31:09 +08:00
private static string getStringRepresentation(MouseButton button)
{
switch (button)
{
default:
return button.ToString();
2019-04-01 11:44:46 +08:00
2017-03-14 11:31:09 +08:00
case MouseButton.Left:
return @"M1";
2019-04-01 11:44:46 +08:00
2017-03-14 11:31:09 +08:00
case MouseButton.Right:
return @"M2";
}
}
2018-04-13 17:19:50 +08:00
2018-10-02 11:02:47 +08:00
protected override bool OnMouseDown(MouseDownEvent e)
{
if (e.Button == Button)
Activate();
2018-10-02 11:02:47 +08:00
return base.OnMouseDown(e);
}
2018-04-13 17:19:50 +08:00
protected override void OnMouseUp(MouseUpEvent e)
{
if (e.Button == Button)
Deactivate();
base.OnMouseUp(e);
}
}
}