mirror of
https://github.com/ppy/osu.git
synced 2024-11-11 17:47:29 +08:00
112 lines
4.4 KiB
C#
112 lines
4.4 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.Bindables;
|
|
using osu.Framework.Extensions.LocalisationExtensions;
|
|
using osu.Framework.Graphics;
|
|
using osu.Framework.Graphics.Containers;
|
|
using osu.Framework.Graphics.Sprites;
|
|
using osu.Framework.Localisation;
|
|
using osu.Game.Configuration;
|
|
using osu.Game.Localisation.SkinComponents;
|
|
using osu.Game.Resources.Localisation.Web;
|
|
using osu.Game.Skinning;
|
|
using osuTK;
|
|
|
|
namespace osu.Game.Screens.Play.HUD
|
|
{
|
|
public partial class ArgonAccuracyCounter : GameplayAccuracyCounter, ISerialisableDrawable
|
|
{
|
|
protected override double RollingDuration => 250;
|
|
|
|
[SettingSource("Wireframe opacity", "Controls the opacity of the wireframes behind the digits.")]
|
|
public BindableFloat WireframeOpacity { get; } = new BindableFloat(0.25f)
|
|
{
|
|
Precision = 0.01f,
|
|
MinValue = 0,
|
|
MaxValue = 1,
|
|
};
|
|
|
|
[SettingSource(typeof(SkinnableComponentStrings), nameof(SkinnableComponentStrings.ShowLabel), nameof(SkinnableComponentStrings.ShowLabelDescription))]
|
|
public Bindable<bool> ShowLabel { get; } = new BindableBool(true);
|
|
|
|
public bool UsesFixedAnchor { get; set; }
|
|
|
|
protected override IHasText CreateText() => new ArgonAccuracyTextComponent
|
|
{
|
|
WireframeOpacity = { BindTarget = WireframeOpacity },
|
|
ShowLabel = { BindTarget = ShowLabel },
|
|
};
|
|
|
|
private partial class ArgonAccuracyTextComponent : CompositeDrawable, IHasText
|
|
{
|
|
private readonly ArgonCounterTextComponent wholePart;
|
|
private readonly ArgonCounterTextComponent fractionPart;
|
|
private readonly ArgonCounterTextComponent percentText;
|
|
|
|
public IBindable<float> WireframeOpacity { get; } = new BindableFloat();
|
|
|
|
public Bindable<bool> ShowLabel { get; } = new BindableBool();
|
|
|
|
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())
|
|
{
|
|
WireframeOpacity = { BindTarget = WireframeOpacity },
|
|
WireframeTemplate = @"###",
|
|
ShowLabel = { BindTarget = ShowLabel },
|
|
}
|
|
},
|
|
fractionPart = new ArgonCounterTextComponent(Anchor.TopLeft)
|
|
{
|
|
WireframeOpacity = { BindTarget = WireframeOpacity },
|
|
WireframeTemplate = @".##",
|
|
Scale = new Vector2(0.5f),
|
|
},
|
|
percentText = new ArgonCounterTextComponent(Anchor.TopLeft)
|
|
{
|
|
Text = @"%",
|
|
WireframeTemplate = @"#",
|
|
WireframeOpacity = { BindTarget = WireframeOpacity }
|
|
},
|
|
}
|
|
};
|
|
}
|
|
|
|
protected override void LoadComplete()
|
|
{
|
|
base.LoadComplete();
|
|
|
|
ShowLabel.BindValueChanged(s =>
|
|
{
|
|
fractionPart.Margin = new MarginPadding { Top = s.NewValue ? 12f * 2f + 4f : 4f }; // +4 to account for the extra spaces above the digits.
|
|
percentText.Margin = new MarginPadding { Top = s.NewValue ? 12f : 0 };
|
|
}, true);
|
|
}
|
|
}
|
|
}
|
|
}
|