1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 19:27:31 +08:00
osu-lazer/osu.Game/Screens/Play/HUD/ArgonAccuracyCounter.cs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

91 lines
3.4 KiB
C#
Raw Normal View History

2023-10-26 13:58:47 +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.
2023-11-08 06:48:21 +08:00
using osu.Framework.Bindables;
2023-10-26 13:58:47 +08:00
using osu.Framework.Graphics;
2023-11-10 05:34:29 +08:00
using osu.Framework.Graphics.Containers;
2023-11-08 06:48:21 +08:00
using osu.Framework.Graphics.Sprites;
2023-11-10 05:34:29 +08:00
using osu.Framework.Localisation;
2023-11-08 06:48:21 +08:00
using osu.Game.Configuration;
2023-10-26 13:58:47 +08:00
using osu.Game.Skinning;
2023-11-08 06:48:21 +08:00
using osuTK;
2023-10-26 13:58:47 +08:00
namespace osu.Game.Screens.Play.HUD
{
public partial class ArgonAccuracyCounter : GameplayAccuracyCounter, ISerialisableDrawable
{
2023-11-10 14:06:19 +08:00
protected override double RollingDuration => 500;
protected override Easing RollingEasing => Easing.OutQuint;
2023-11-08 06:48:21 +08:00
[SettingSource("Wireframe opacity", "Controls the opacity of the wire frames behind the digits.")]
public BindableFloat WireframeOpacity { get; } = new BindableFloat(0.25f)
2023-11-08 06:48:21 +08:00
{
Precision = 0.01f,
MinValue = 0,
MaxValue = 1,
};
2023-10-26 13:58:47 +08:00
public bool UsesFixedAnchor { get; set; }
2023-11-10 05:34:29 +08:00
protected override IHasText CreateText() => new ArgonAccuracyTextComponent
2023-11-08 06:48:21 +08:00
{
WireframeOpacity = { BindTarget = WireframeOpacity },
};
2023-11-10 05:34:29 +08:00
private partial class ArgonAccuracyTextComponent : CompositeDrawable, IHasText
{
private readonly ArgonCounterTextComponent wholePart;
private readonly ArgonCounterTextComponent fractionPart;
public IBindable<float> WireframeOpacity { get; } = new BindableFloat();
public LocalisableString Text
{
get => wholePart.Text;
set
{
string[] split = value.ToString().Replace("%", string.Empty).Split(".");
wholePart.Text = split[0];
fractionPart.Text = "." + split[1];
}
}
public ArgonAccuracyTextComponent()
{
AutoSizeAxes = Axes.Both;
InternalChild = new FillFlowContainer
{
AutoSizeAxes = Axes.Both,
Direction = FillDirection.Horizontal,
Children = new Drawable[]
{
new Container
{
AutoSizeAxes = Axes.Both,
Child = wholePart = new ArgonCounterTextComponent(Anchor.TopRight, BeatmapsetsStrings.ShowScoreboardHeadersAccuracy.ToUpper())
2023-11-10 05:34:29 +08:00
{
RequiredDisplayDigits = { Value = 3 },
WireframeOpacity = { BindTarget = WireframeOpacity }
}
},
fractionPart = new ArgonCounterTextComponent(Anchor.TopLeft)
{
Margin = new MarginPadding { Top = 12f * 2f + 4f }, // +4 to account for the extra spaces above the digits.
WireframeOpacity = { BindTarget = WireframeOpacity },
Scale = new Vector2(0.5f),
},
new ArgonCounterTextComponent(Anchor.TopLeft)
{
Text = @"%",
Margin = new MarginPadding { Top = 12f },
WireframeOpacity = { BindTarget = WireframeOpacity }
},
}
};
}
}
2023-10-26 13:58:47 +08:00
}
}