mirror of
https://github.com/ppy/osu.git
synced 2024-12-14 09:32:55 +08:00
Fix input doesn't take original drawable modifications into account
This commit is contained in:
parent
b0d475cd8b
commit
890dd9cd06
@ -10,6 +10,10 @@ using osu.Game.Overlays;
|
|||||||
using osu.Game.Graphics.UserInterfaceV2;
|
using osu.Game.Graphics.UserInterfaceV2;
|
||||||
using osu.Game.Graphics.UserInterface;
|
using osu.Game.Graphics.UserInterface;
|
||||||
using osu.Framework.Allocation;
|
using osu.Framework.Allocation;
|
||||||
|
using osu.Game.Graphics.Containers;
|
||||||
|
using osu.Framework.Graphics.Shapes;
|
||||||
|
using osuTK.Graphics;
|
||||||
|
using osu.Game.Graphics.Sprites;
|
||||||
|
|
||||||
namespace osu.Game.Tests.Visual.UserInterface
|
namespace osu.Game.Tests.Visual.UserInterface
|
||||||
{
|
{
|
||||||
@ -21,6 +25,7 @@ namespace osu.Game.Tests.Visual.UserInterface
|
|||||||
private OverlayColourProvider colourProvider = new OverlayColourProvider(OverlayColourScheme.Green);
|
private OverlayColourProvider colourProvider = new OverlayColourProvider(OverlayColourScheme.Green);
|
||||||
|
|
||||||
private readonly SettingsButton settingsButton;
|
private readonly SettingsButton settingsButton;
|
||||||
|
private readonly OsuClickableContainer clickableContainer;
|
||||||
private readonly RoundedButton roundedButton;
|
private readonly RoundedButton roundedButton;
|
||||||
private readonly ShearedButton shearedButton;
|
private readonly ShearedButton shearedButton;
|
||||||
|
|
||||||
@ -34,6 +39,28 @@ namespace osu.Game.Tests.Visual.UserInterface
|
|||||||
Direction = FillDirection.Vertical,
|
Direction = FillDirection.Vertical,
|
||||||
Children = new Drawable[]
|
Children = new Drawable[]
|
||||||
{
|
{
|
||||||
|
clickableContainer = new OsuClickableContainer
|
||||||
|
{
|
||||||
|
RelativeSizeAxes = Axes.X,
|
||||||
|
Height = 40,
|
||||||
|
Enabled = { Value = true },
|
||||||
|
Masking = true,
|
||||||
|
CornerRadius = 20,
|
||||||
|
Children = new Drawable[]
|
||||||
|
{
|
||||||
|
new Box
|
||||||
|
{
|
||||||
|
RelativeSizeAxes = Axes.Both,
|
||||||
|
Colour = Color4.Red
|
||||||
|
},
|
||||||
|
new OsuSpriteText
|
||||||
|
{
|
||||||
|
Anchor = Anchor.Centre,
|
||||||
|
Origin = Anchor.Centre,
|
||||||
|
Text = "Rounded clickable container"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
settingsButton = new SettingsButton
|
settingsButton = new SettingsButton
|
||||||
{
|
{
|
||||||
Enabled = { Value = true },
|
Enabled = { Value = true },
|
||||||
@ -88,5 +115,15 @@ namespace osu.Game.Tests.Visual.UserInterface
|
|||||||
AddAssert("Cursor within a button", () => shearedButton.ScreenSpaceDrawQuad.Contains(InputManager.CurrentState.Mouse.Position));
|
AddAssert("Cursor within a button", () => shearedButton.ScreenSpaceDrawQuad.Contains(InputManager.CurrentState.Mouse.Position));
|
||||||
AddAssert("Button is not hovered", () => !shearedButton.IsHovered);
|
AddAssert("Button is not hovered", () => !shearedButton.IsHovered);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
[Test]
|
||||||
|
public void TestRoundedClickableContainerInput()
|
||||||
|
{
|
||||||
|
AddStep("Move cursor to button", () => InputManager.MoveMouseTo(clickableContainer));
|
||||||
|
AddAssert("Button is hovered", () => clickableContainer.IsHovered);
|
||||||
|
AddStep("Move cursor to corner", () => InputManager.MoveMouseTo(clickableContainer.ScreenSpaceDrawQuad.TopLeft + Vector2.One));
|
||||||
|
AddAssert("Cursor within a button", () => clickableContainer.ScreenSpaceDrawQuad.Contains(InputManager.CurrentState.Mouse.Position));
|
||||||
|
AddAssert("Button is not hovered", () => !clickableContainer.IsHovered);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -17,7 +17,7 @@ namespace osu.Game.Graphics.Containers
|
|||||||
|
|
||||||
private readonly Container content = new Container { RelativeSizeAxes = Axes.Both };
|
private readonly Container content = new Container { RelativeSizeAxes = Axes.Both };
|
||||||
|
|
||||||
public override bool ReceivePositionalInputAt(Vector2 screenSpacePos) => Content.ReceivePositionalInputAt(screenSpacePos);
|
public override bool ReceivePositionalInputAt(Vector2 screenSpacePos) => base.ReceivePositionalInputAt(screenSpacePos) && Content.ReceivePositionalInputAt(screenSpacePos);
|
||||||
|
|
||||||
protected override Container<Drawable> Content => content;
|
protected override Container<Drawable> Content => content;
|
||||||
|
|
||||||
|
@ -61,7 +61,7 @@ namespace osu.Game.Graphics.UserInterface
|
|||||||
|
|
||||||
protected override Container<Drawable> Content { get; }
|
protected override Container<Drawable> Content { get; }
|
||||||
|
|
||||||
public override bool ReceivePositionalInputAt(Vector2 screenSpacePos) => Content.ReceivePositionalInputAt(screenSpacePos);
|
public override bool ReceivePositionalInputAt(Vector2 screenSpacePos) => base.ReceivePositionalInputAt(screenSpacePos) && Content.ReceivePositionalInputAt(screenSpacePos);
|
||||||
|
|
||||||
protected Box Hover;
|
protected Box Hover;
|
||||||
protected Box Background;
|
protected Box Background;
|
||||||
|
Loading…
Reference in New Issue
Block a user