1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-07 01:50:00 +08:00
osu-lazer/osu.Game/Screens/Play/KeyCounterMouse.cs

57 lines
1.4 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 18:19:50 +09:00
2022-06-17 16:37:17 +09:00
#nullable disable
2018-10-02 12:02:47 +09:00
using osu.Framework.Input.Events;
2018-11-20 16:51:59 +09:00
using osuTK.Input;
using osuTK;
2018-04-13 18:19:50 +09:00
namespace osu.Game.Screens.Play
{
2022-11-24 14:32:20 +09:00
public partial class KeyCounterMouse : KeyCounter
2018-04-13 18:19:50 +09:00
{
public MouseButton Button { get; }
2019-02-28 13:31:40 +09:00
public KeyCounterMouse(MouseButton button)
: base(getStringRepresentation(button))
2018-04-13 18:19:50 +09:00
{
Button = button;
}
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
{
if (e.Button == Button)
{
IsLit = true;
Increment();
}
2018-10-02 12:02:47 +09:00
return base.OnMouseDown(e);
2018-04-13 18:19:50 +09:00
}
protected override void OnMouseUp(MouseUpEvent e)
2018-04-13 18:19:50 +09:00
{
2018-10-02 12:02:47 +09:00
if (e.Button == Button) IsLit = false;
base.OnMouseUp(e);
2018-04-13 18:19:50 +09:00
}
}
}