2019-01-24 16:43:03 +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.
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2022-06-17 15:37:17 +08:00
|
|
|
|
#nullable disable
|
|
|
|
|
|
2018-04-13 17:19:50 +08:00
|
|
|
|
using osu.Framework.Allocation;
|
2021-08-29 20:00:28 +08:00
|
|
|
|
using osu.Framework.Extensions.LocalisationExtensions;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
|
using osu.Framework.Graphics.Containers;
|
2022-04-02 23:08:57 +08:00
|
|
|
|
using osu.Framework.Graphics.Cursor;
|
|
|
|
|
using osu.Framework.Localisation;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
using osu.Game.Graphics;
|
|
|
|
|
using osu.Game.Graphics.Sprites;
|
|
|
|
|
using osu.Game.Graphics.UserInterface;
|
2021-10-29 16:58:46 +08:00
|
|
|
|
using osu.Game.Online.API.Requests.Responses;
|
2021-08-13 01:19:03 +08:00
|
|
|
|
using osu.Game.Resources.Localisation.Web;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
using osu.Game.Screens.Select.Details;
|
|
|
|
|
|
|
|
|
|
namespace osu.Game.Overlays.BeatmapSet
|
|
|
|
|
{
|
2022-11-24 13:32:20 +08:00
|
|
|
|
public partial class SuccessRate : Container
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2019-06-13 17:44:00 +08:00
|
|
|
|
protected readonly FailRetryGraph Graph;
|
|
|
|
|
|
2018-04-13 17:19:50 +08:00
|
|
|
|
private readonly FillFlowContainer header;
|
2022-04-02 23:08:57 +08:00
|
|
|
|
private readonly SuccessRatePercentage successPercent;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
private readonly Bar successRate;
|
|
|
|
|
private readonly Container percentContainer;
|
|
|
|
|
|
2021-10-29 16:58:46 +08:00
|
|
|
|
private APIBeatmap beatmap;
|
2019-02-28 12:31:40 +08:00
|
|
|
|
|
2021-10-29 16:58:46 +08:00
|
|
|
|
public APIBeatmap Beatmap
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2021-10-29 16:58:46 +08:00
|
|
|
|
get => beatmap;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
set
|
|
|
|
|
{
|
2021-10-29 16:58:46 +08:00
|
|
|
|
if (value == beatmap) return;
|
2019-02-28 12:31:40 +08:00
|
|
|
|
|
2021-10-29 16:58:46 +08:00
|
|
|
|
beatmap = value;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2018-04-18 15:04:02 +08:00
|
|
|
|
updateDisplay();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void updateDisplay()
|
|
|
|
|
{
|
2021-10-29 16:58:46 +08:00
|
|
|
|
int passCount = beatmap?.PassCount ?? 0;
|
|
|
|
|
int playCount = beatmap?.PlayCount ?? 0;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2021-10-27 12:04:41 +08:00
|
|
|
|
float rate = playCount != 0 ? (float)passCount / playCount : 0;
|
2021-08-16 18:46:41 +08:00
|
|
|
|
successPercent.Text = rate.ToLocalisableString(@"0.#%");
|
2022-04-02 23:08:57 +08:00
|
|
|
|
successPercent.TooltipText = $"{passCount} / {playCount}";
|
2018-04-18 15:04:02 +08:00
|
|
|
|
successRate.Length = rate;
|
|
|
|
|
percentContainer.ResizeWidthTo(successRate.Length, 250, Easing.InOutCubic);
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2021-10-29 16:58:46 +08:00
|
|
|
|
Graph.FailTimes = beatmap?.FailTimes;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public SuccessRate()
|
|
|
|
|
{
|
|
|
|
|
Children = new Drawable[]
|
|
|
|
|
{
|
|
|
|
|
header = new FillFlowContainer
|
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.X,
|
|
|
|
|
AutoSizeAxes = Axes.Y,
|
|
|
|
|
Direction = FillDirection.Vertical,
|
|
|
|
|
Children = new Drawable[]
|
|
|
|
|
{
|
2020-02-04 19:00:18 +08:00
|
|
|
|
new OsuSpriteText
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
|
|
|
|
Anchor = Anchor.TopCentre,
|
|
|
|
|
Origin = Anchor.TopCentre,
|
2021-08-13 01:19:03 +08:00
|
|
|
|
Text = BeatmapsetsStrings.ShowInfoSuccessRate,
|
2020-02-17 04:43:33 +08:00
|
|
|
|
Font = OsuFont.GetFont(size: 12)
|
2018-04-13 17:19:50 +08:00
|
|
|
|
},
|
|
|
|
|
successRate = new Bar
|
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.X,
|
|
|
|
|
Height = 5,
|
|
|
|
|
Margin = new MarginPadding { Top = 5 },
|
|
|
|
|
},
|
|
|
|
|
percentContainer = new Container
|
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.X,
|
|
|
|
|
AutoSizeAxes = Axes.Y,
|
|
|
|
|
Width = 0f,
|
2022-04-02 23:08:57 +08:00
|
|
|
|
Child = successPercent = new SuccessRatePercentage
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
|
|
|
|
Anchor = Anchor.TopRight,
|
|
|
|
|
Origin = Anchor.TopCentre,
|
2020-02-17 04:43:33 +08:00
|
|
|
|
Font = OsuFont.GetFont(size: 12),
|
2018-04-13 17:19:50 +08:00
|
|
|
|
},
|
|
|
|
|
},
|
2020-02-04 19:00:18 +08:00
|
|
|
|
new OsuSpriteText
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
|
|
|
|
Anchor = Anchor.TopCentre,
|
|
|
|
|
Origin = Anchor.TopCentre,
|
2021-08-13 01:19:03 +08:00
|
|
|
|
Text = BeatmapsetsStrings.ShowInfoPointsOfFailure,
|
2020-02-17 04:43:33 +08:00
|
|
|
|
Font = OsuFont.GetFont(size: 12),
|
2018-04-13 17:19:50 +08:00
|
|
|
|
Margin = new MarginPadding { Vertical = 20 },
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
},
|
2019-06-13 17:44:00 +08:00
|
|
|
|
Graph = new FailRetryGraph
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
|
|
|
|
Anchor = Anchor.BottomLeft,
|
|
|
|
|
Origin = Anchor.BottomLeft,
|
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
|
},
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[BackgroundDependencyLoader]
|
2020-02-05 02:55:19 +08:00
|
|
|
|
private void load(OsuColour colours, OverlayColourProvider colourProvider)
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
|
|
|
|
successRate.AccentColour = colours.Green;
|
2020-02-05 02:55:19 +08:00
|
|
|
|
successRate.BackgroundColour = colourProvider.Background6;
|
2018-04-18 15:04:02 +08:00
|
|
|
|
|
|
|
|
|
updateDisplay();
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override void UpdateAfterChildren()
|
|
|
|
|
{
|
|
|
|
|
base.UpdateAfterChildren();
|
|
|
|
|
|
2019-06-13 17:44:00 +08:00
|
|
|
|
Graph.Padding = new MarginPadding { Top = header.DrawHeight };
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
2022-04-02 23:08:57 +08:00
|
|
|
|
|
2022-11-24 13:32:20 +08:00
|
|
|
|
private partial class SuccessRatePercentage : OsuSpriteText, IHasTooltip
|
2022-04-02 23:08:57 +08:00
|
|
|
|
{
|
|
|
|
|
public LocalisableString TooltipText { get; set; }
|
|
|
|
|
}
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
}
|