mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 06:57:39 +08:00
95 lines
2.7 KiB
C#
95 lines
2.7 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.
|
|
|
|
#nullable disable
|
|
|
|
using System;
|
|
using osu.Framework.Allocation;
|
|
using osu.Framework.Bindables;
|
|
using osu.Framework.Extensions;
|
|
using osu.Framework.Graphics;
|
|
using osu.Framework.Graphics.Containers;
|
|
using osu.Framework.Localisation;
|
|
using osu.Game.Graphics;
|
|
using osu.Game.Graphics.Sprites;
|
|
using osu.Game.Utils;
|
|
|
|
namespace osu.Game.Screens.Play.Break
|
|
{
|
|
public partial class BreakInfoLine<T> : Container
|
|
where T : struct
|
|
{
|
|
private const int margin = 2;
|
|
|
|
public Bindable<T> Current = new Bindable<T>();
|
|
|
|
private readonly OsuSpriteText text;
|
|
private readonly OsuSpriteText valueText;
|
|
|
|
private readonly string prefix;
|
|
|
|
public BreakInfoLine(LocalisableString name, string prefix = @"")
|
|
{
|
|
this.prefix = prefix;
|
|
|
|
AutoSizeAxes = Axes.Y;
|
|
Children = new Drawable[]
|
|
{
|
|
text = new OsuSpriteText
|
|
{
|
|
Anchor = Anchor.Centre,
|
|
Origin = Anchor.CentreRight,
|
|
Text = name,
|
|
Font = OsuFont.GetFont(size: 17),
|
|
Margin = new MarginPadding { Right = margin }
|
|
},
|
|
valueText = new OsuSpriteText
|
|
{
|
|
Anchor = Anchor.Centre,
|
|
Origin = Anchor.CentreLeft,
|
|
Text = prefix + @"-",
|
|
Font = OsuFont.GetFont(weight: FontWeight.Bold, size: 17),
|
|
Margin = new MarginPadding { Left = margin }
|
|
}
|
|
};
|
|
|
|
Current.ValueChanged += currentValueChanged;
|
|
}
|
|
|
|
private void currentValueChanged(ValueChangedEvent<T> e)
|
|
{
|
|
string newText = prefix + Format(e.NewValue);
|
|
|
|
if (valueText.Text == newText)
|
|
return;
|
|
|
|
valueText.Text = newText;
|
|
}
|
|
|
|
protected virtual LocalisableString Format(T count)
|
|
{
|
|
if (count is Enum countEnum)
|
|
return countEnum.GetDescription();
|
|
|
|
return count.ToString();
|
|
}
|
|
|
|
[BackgroundDependencyLoader]
|
|
private void load(OsuColour colours)
|
|
{
|
|
text.Colour = colours.Yellow;
|
|
valueText.Colour = colours.YellowLight;
|
|
}
|
|
}
|
|
|
|
public partial class PercentageBreakInfoLine : BreakInfoLine<double>
|
|
{
|
|
public PercentageBreakInfoLine(LocalisableString name, string prefix = "")
|
|
: base(name, prefix)
|
|
{
|
|
}
|
|
|
|
protected override LocalisableString Format(double count) => count.FormatAccuracy();
|
|
}
|
|
}
|