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.
|
|
|
|
|
2021-03-16 13:45:21 +08:00
|
|
|
using System;
|
2021-03-15 17:37:46 +08:00
|
|
|
using System.Drawing;
|
2021-03-15 15:25:50 +08:00
|
|
|
using osu.Framework.Allocation;
|
2021-03-15 17:37:46 +08:00
|
|
|
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;
|
2021-03-15 17:37:46 +08:00
|
|
|
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;
|
|
|
|
|
2021-03-15 17:37:46 +08:00
|
|
|
namespace osu.Game.Overlays.Settings.Sections.Input
|
2021-03-15 15:25:50 +08:00
|
|
|
{
|
2021-03-15 17:37:46 +08:00
|
|
|
public class TabletAreaSelection : CompositeDrawable
|
2021-03-15 15:25:50 +08:00
|
|
|
{
|
2021-03-15 17:37:46 +08:00
|
|
|
private readonly ITabletHandler handler;
|
2021-03-15 15:25:50 +08:00
|
|
|
|
2021-03-16 13:45:21 +08:00
|
|
|
private Container tabletContainer;
|
|
|
|
private Container usableAreaContainer;
|
2021-03-15 15:25:50 +08:00
|
|
|
|
2021-03-15 17:37:46 +08:00
|
|
|
private readonly Bindable<Size> areaOffset = new BindableSize();
|
|
|
|
private readonly Bindable<Size> areaSize = new BindableSize();
|
2021-03-16 17:40:21 +08:00
|
|
|
private readonly IBindable<Size> tabletSize = new BindableSize();
|
2021-03-15 17:37:46 +08:00
|
|
|
|
2021-03-16 15:23:46 +08:00
|
|
|
private OsuSpriteText tabletName;
|
|
|
|
|
2021-03-15 17:37:46 +08:00
|
|
|
public TabletAreaSelection(ITabletHandler handler)
|
2021-03-15 15:25:50 +08:00
|
|
|
{
|
2021-03-15 17:37:46 +08:00
|
|
|
this.handler = handler;
|
2021-03-16 22:57:05 +08:00
|
|
|
|
|
|
|
Padding = new MarginPadding { Horizontal = SettingsPanel.CONTENT_MARGINS };
|
2021-03-16 13:45:21 +08:00
|
|
|
}
|
2021-03-15 15:25:50 +08:00
|
|
|
|
2021-03-16 13:45:21 +08:00
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
private void load()
|
|
|
|
{
|
|
|
|
InternalChild = tabletContainer = new Container
|
2021-03-15 15:25:50 +08:00
|
|
|
{
|
2021-03-16 13:45:21 +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,
|
2021-03-16 13:45:21 +08:00
|
|
|
Children = new Drawable[]
|
2021-03-15 15:25:50 +08:00
|
|
|
{
|
2021-03-16 13:45:21 +08:00
|
|
|
new Box
|
2021-03-15 15:25:50 +08:00
|
|
|
{
|
2021-03-16 13:45:21 +08:00
|
|
|
RelativeSizeAxes = Axes.Both,
|
2021-03-16 15:23:46 +08:00
|
|
|
Colour = colour.Gray1,
|
2021-03-16 13:45:21 +08:00
|
|
|
},
|
|
|
|
usableAreaContainer = new Container
|
|
|
|
{
|
|
|
|
Children = new Drawable[]
|
2021-03-15 15:25:50 +08:00
|
|
|
{
|
2021-03-16 13:45:21 +08:00
|
|
|
new Box
|
|
|
|
{
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
2021-03-16 15:23:46 +08:00
|
|
|
Alpha = 0.6f,
|
2021-03-16 13:45:21 +08:00
|
|
|
},
|
|
|
|
new OsuSpriteText
|
2021-03-15 15:25:50 +08:00
|
|
|
{
|
2021-03-16 13:45:21 +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 13:45:21 +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
|
|
|
}
|
|
|
|
};
|
2021-03-16 22:47:18 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
protected override void LoadComplete()
|
|
|
|
{
|
|
|
|
base.LoadComplete();
|
2021-03-15 15:25:50 +08:00
|
|
|
|
2021-03-15 17:37:46 +08:00
|
|
|
areaOffset.BindTo(handler.AreaOffset);
|
|
|
|
areaOffset.BindValueChanged(val =>
|
|
|
|
{
|
|
|
|
usableAreaContainer.MoveTo(new Vector2(val.NewValue.Width, val.NewValue.Height), 100, Easing.OutQuint);
|
2021-03-16 15:02:39 +08:00
|
|
|
checkBounds();
|
2021-03-15 17:37:46 +08:00
|
|
|
}, true);
|
2021-03-15 15:25:50 +08:00
|
|
|
|
2021-03-15 17:37:46 +08:00
|
|
|
areaSize.BindTo(handler.AreaSize);
|
|
|
|
areaSize.BindValueChanged(val =>
|
|
|
|
{
|
|
|
|
usableAreaContainer.ResizeTo(new Vector2(val.NewValue.Width, val.NewValue.Height), 100, Easing.OutQuint);
|
2021-03-16 15:02:39 +08:00
|
|
|
checkBounds();
|
2021-03-15 17:37:46 +08:00
|
|
|
}, true);
|
|
|
|
|
2021-03-16 17:40:21 +08:00
|
|
|
tabletSize.BindTo(handler.TabletSize);
|
2021-03-15 17:37:46 +08:00
|
|
|
tabletSize.BindValueChanged(val =>
|
|
|
|
{
|
2021-03-16 13:45:21 +08:00
|
|
|
tabletContainer.Size = new Vector2(val.NewValue.Width, val.NewValue.Height);
|
2021-03-16 15:23:46 +08:00
|
|
|
tabletName.Text = handler.DeviceName;
|
2021-03-16 15:02:39 +08:00
|
|
|
checkBounds();
|
2021-03-16 22:47:18 +08:00
|
|
|
}, true);
|
2021-03-16 13:45:21 +08:00
|
|
|
}
|
|
|
|
|
2021-03-16 15:02:39 +08:00
|
|
|
[Resolved]
|
|
|
|
private OsuColour colour { get; set; }
|
|
|
|
|
|
|
|
private void checkBounds()
|
|
|
|
{
|
|
|
|
Size areaExtent = areaOffset.Value + areaSize.Value;
|
|
|
|
|
2021-03-16 15:24:20 +08:00
|
|
|
bool isWithinBounds = areaExtent.Width <= tabletSize.Value.Width
|
|
|
|
&& areaExtent.Height <= tabletSize.Value.Height;
|
2021-03-16 15:02:39 +08:00
|
|
|
|
|
|
|
usableAreaContainer.FadeColour(isWithinBounds ? colour.Blue : colour.RedLight, 100);
|
|
|
|
}
|
|
|
|
|
2021-03-16 13:45:21 +08:00
|
|
|
protected override void Update()
|
|
|
|
{
|
|
|
|
base.Update();
|
|
|
|
|
|
|
|
var size = tabletSize.Value;
|
|
|
|
|
2021-03-16 17:40:21 +08:00
|
|
|
if (size == System.Drawing.Size.Empty)
|
|
|
|
return;
|
|
|
|
|
2021-03-16 22:57:05 +08:00
|
|
|
float fitX = size.Width / (DrawWidth - Padding.Left - Padding.Right);
|
2021-03-16 13:45:21 +08:00
|
|
|
float fitY = size.Height / DrawHeight;
|
|
|
|
|
|
|
|
float adjust = MathF.Max(fitX, fitY);
|
|
|
|
|
|
|
|
tabletContainer.Scale = new Vector2(1 / adjust);
|
2021-03-15 15:25:50 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|