osu/osu.Game/Screens/Play/Break/BreakInfoLine.cs

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

95 lines
2.7 KiB
C#
Raw Normal View History

// 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.
2018-04-13 09:19:50 +00:00
2022-06-17 07:37:17 +00:00
#nullable disable
2019-04-21 04:04:15 +00:00
using System;
2017-09-23 13:42:18 +00:00
using osu.Framework.Allocation;
2019-02-21 10:04:31 +00:00
using osu.Framework.Bindables;
2019-04-21 04:04:15 +00:00
using osu.Framework.Extensions;
2017-09-23 13:42:18 +00:00
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
2021-07-23 20:37:08 +00:00
using osu.Framework.Localisation;
2017-09-23 13:42:18 +00:00
using osu.Game.Graphics;
using osu.Game.Graphics.Sprites;
using osu.Game.Utils;
2018-04-13 09:19:50 +00:00
namespace osu.Game.Screens.Play.Break
2017-09-23 13:42:18 +00:00
{
public partial class BreakInfoLine<T> : Container
2017-09-23 13:42:18 +00:00
where T : struct
{
private const int margin = 2;
2018-04-13 09:19:50 +00:00
2017-09-23 13:42:18 +00:00
public Bindable<T> Current = new Bindable<T>();
2018-04-13 09:19:50 +00:00
2017-09-23 13:42:18 +00:00
private readonly OsuSpriteText text;
private readonly OsuSpriteText valueText;
2018-04-13 09:19:50 +00:00
2017-09-23 13:42:18 +00:00
private readonly string prefix;
2018-04-13 09:19:50 +00:00
public BreakInfoLine(LocalisableString name, string prefix = @"")
2017-09-23 13:42:18 +00:00
{
this.prefix = prefix;
2018-04-13 09:19:50 +00:00
2017-09-23 13:42:18 +00:00
AutoSizeAxes = Axes.Y;
Children = new Drawable[]
{
text = new OsuSpriteText
{
Anchor = Anchor.Centre,
Origin = Anchor.CentreRight,
Text = name,
Font = OsuFont.GetFont(size: 17),
2017-09-23 13:42:18 +00:00
Margin = new MarginPadding { Right = margin }
},
valueText = new OsuSpriteText
{
Anchor = Anchor.Centre,
Origin = Anchor.CentreLeft,
Text = prefix + @"-",
Font = OsuFont.GetFont(weight: FontWeight.Bold, size: 17),
2017-09-23 13:42:18 +00:00
Margin = new MarginPadding { Left = margin }
}
};
2018-04-13 09:19:50 +00:00
2017-09-23 13:42:18 +00:00
Current.ValueChanged += currentValueChanged;
}
2018-04-13 09:19:50 +00:00
2019-02-21 09:56:34 +00:00
private void currentValueChanged(ValueChangedEvent<T> e)
2017-09-23 13:42:18 +00:00
{
string newText = prefix + Format(e.NewValue);
2018-04-13 09:19:50 +00:00
2017-09-23 16:59:34 +00:00
if (valueText.Text == newText)
return;
2018-04-13 09:19:50 +00:00
2017-09-23 16:59:34 +00:00
valueText.Text = newText;
2017-09-23 13:42:18 +00:00
}
2018-04-13 09:19:50 +00:00
2021-07-23 20:37:08 +00:00
protected virtual LocalisableString Format(T count)
2019-04-21 04:04:15 +00:00
{
if (count is Enum countEnum)
return countEnum.GetDescription();
return count.ToString();
}
2018-04-13 09:19:50 +00:00
2017-09-23 13:42:18 +00:00
[BackgroundDependencyLoader]
private void load(OsuColour colours)
{
text.Colour = colours.Yellow;
valueText.Colour = colours.YellowLight;
}
}
2018-04-13 09:19:50 +00:00
public partial class PercentageBreakInfoLine : BreakInfoLine<double>
2017-09-23 13:42:18 +00:00
{
public PercentageBreakInfoLine(LocalisableString name, string prefix = "")
2019-02-28 04:31:40 +00:00
: base(name, prefix)
2017-09-23 13:42:18 +00:00
{
}
2018-04-13 09:19:50 +00:00
2021-07-23 20:37:08 +00:00
protected override LocalisableString Format(double count) => count.FormatAccuracy();
2017-09-23 13:42:18 +00:00
}
}