mirror of
https://github.com/osukey/osukey.git
synced 2025-05-03 12:47:28 +09:00
62 lines
2.1 KiB
C#
62 lines
2.1 KiB
C#
// 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.Extensions.LocalisationExtensions;
|
|
using osu.Framework.Graphics;
|
|
using osu.Framework.Graphics.Containers;
|
|
using osu.Game.Graphics;
|
|
using osu.Game.Graphics.Sprites;
|
|
using osu.Game.Online.API.Requests.Responses;
|
|
using osu.Game.Resources.Localisation.Web;
|
|
using osuTK;
|
|
|
|
namespace osu.Game.Overlays.Profile.Sections.Ranks
|
|
{
|
|
public class DrawableProfileWeightedScore : DrawableProfileScore
|
|
{
|
|
private readonly double weight;
|
|
|
|
public DrawableProfileWeightedScore(APIScore score, double weight)
|
|
: base(score)
|
|
{
|
|
this.weight = weight;
|
|
}
|
|
|
|
protected override Drawable CreateRightContent() => new FillFlowContainer
|
|
{
|
|
AutoSizeAxes = Axes.Both,
|
|
Direction = FillDirection.Vertical,
|
|
Origin = Anchor.CentreLeft,
|
|
Anchor = Anchor.CentreLeft,
|
|
Children = new Drawable[]
|
|
{
|
|
new FillFlowContainer
|
|
{
|
|
AutoSizeAxes = Axes.Both,
|
|
Direction = FillDirection.Horizontal,
|
|
Spacing = new Vector2(10, 0),
|
|
Children = new[]
|
|
{
|
|
CreateDrawableAccuracy(),
|
|
new Container
|
|
{
|
|
AutoSizeAxes = Axes.Y,
|
|
Width = 50,
|
|
Child = new OsuSpriteText
|
|
{
|
|
Font = OsuFont.GetFont(size: 14, weight: FontWeight.Bold, italics: true),
|
|
Text = $"{Score.PP * weight:0}pp",
|
|
},
|
|
}
|
|
}
|
|
},
|
|
new OsuSpriteText
|
|
{
|
|
Font = OsuFont.GetFont(size: 12),
|
|
Text = UsersStrings.ShowExtraTopRanksPpWeight(weight.ToLocalisableString("0%"))
|
|
}
|
|
}
|
|
};
|
|
}
|
|
}
|