2021-09-05 23:26:09 +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 System;
|
|
|
|
using osu.Framework.Graphics.Sprites;
|
|
|
|
using osu.Game.Beatmaps;
|
|
|
|
using osu.Game.Graphics.UserInterface;
|
|
|
|
|
|
|
|
namespace osu.Game.Screens.Edit.Components.Menus
|
|
|
|
{
|
|
|
|
public class DifficultyMenuItem : StatefulMenuItem<bool>
|
|
|
|
{
|
2021-10-02 23:55:29 +08:00
|
|
|
public BeatmapInfo BeatmapInfo { get; }
|
2021-09-06 00:32:38 +08:00
|
|
|
|
2021-09-05 23:26:09 +08:00
|
|
|
public DifficultyMenuItem(BeatmapInfo beatmapInfo, bool selected, Action<BeatmapInfo> difficultyChangeFunc)
|
2021-11-11 16:19:53 +08:00
|
|
|
: base(beatmapInfo.DifficultyName ?? "(unnamed)", null)
|
2021-09-05 23:26:09 +08:00
|
|
|
{
|
2021-10-02 23:55:29 +08:00
|
|
|
BeatmapInfo = beatmapInfo;
|
2021-09-05 23:26:09 +08:00
|
|
|
State.Value = selected;
|
|
|
|
|
|
|
|
if (!selected)
|
|
|
|
Action.Value = () => difficultyChangeFunc.Invoke(beatmapInfo);
|
|
|
|
}
|
|
|
|
|
|
|
|
public override IconUsage? GetIconForState(bool state) => state ? (IconUsage?)FontAwesome.Solid.Check : null;
|
|
|
|
}
|
|
|
|
}
|