2019-01-24 08:43:03 +00: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 09:19:50 +00:00
|
|
|
|
|
2018-10-02 03:02:47 +00:00
|
|
|
|
using osu.Framework.Input.Events;
|
2018-11-20 07:51:59 +00:00
|
|
|
|
using osuTK.Input;
|
|
|
|
|
using osuTK;
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
|
|
|
|
namespace osu.Game.Screens.Play
|
|
|
|
|
{
|
|
|
|
|
public class KeyCounterMouse : KeyCounter
|
|
|
|
|
{
|
|
|
|
|
public MouseButton Button { get; }
|
|
|
|
|
|
2019-02-28 04:31:40 +00:00
|
|
|
|
public KeyCounterMouse(MouseButton button)
|
|
|
|
|
: base(getStringRepresentation(button))
|
2018-04-13 09:19:50 +00:00
|
|
|
|
{
|
|
|
|
|
Button = button;
|
|
|
|
|
}
|
|
|
|
|
|
2018-09-26 05:01:15 +00:00
|
|
|
|
public override bool ReceivePositionalInputAt(Vector2 screenSpacePos) => true;
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
|
|
|
|
private static string getStringRepresentation(MouseButton button)
|
|
|
|
|
{
|
|
|
|
|
switch (button)
|
|
|
|
|
{
|
|
|
|
|
default:
|
|
|
|
|
return button.ToString();
|
2019-04-01 03:44:46 +00:00
|
|
|
|
|
2018-04-13 09:19:50 +00:00
|
|
|
|
case MouseButton.Left:
|
|
|
|
|
return @"M1";
|
2019-04-01 03:44:46 +00:00
|
|
|
|
|
2018-04-13 09:19:50 +00:00
|
|
|
|
case MouseButton.Right:
|
|
|
|
|
return @"M2";
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2018-10-02 03:02:47 +00:00
|
|
|
|
protected override bool OnMouseDown(MouseDownEvent e)
|
2018-04-13 09:19:50 +00:00
|
|
|
|
{
|
2019-09-12 06:41:53 +00:00
|
|
|
|
if (e.Button == Button)
|
|
|
|
|
{
|
|
|
|
|
IsLit = true;
|
|
|
|
|
Increment();
|
|
|
|
|
}
|
|
|
|
|
|
2018-10-02 03:02:47 +00:00
|
|
|
|
return base.OnMouseDown(e);
|
2018-04-13 09:19:50 +00:00
|
|
|
|
}
|
|
|
|
|
|
2020-01-20 09:17:21 +00:00
|
|
|
|
protected override void OnMouseUp(MouseUpEvent e)
|
2018-04-13 09:19:50 +00:00
|
|
|
|
{
|
2018-10-02 03:02:47 +00:00
|
|
|
|
if (e.Button == Button) IsLit = false;
|
2020-01-20 09:17:21 +00:00
|
|
|
|
base.OnMouseUp(e);
|
2018-04-13 09:19:50 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|