2024-07-28 10:24:29 +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.Allocation;
|
|
|
|
using osu.Framework.Bindables;
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
using osu.Framework.Graphics.Containers;
|
|
|
|
using osu.Framework.Graphics.Cursor;
|
|
|
|
using osu.Framework.Graphics.Shapes;
|
|
|
|
using osu.Game.Graphics;
|
|
|
|
using osu.Game.Graphics.Containers;
|
|
|
|
using osu.Game.Graphics.Sprites;
|
|
|
|
|
|
|
|
namespace osu.Game.Overlays.Profile.Header.Components
|
|
|
|
{
|
2024-07-28 11:21:21 +08:00
|
|
|
public partial class DailyChallengeStreakDisplay : CompositeDrawable, IHasCustomTooltip<DailyChallengeStreakTooltipData>
|
2024-07-28 10:24:29 +08:00
|
|
|
{
|
|
|
|
public readonly Bindable<UserProfileData?> User = new Bindable<UserProfileData?>();
|
|
|
|
|
2024-07-28 11:21:21 +08:00
|
|
|
public DailyChallengeStreakTooltipData? TooltipContent { get; private set; }
|
2024-07-28 10:24:29 +08:00
|
|
|
|
|
|
|
private OsuSpriteText dailyStreak = null!;
|
|
|
|
|
|
|
|
[Resolved]
|
|
|
|
private OverlayColourProvider colourProvider { get; set; } = null!;
|
|
|
|
|
|
|
|
[Resolved]
|
|
|
|
private OsuColour colours { get; set; } = null!;
|
|
|
|
|
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
private void load()
|
|
|
|
{
|
|
|
|
AutoSizeAxes = Axes.Both;
|
|
|
|
CornerRadius = 5;
|
|
|
|
Masking = true;
|
|
|
|
|
|
|
|
InternalChildren = new Drawable[]
|
|
|
|
{
|
|
|
|
new Box
|
|
|
|
{
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
Colour = colourProvider.Background4,
|
|
|
|
},
|
|
|
|
new FillFlowContainer
|
|
|
|
{
|
|
|
|
Anchor = Anchor.Centre,
|
|
|
|
Origin = Anchor.Centre,
|
|
|
|
Padding = new MarginPadding(5f),
|
|
|
|
AutoSizeAxes = Axes.Both,
|
|
|
|
Direction = FillDirection.Horizontal,
|
|
|
|
Children = new Drawable[]
|
|
|
|
{
|
|
|
|
new OsuTextFlowContainer(s => s.Font = OsuFont.GetFont(size: 12))
|
|
|
|
{
|
|
|
|
AutoSizeAxes = Axes.Both,
|
|
|
|
// Text = UsersStrings.ShowDailyChallengeTitle
|
|
|
|
Text = "Daily\nChallenge",
|
|
|
|
Margin = new MarginPadding { Horizontal = 5f, Bottom = 2f },
|
|
|
|
},
|
|
|
|
new Container
|
|
|
|
{
|
|
|
|
AutoSizeAxes = Axes.X,
|
|
|
|
RelativeSizeAxes = Axes.Y,
|
|
|
|
CornerRadius = 5f,
|
|
|
|
Masking = true,
|
|
|
|
Children = new Drawable[]
|
|
|
|
{
|
|
|
|
new Box
|
|
|
|
{
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
Colour = colourProvider.Background6,
|
|
|
|
},
|
|
|
|
dailyStreak = new OsuSpriteText
|
|
|
|
{
|
|
|
|
Anchor = Anchor.Centre,
|
|
|
|
Origin = Anchor.Centre,
|
|
|
|
UseFullGlyphHeight = false,
|
|
|
|
Colour = colourProvider.Content2,
|
|
|
|
Margin = new MarginPadding { Horizontal = 10f, Vertical = 5f },
|
|
|
|
},
|
|
|
|
}
|
|
|
|
},
|
|
|
|
}
|
|
|
|
},
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
protected override void LoadComplete()
|
|
|
|
{
|
|
|
|
base.LoadComplete();
|
|
|
|
User.BindValueChanged(_ => updateDisplay(), true);
|
|
|
|
}
|
|
|
|
|
|
|
|
private void updateDisplay()
|
|
|
|
{
|
|
|
|
if (User.Value == null)
|
|
|
|
{
|
|
|
|
dailyStreak.Text = "-";
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
var statistics = User.Value.User.DailyChallengeStatistics;
|
|
|
|
// dailyStreak.Text = UsersStrings.ShowDailyChallengeUnitDay(statistics.DailyStreakCurrent);
|
|
|
|
dailyStreak.Text = $"{statistics.DailyStreakCurrent}d";
|
2024-07-28 11:21:21 +08:00
|
|
|
TooltipContent = new DailyChallengeStreakTooltipData(colourProvider, statistics);
|
2024-07-28 10:24:29 +08:00
|
|
|
}
|
|
|
|
|
2024-07-28 11:21:21 +08:00
|
|
|
public ITooltip<DailyChallengeStreakTooltipData> GetCustomTooltip() => new DailyChallengeStreakTooltip();
|
2024-07-28 10:24:29 +08:00
|
|
|
}
|
|
|
|
}
|