2020-09-04 14:01:32 +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.
|
|
|
|
|
2022-06-17 15:37:17 +08:00
|
|
|
#nullable disable
|
|
|
|
|
2020-09-04 14:01:32 +08:00
|
|
|
using osu.Framework.Allocation;
|
|
|
|
using osu.Framework.Graphics.Sprites;
|
|
|
|
using osu.Framework.Graphics.Textures;
|
2022-06-20 21:02:15 +08:00
|
|
|
using osu.Game.Extensions;
|
2020-09-04 14:01:32 +08:00
|
|
|
|
|
|
|
namespace osu.Game.Beatmaps
|
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// A default implementation of an icon used to represent beatmap statistics.
|
|
|
|
/// </summary>
|
|
|
|
public partial class BeatmapStatisticIcon : Sprite
|
|
|
|
{
|
|
|
|
private readonly BeatmapStatisticsIconType iconType;
|
|
|
|
|
|
|
|
public BeatmapStatisticIcon(BeatmapStatisticsIconType iconType)
|
|
|
|
{
|
|
|
|
this.iconType = iconType;
|
|
|
|
}
|
|
|
|
|
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
private void load(TextureStore textures)
|
|
|
|
{
|
2022-06-20 21:02:15 +08:00
|
|
|
Texture = textures.Get($"Icons/BeatmapDetails/{iconType.ToString().ToKebabCase()}");
|
2020-09-04 14:01:32 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public enum BeatmapStatisticsIconType
|
|
|
|
{
|
|
|
|
Accuracy,
|
|
|
|
ApproachRate,
|
|
|
|
Bpm,
|
|
|
|
Circles,
|
|
|
|
HpDrain,
|
|
|
|
Length,
|
|
|
|
OverallDifficulty,
|
|
|
|
Size,
|
|
|
|
Sliders,
|
|
|
|
Spinners,
|
|
|
|
}
|
|
|
|
}
|