mirror of
https://github.com/ppy/osu.git
synced 2024-11-08 09:27:32 +08:00
c61fac578c
As for the second suggestion in https://github.com/ppy/osu/pull/22654#discussion_r1109047998, I went with the first one as only one Trigger actually uses this argument for rewinding.
56 lines
1.4 KiB
C#
56 lines
1.4 KiB
C#
// 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.
|
|
|
|
#nullable disable
|
|
|
|
using osu.Framework.Input.Events;
|
|
using osuTK.Input;
|
|
using osuTK;
|
|
|
|
namespace osu.Game.Screens.Play
|
|
{
|
|
public partial class KeyCounterMouseTrigger : KeyCounter.InputTrigger
|
|
{
|
|
public MouseButton Button { get; }
|
|
|
|
public KeyCounterMouseTrigger(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)
|
|
Activate();
|
|
|
|
return base.OnMouseDown(e);
|
|
}
|
|
|
|
protected override void OnMouseUp(MouseUpEvent e)
|
|
{
|
|
if (e.Button == Button)
|
|
Deactivate();
|
|
|
|
base.OnMouseUp(e);
|
|
}
|
|
}
|
|
}
|