2024-01-02 22:33:36 +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.Extensions.LocalisationExtensions;
|
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
|
using osu.Framework.Graphics.Containers;
|
|
|
|
|
using osu.Framework.Input.Events;
|
|
|
|
|
using osu.Framework.Localisation;
|
2024-01-03 16:32:32 +08:00
|
|
|
|
using osu.Game.Online.API;
|
2024-01-02 22:33:36 +08:00
|
|
|
|
using osu.Game.Online.API.Requests.Responses;
|
|
|
|
|
using osu.Game.Overlays.Profile.Header.Components;
|
|
|
|
|
using osu.Game.Resources.Localisation.Web;
|
|
|
|
|
using osuTK;
|
|
|
|
|
|
|
|
|
|
namespace osu.Game.Users
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// User card that shows user's global and country ranks in the bottom.
|
|
|
|
|
/// Meant to be used in the toolbar login overlay.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public partial class UserRankPanel : UserPanel
|
|
|
|
|
{
|
|
|
|
|
private const int padding = 10;
|
|
|
|
|
private const int main_content_height = 80;
|
|
|
|
|
|
2024-01-03 16:32:32 +08:00
|
|
|
|
[Resolved]
|
|
|
|
|
private IAPIProvider api { get; set; } = null!;
|
|
|
|
|
|
|
|
|
|
private ProfileValueDisplay globalRankDisplay = null!;
|
|
|
|
|
private ProfileValueDisplay countryRankDisplay = null!;
|
|
|
|
|
|
2024-01-02 22:33:36 +08:00
|
|
|
|
public UserRankPanel(APIUser user)
|
|
|
|
|
: base(user)
|
|
|
|
|
{
|
|
|
|
|
AutoSizeAxes = Axes.Y;
|
|
|
|
|
CornerRadius = 10;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
|
private void load()
|
|
|
|
|
{
|
|
|
|
|
BorderColour = ColourProvider?.Light1 ?? Colours.GreyVioletLighter;
|
2024-01-03 16:32:32 +08:00
|
|
|
|
|
|
|
|
|
api.Statistics.ValueChanged += e =>
|
|
|
|
|
{
|
|
|
|
|
globalRankDisplay.Content = e.NewValue?.GlobalRank?.ToLocalisableString("\\##,##0") ?? (LocalisableString)"-";
|
|
|
|
|
countryRankDisplay.Content = e.NewValue?.CountryRank?.ToLocalisableString("\\##,##0") ?? (LocalisableString)"-";
|
|
|
|
|
};
|
2024-01-02 22:33:36 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override Drawable CreateLayout()
|
|
|
|
|
{
|
|
|
|
|
FillFlowContainer details;
|
|
|
|
|
|
|
|
|
|
var layout = new Container
|
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.X,
|
|
|
|
|
AutoSizeAxes = Axes.Y,
|
|
|
|
|
Children = new Drawable[]
|
|
|
|
|
{
|
|
|
|
|
new Container
|
|
|
|
|
{
|
|
|
|
|
Name = "Main content",
|
|
|
|
|
RelativeSizeAxes = Axes.X,
|
|
|
|
|
Height = main_content_height,
|
|
|
|
|
CornerRadius = 10,
|
|
|
|
|
Masking = true,
|
|
|
|
|
Children = new Drawable[]
|
|
|
|
|
{
|
|
|
|
|
new UserCoverBackground
|
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
|
Anchor = Anchor.Centre,
|
|
|
|
|
Origin = Anchor.Centre,
|
|
|
|
|
User = User,
|
|
|
|
|
Alpha = 0.3f
|
|
|
|
|
},
|
|
|
|
|
new GridContainer
|
|
|
|
|
{
|
|
|
|
|
AutoSizeAxes = Axes.Y,
|
|
|
|
|
RelativeSizeAxes = Axes.X,
|
|
|
|
|
ColumnDimensions = new[]
|
|
|
|
|
{
|
|
|
|
|
new Dimension(GridSizeMode.Absolute, padding),
|
|
|
|
|
new Dimension(GridSizeMode.AutoSize),
|
|
|
|
|
new Dimension(),
|
|
|
|
|
new Dimension(GridSizeMode.Absolute, padding),
|
|
|
|
|
},
|
|
|
|
|
RowDimensions = new[]
|
|
|
|
|
{
|
|
|
|
|
new Dimension(GridSizeMode.Absolute, padding),
|
|
|
|
|
new Dimension(GridSizeMode.AutoSize),
|
|
|
|
|
},
|
|
|
|
|
Content = new[]
|
|
|
|
|
{
|
|
|
|
|
new[]
|
|
|
|
|
{
|
2024-01-03 19:39:48 +08:00
|
|
|
|
// padding
|
2024-01-02 22:33:36 +08:00
|
|
|
|
Empty(),
|
|
|
|
|
Empty(),
|
|
|
|
|
Empty(),
|
|
|
|
|
Empty()
|
|
|
|
|
},
|
|
|
|
|
new[]
|
|
|
|
|
{
|
2024-01-03 19:39:48 +08:00
|
|
|
|
Empty(), // padding
|
2024-01-02 22:33:36 +08:00
|
|
|
|
CreateAvatar().With(avatar =>
|
|
|
|
|
{
|
|
|
|
|
avatar.Size = new Vector2(60);
|
|
|
|
|
avatar.Masking = true;
|
|
|
|
|
avatar.CornerRadius = 6;
|
|
|
|
|
}),
|
|
|
|
|
new Container
|
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
|
Padding = new MarginPadding { Left = padding },
|
|
|
|
|
Child = new GridContainer
|
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
|
ColumnDimensions = new[]
|
|
|
|
|
{
|
|
|
|
|
new Dimension()
|
|
|
|
|
},
|
|
|
|
|
RowDimensions = new[]
|
|
|
|
|
{
|
|
|
|
|
new Dimension(GridSizeMode.AutoSize),
|
|
|
|
|
new Dimension()
|
|
|
|
|
},
|
|
|
|
|
Content = new[]
|
|
|
|
|
{
|
|
|
|
|
new Drawable[]
|
|
|
|
|
{
|
|
|
|
|
details = new FillFlowContainer
|
|
|
|
|
{
|
|
|
|
|
AutoSizeAxes = Axes.Both,
|
|
|
|
|
Direction = FillDirection.Horizontal,
|
|
|
|
|
Spacing = new Vector2(6),
|
|
|
|
|
Children = new Drawable[]
|
|
|
|
|
{
|
|
|
|
|
CreateFlag(),
|
2024-01-03 19:39:48 +08:00
|
|
|
|
// supporter icon is being added later
|
2024-01-02 22:33:36 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
new Drawable[]
|
|
|
|
|
{
|
|
|
|
|
CreateUsername().With(username =>
|
|
|
|
|
{
|
|
|
|
|
username.Anchor = Anchor.CentreLeft;
|
|
|
|
|
username.Origin = Anchor.CentreLeft;
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
},
|
2024-01-03 19:39:48 +08:00
|
|
|
|
Empty() // padding
|
2024-01-02 22:33:36 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
new Container
|
|
|
|
|
{
|
|
|
|
|
Name = "Bottom content",
|
|
|
|
|
Margin = new MarginPadding { Top = main_content_height },
|
|
|
|
|
RelativeSizeAxes = Axes.X,
|
|
|
|
|
AutoSizeAxes = Axes.Y,
|
|
|
|
|
Padding = new MarginPadding { Left = 80, Vertical = padding },
|
|
|
|
|
Child = new GridContainer
|
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.X,
|
|
|
|
|
AutoSizeAxes = Axes.Y,
|
|
|
|
|
ColumnDimensions = new[]
|
|
|
|
|
{
|
|
|
|
|
new Dimension(),
|
|
|
|
|
new Dimension()
|
|
|
|
|
},
|
|
|
|
|
RowDimensions = new[] { new Dimension(GridSizeMode.AutoSize) },
|
|
|
|
|
Content = new[]
|
|
|
|
|
{
|
|
|
|
|
new Drawable[]
|
|
|
|
|
{
|
2024-01-03 16:32:32 +08:00
|
|
|
|
globalRankDisplay = new ProfileValueDisplay(true)
|
2024-01-02 22:33:36 +08:00
|
|
|
|
{
|
|
|
|
|
Title = UsersStrings.ShowRankGlobalSimple,
|
|
|
|
|
Content = User.Statistics?.GlobalRank?.ToLocalisableString("\\##,##0") ?? (LocalisableString)"-"
|
|
|
|
|
},
|
2024-01-03 16:32:32 +08:00
|
|
|
|
countryRankDisplay = new ProfileValueDisplay(true)
|
2024-01-02 22:33:36 +08:00
|
|
|
|
{
|
|
|
|
|
Title = UsersStrings.ShowRankCountrySimple,
|
|
|
|
|
Content = User.Statistics?.CountryRank?.ToLocalisableString("\\##,##0") ?? (LocalisableString)"-"
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
if (User.IsSupporter)
|
|
|
|
|
{
|
|
|
|
|
details.Add(new SupporterIcon
|
|
|
|
|
{
|
|
|
|
|
Height = 26,
|
|
|
|
|
SupportLevel = User.SupportLevel
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return layout;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override bool OnHover(HoverEvent e)
|
|
|
|
|
{
|
|
|
|
|
BorderThickness = 2;
|
|
|
|
|
return base.OnHover(e);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override void OnHoverLost(HoverLostEvent e)
|
|
|
|
|
{
|
|
|
|
|
BorderThickness = 0;
|
|
|
|
|
base.OnHoverLost(e);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override Drawable? CreateBackground() => null;
|
|
|
|
|
}
|
|
|
|
|
}
|