mirror of
https://github.com/ppy/osu.git
synced 2024-11-07 03:17:28 +08:00
65 lines
1.8 KiB
C#
65 lines
1.8 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 System;
|
|
using osu.Framework.Allocation;
|
|
using osu.Framework.Graphics;
|
|
using osu.Framework.Graphics.Containers;
|
|
using osu.Game.Graphics;
|
|
using osu.Game.Graphics.UserInterface;
|
|
using System.Linq;
|
|
using osu.Game.Beatmaps;
|
|
|
|
namespace osu.Game.Screens.Select.Details
|
|
{
|
|
public class FailRetryGraph : Container
|
|
{
|
|
private readonly BarGraph retryGraph, failGraph;
|
|
|
|
private BeatmapMetrics metrics;
|
|
|
|
public BeatmapMetrics Metrics
|
|
{
|
|
get => metrics;
|
|
set
|
|
{
|
|
if (value == metrics) return;
|
|
|
|
metrics = value;
|
|
|
|
var retries = Metrics?.Retries ?? Array.Empty<int>();
|
|
var fails = Metrics?.Fails ?? Array.Empty<int>();
|
|
|
|
float maxValue = fails.Any() ? fails.Zip(retries, (fail, retry) => fail + retry).Max() : 0;
|
|
failGraph.MaxValue = maxValue;
|
|
retryGraph.MaxValue = maxValue;
|
|
|
|
failGraph.Values = fails.Select(f => (float)f);
|
|
retryGraph.Values = retries.Zip(fails, (retry, fail) => retry + Math.Clamp(fail, 0, maxValue));
|
|
}
|
|
}
|
|
|
|
public FailRetryGraph()
|
|
{
|
|
Children = new[]
|
|
{
|
|
retryGraph = new BarGraph
|
|
{
|
|
RelativeSizeAxes = Axes.Both,
|
|
},
|
|
failGraph = new BarGraph
|
|
{
|
|
RelativeSizeAxes = Axes.Both,
|
|
},
|
|
};
|
|
}
|
|
|
|
[BackgroundDependencyLoader]
|
|
private void load(OsuColour colours)
|
|
{
|
|
retryGraph.Colour = colours.Yellow;
|
|
failGraph.Colour = colours.YellowDarker;
|
|
}
|
|
}
|
|
}
|