2019-12-17 17:05:35 +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.
|
|
|
|
|
|
|
|
|
|
using osu.Framework.Graphics.Containers;
|
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
|
using osu.Framework.Graphics.Shapes;
|
|
|
|
|
using osu.Game.Graphics;
|
|
|
|
|
using osu.Framework.Bindables;
|
|
|
|
|
using osu.Game.Graphics.Sprites;
|
2020-02-17 09:29:41 +08:00
|
|
|
|
using osu.Framework.Allocation;
|
2021-07-24 16:06:31 +08:00
|
|
|
|
using osu.Framework.Localisation;
|
2019-12-17 17:05:35 +08:00
|
|
|
|
|
|
|
|
|
namespace osu.Game.Overlays.Profile.Sections
|
|
|
|
|
{
|
|
|
|
|
public class CounterPill : CircularContainer
|
|
|
|
|
{
|
|
|
|
|
public readonly BindableInt Current = new BindableInt();
|
|
|
|
|
|
2020-02-17 09:29:41 +08:00
|
|
|
|
private OsuSpriteText counter;
|
2019-12-17 17:05:35 +08:00
|
|
|
|
|
2020-02-17 09:29:41 +08:00
|
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
|
private void load(OverlayColourProvider colourProvider)
|
2019-12-17 17:05:35 +08:00
|
|
|
|
{
|
|
|
|
|
AutoSizeAxes = Axes.Both;
|
|
|
|
|
Masking = true;
|
|
|
|
|
Children = new Drawable[]
|
|
|
|
|
{
|
|
|
|
|
new Box
|
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
2020-02-17 09:29:41 +08:00
|
|
|
|
Colour = colourProvider.Background6
|
2019-12-17 17:05:35 +08:00
|
|
|
|
},
|
|
|
|
|
counter = new OsuSpriteText
|
|
|
|
|
{
|
|
|
|
|
Anchor = Anchor.Centre,
|
|
|
|
|
Origin = Anchor.Centre,
|
2020-09-08 03:13:29 +08:00
|
|
|
|
Margin = new MarginPadding { Horizontal = 10, Bottom = 1 },
|
2020-09-11 01:25:35 +08:00
|
|
|
|
Font = OsuFont.GetFont(size: 11.2f, weight: FontWeight.Bold),
|
2020-02-17 09:29:41 +08:00
|
|
|
|
Colour = colourProvider.Foreground1
|
2019-12-17 17:05:35 +08:00
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override void LoadComplete()
|
|
|
|
|
{
|
|
|
|
|
base.LoadComplete();
|
|
|
|
|
Current.BindValueChanged(onCurrentChanged, true);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void onCurrentChanged(ValueChangedEvent<int> value)
|
|
|
|
|
{
|
2021-07-24 16:06:31 +08:00
|
|
|
|
counter.Text = value.NewValue.ToLocalisableString("N0");
|
2019-12-17 17:05:35 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|