1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-24 01:27:25 +08:00
osu-lazer/osu.Game/Overlays/Settings/Sections/Input/TabletAreaSelection.cs

148 lines
4.9 KiB
C#
Raw Normal View History

2021-03-15 15:25:50 +08: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.
using System;
2021-03-15 15:25:50 +08:00
using osu.Framework.Allocation;
using osu.Framework.Bindables;
2021-03-15 15:25:50 +08:00
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using osu.Framework.Graphics.Shapes;
using osu.Framework.Input.Handlers.Tablet;
2021-03-15 15:25:50 +08:00
using osu.Game.Graphics;
using osu.Game.Graphics.Sprites;
using osuTK;
using osuTK.Graphics;
namespace osu.Game.Overlays.Settings.Sections.Input
2021-03-15 15:25:50 +08:00
{
public class TabletAreaSelection : CompositeDrawable
2021-03-15 15:25:50 +08:00
{
private readonly ITabletHandler handler;
2021-03-15 15:25:50 +08:00
private Container tabletContainer;
private Container usableAreaContainer;
2021-03-15 15:25:50 +08:00
private readonly Bindable<Vector2> areaOffset = new Bindable<Vector2>();
private readonly Bindable<Vector2> areaSize = new Bindable<Vector2>();
private readonly IBindable<TabletInfo> tablet = new Bindable<TabletInfo>();
2021-03-16 15:23:46 +08:00
private OsuSpriteText tabletName;
public TabletAreaSelection(ITabletHandler handler)
2021-03-15 15:25:50 +08:00
{
this.handler = handler;
Padding = new MarginPadding { Horizontal = SettingsPanel.CONTENT_MARGINS };
}
2021-03-15 15:25:50 +08:00
[BackgroundDependencyLoader]
private void load()
{
InternalChild = tabletContainer = new Container
2021-03-15 15:25:50 +08:00
{
Anchor = Anchor.Centre,
Origin = Anchor.Centre,
Masking = true,
CornerRadius = 5,
BorderThickness = 2,
2021-03-16 15:23:46 +08:00
BorderColour = colour.Gray3,
Children = new Drawable[]
2021-03-15 15:25:50 +08:00
{
new Box
2021-03-15 15:25:50 +08:00
{
RelativeSizeAxes = Axes.Both,
2021-03-16 15:23:46 +08:00
Colour = colour.Gray1,
},
usableAreaContainer = new Container
{
Origin = Anchor.Centre,
Children = new Drawable[]
2021-03-15 15:25:50 +08:00
{
new Box
{
RelativeSizeAxes = Axes.Both,
2021-03-16 15:23:46 +08:00
Alpha = 0.6f,
},
new OsuSpriteText
2021-03-15 15:25:50 +08:00
{
Text = "usable area",
Anchor = Anchor.Centre,
Origin = Anchor.Centre,
Colour = Color4.Black,
Font = OsuFont.Default.With(size: 12)
2021-03-15 15:25:50 +08:00
}
}
},
2021-03-16 15:23:46 +08:00
tabletName = new OsuSpriteText
{
Padding = new MarginPadding(3),
Font = OsuFont.Default.With(size: 8)
},
2021-03-15 15:25:50 +08:00
}
};
}
protected override void LoadComplete()
{
base.LoadComplete();
2021-03-15 15:25:50 +08:00
areaOffset.BindTo(handler.AreaOffset);
areaOffset.BindValueChanged(val =>
{
usableAreaContainer.MoveTo(val.NewValue, 100, Easing.OutQuint)
.OnComplete(_ => checkBounds()); // required as we are using SSDQ.
}, true);
2021-03-15 15:25:50 +08:00
areaSize.BindTo(handler.AreaSize);
areaSize.BindValueChanged(val =>
{
usableAreaContainer.ResizeTo(val.NewValue, 100, Easing.OutQuint)
.OnComplete(_ => checkBounds()); // required as we are using SSDQ.
}, true);
tablet.BindTo(handler.Tablet);
tablet.BindValueChanged(val =>
{
tabletContainer.Size = val.NewValue?.Size ?? Vector2.Zero;
tabletName.Text = val.NewValue?.Name ?? string.Empty;
checkBounds();
}, true);
// initial animation should be instant.
FinishTransforms(true);
}
[Resolved]
private OsuColour colour { get; set; }
private void checkBounds()
{
if (tablet.Value == null)
return;
var usableSsdq = usableAreaContainer.ScreenSpaceDrawQuad;
bool isWithinBounds = tabletContainer.ScreenSpaceDrawQuad.Contains(usableSsdq.TopLeft) &&
tabletContainer.ScreenSpaceDrawQuad.Contains(usableSsdq.BottomRight);
usableAreaContainer.FadeColour(isWithinBounds ? colour.Blue : colour.RedLight, 100);
}
protected override void Update()
{
base.Update();
if (!(tablet.Value?.Size is Vector2 size))
return;
float fitX = size.X / (DrawWidth - Padding.Left - Padding.Right);
float fitY = size.Y / DrawHeight;
float adjust = MathF.Max(fitX, fitY);
tabletContainer.Scale = new Vector2(1 / adjust);
2021-03-15 15:25:50 +08:00
}
}
}