1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-15 12:27:26 +08:00
osu-lazer/osu.Game/Screens/Play/HUD/ArgonWedgePiece.cs
2023-10-26 09:10:56 +03:00

70 lines
2.1 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 osu.Framework.Allocation;
using osu.Framework.Bindables;
using osu.Framework.Extensions.Color4Extensions;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Colour;
using osu.Framework.Graphics.Containers;
using osu.Framework.Graphics.Shapes;
using osu.Game.Configuration;
using osu.Game.Skinning;
using osuTK;
namespace osu.Game.Screens.Play.HUD
{
public partial class ArgonWedgePiece : CompositeDrawable, ISerialisableDrawable
{
public bool UsesFixedAnchor { get; set; }
public float EndOpacity { get; init; } = 0.25f;
[SettingSource("Wedge width")]
public BindableFloat WedgeWidth { get; } = new BindableFloat(400f)
{
MinValue = 0f,
MaxValue = 500f,
Precision = 1f,
};
[SettingSource("Wedge height")]
public BindableFloat WedgeHeight { get; } = new BindableFloat(100f)
{
MinValue = 0f,
MaxValue = 500f,
Precision = 1f,
};
[SettingSource("Inverted shear")]
public BindableBool InvertShear { get; } = new BindableBool();
public ArgonWedgePiece()
{
CornerRadius = 10f;
}
[BackgroundDependencyLoader]
private void load()
{
Masking = true;
Shear = new Vector2(0.8f, 0f);
InternalChild = new Box
{
RelativeSizeAxes = Axes.Both,
Colour = ColourInfo.GradientVertical(Color4Extensions.FromHex("#66CCFF").Opacity(0.0f), Color4Extensions.FromHex("#66CCFF").Opacity(EndOpacity)),
};
}
protected override void LoadComplete()
{
base.LoadComplete();
WedgeWidth.BindValueChanged(v => Width = v.NewValue, true);
WedgeHeight.BindValueChanged(v => Height = v.NewValue, true);
InvertShear.BindValueChanged(v => Shear = new Vector2(0.8f, 0f) * (v.NewValue ? -1 : 1), true);
}
}
}