mirror of
https://github.com/ppy/osu.git
synced 2024-11-08 17:37:46 +08:00
168 lines
5.5 KiB
C#
168 lines
5.5 KiB
C#
// 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;
|
|
using osu.Framework.Allocation;
|
|
using osu.Framework.Bindables;
|
|
using osu.Framework.Graphics;
|
|
using osu.Framework.Graphics.Containers;
|
|
using osu.Framework.Graphics.Shapes;
|
|
using osu.Framework.Input.Handlers.Tablet;
|
|
using osu.Game.Graphics;
|
|
using osu.Game.Graphics.Sprites;
|
|
using osuTK;
|
|
using osuTK.Graphics;
|
|
|
|
namespace osu.Game.Overlays.Settings.Sections.Input
|
|
{
|
|
public class TabletAreaSelection : CompositeDrawable
|
|
{
|
|
private readonly ITabletHandler handler;
|
|
|
|
private Container tabletContainer;
|
|
private Container usableAreaContainer;
|
|
|
|
private readonly Bindable<Vector2> areaOffset = new Bindable<Vector2>();
|
|
private readonly Bindable<Vector2> areaSize = new Bindable<Vector2>();
|
|
|
|
private readonly IBindable<TabletInfo> tablet = new Bindable<TabletInfo>();
|
|
|
|
private OsuSpriteText tabletName;
|
|
|
|
private Box usableFill;
|
|
private OsuSpriteText usableAreaText;
|
|
|
|
public TabletAreaSelection(ITabletHandler handler)
|
|
{
|
|
this.handler = handler;
|
|
|
|
Padding = new MarginPadding { Horizontal = SettingsPanel.CONTENT_MARGINS };
|
|
}
|
|
|
|
[BackgroundDependencyLoader]
|
|
private void load()
|
|
{
|
|
InternalChild = tabletContainer = new Container
|
|
{
|
|
Anchor = Anchor.Centre,
|
|
Origin = Anchor.Centre,
|
|
Masking = true,
|
|
CornerRadius = 5,
|
|
BorderThickness = 2,
|
|
BorderColour = colour.Gray3,
|
|
Children = new Drawable[]
|
|
{
|
|
new Box
|
|
{
|
|
RelativeSizeAxes = Axes.Both,
|
|
Colour = colour.Gray1,
|
|
},
|
|
usableAreaContainer = new Container
|
|
{
|
|
Origin = Anchor.Centre,
|
|
Children = new Drawable[]
|
|
{
|
|
usableFill = new Box
|
|
{
|
|
RelativeSizeAxes = Axes.Both,
|
|
Alpha = 0.6f,
|
|
},
|
|
usableAreaText = new OsuSpriteText
|
|
{
|
|
Anchor = Anchor.Centre,
|
|
Origin = Anchor.Centre,
|
|
Colour = Color4.White,
|
|
Font = OsuFont.Default.With(size: 12)
|
|
}
|
|
}
|
|
},
|
|
tabletName = new OsuSpriteText
|
|
{
|
|
Padding = new MarginPadding(3),
|
|
Font = OsuFont.Default.With(size: 8)
|
|
},
|
|
}
|
|
};
|
|
}
|
|
|
|
protected override void LoadComplete()
|
|
{
|
|
base.LoadComplete();
|
|
|
|
areaOffset.BindTo(handler.AreaOffset);
|
|
areaOffset.BindValueChanged(val =>
|
|
{
|
|
usableAreaContainer.MoveTo(val.NewValue, 100, Easing.OutQuint)
|
|
.OnComplete(_ => checkBounds()); // required as we are using SSDQ.
|
|
}, true);
|
|
|
|
areaSize.BindTo(handler.AreaSize);
|
|
areaSize.BindValueChanged(val =>
|
|
{
|
|
usableAreaContainer.ResizeTo(val.NewValue, 100, Easing.OutQuint)
|
|
.OnComplete(_ => checkBounds()); // required as we are using SSDQ.
|
|
|
|
int x = (int)val.NewValue.X;
|
|
int y = (int)val.NewValue.Y;
|
|
int commonDivider = greatestCommonDivider(x, y);
|
|
|
|
usableAreaText.Text = $"{(float)x / commonDivider}:{(float)y / commonDivider}";
|
|
}, 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);
|
|
}
|
|
|
|
private static int greatestCommonDivider(int a, int b)
|
|
{
|
|
while (b != 0)
|
|
{
|
|
int remainder = a % b;
|
|
a = b;
|
|
b = remainder;
|
|
}
|
|
|
|
return a;
|
|
}
|
|
|
|
[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);
|
|
|
|
usableFill.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);
|
|
}
|
|
}
|
|
}
|