2019-01-24 17:43:03 +09:00
|
|
|
|
// 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 18:19:50 +09:00
|
|
|
|
|
2018-10-02 12:02:47 +09:00
|
|
|
|
using osu.Framework.Input.Events;
|
2018-11-20 16:51:59 +09:00
|
|
|
|
using osuTK;
|
2023-03-07 16:28:54 +09:00
|
|
|
|
using osuTK.Input;
|
2018-04-13 18:19:50 +09:00
|
|
|
|
|
2023-03-07 16:28:54 +09:00
|
|
|
|
namespace osu.Game.Screens.Play.HUD
|
2018-04-13 18:19:50 +09:00
|
|
|
|
{
|
2023-02-22 15:03:44 +00:00
|
|
|
|
public partial class KeyCounterMouseTrigger : InputTrigger
|
2018-04-13 18:19:50 +09:00
|
|
|
|
{
|
|
|
|
|
public MouseButton Button { get; }
|
|
|
|
|
|
2023-02-13 23:49:57 +00:00
|
|
|
|
public KeyCounterMouseTrigger(MouseButton button)
|
2019-02-28 13:31:40 +09:00
|
|
|
|
: base(getStringRepresentation(button))
|
2018-04-13 18:19:50 +09:00
|
|
|
|
{
|
|
|
|
|
Button = button;
|
|
|
|
|
}
|
|
|
|
|
|
2018-09-26 14:01:15 +09:00
|
|
|
|
public override bool ReceivePositionalInputAt(Vector2 screenSpacePos) => true;
|
2018-04-13 18:19:50 +09:00
|
|
|
|
|
|
|
|
|
private static string getStringRepresentation(MouseButton button)
|
|
|
|
|
{
|
|
|
|
|
switch (button)
|
|
|
|
|
{
|
|
|
|
|
default:
|
|
|
|
|
return button.ToString();
|
2019-04-01 12:44:46 +09:00
|
|
|
|
|
2018-04-13 18:19:50 +09:00
|
|
|
|
case MouseButton.Left:
|
|
|
|
|
return @"M1";
|
2019-04-01 12:44:46 +09:00
|
|
|
|
|
2018-04-13 18:19:50 +09:00
|
|
|
|
case MouseButton.Right:
|
|
|
|
|
return @"M2";
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2018-10-02 12:02:47 +09:00
|
|
|
|
protected override bool OnMouseDown(MouseDownEvent e)
|
2018-04-13 18:19:50 +09:00
|
|
|
|
{
|
2019-09-12 15:41:53 +09:00
|
|
|
|
if (e.Button == Button)
|
2023-02-16 23:15:03 +00:00
|
|
|
|
Activate();
|
2019-09-12 15:41:53 +09:00
|
|
|
|
|
2018-10-02 12:02:47 +09:00
|
|
|
|
return base.OnMouseDown(e);
|
2018-04-13 18:19:50 +09:00
|
|
|
|
}
|
|
|
|
|
|
2020-01-20 18:17:21 +09:00
|
|
|
|
protected override void OnMouseUp(MouseUpEvent e)
|
2018-04-13 18:19:50 +09:00
|
|
|
|
{
|
2023-02-13 01:24:27 +00:00
|
|
|
|
if (e.Button == Button)
|
2023-02-16 23:15:03 +00:00
|
|
|
|
Deactivate();
|
2023-02-13 01:24:27 +00:00
|
|
|
|
|
2020-01-20 18:17:21 +09:00
|
|
|
|
base.OnMouseUp(e);
|
2018-04-13 18:19:50 +09:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|