1
0
mirror of https://github.com/ppy/osu.git synced 2024-10-01 02:17:25 +08:00
osu-lazer/osu.Game/Overlays/Profile/Header/Components/LevelBadge.cs

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

67 lines
2.1 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.
using osu.Framework.Allocation;
using osu.Framework.Bindables;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using osu.Framework.Graphics.Cursor;
using osu.Framework.Graphics.Sprites;
using osu.Framework.Graphics.Textures;
using osu.Framework.Localisation;
using osu.Game.Graphics;
using osu.Game.Graphics.Sprites;
2021-07-17 21:21:30 +08:00
using osu.Game.Resources.Localisation.Web;
using osu.Game.Users;
2019-04-26 12:49:44 +08:00
namespace osu.Game.Overlays.Profile.Header.Components
{
public partial class LevelBadge : CompositeDrawable, IHasTooltip
{
public readonly Bindable<UserStatistics.LevelInfo?> LevelInfo = new Bindable<UserStatistics.LevelInfo?>();
2021-07-17 21:21:30 +08:00
public LocalisableString TooltipText { get; private set; }
2022-12-30 20:17:59 +08:00
private OsuSpriteText levelText = null!;
public LevelBadge()
{
2021-07-17 21:21:30 +08:00
TooltipText = UsersStrings.ShowStatsLevel("0");
}
[BackgroundDependencyLoader]
private void load(OsuColour colours, TextureStore textures)
{
InternalChildren = new Drawable[]
{
new Sprite
{
RelativeSizeAxes = Axes.Both,
Texture = textures.Get("Profile/levelbadge"),
Colour = colours.Yellow,
},
levelText = new OsuSpriteText
{
Anchor = Anchor.Centre,
Origin = Anchor.Centre,
Font = OsuFont.GetFont(size: 20)
}
};
2023-01-17 04:42:07 +08:00
}
2023-01-17 04:42:07 +08:00
protected override void LoadComplete()
{
2023-01-17 04:47:31 +08:00
base.LoadComplete();
2023-01-17 04:42:07 +08:00
LevelInfo.BindValueChanged(level => updateLevel(level.NewValue), true);
}
private void updateLevel(UserStatistics.LevelInfo? levelInfo)
{
string level = levelInfo?.Current.ToString() ?? "0";
2022-12-30 20:17:59 +08:00
levelText.Text = level;
TooltipText = UsersStrings.ShowStatsLevel(level);
}
}
}