mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 14:27:31 +08:00
49 lines
1.6 KiB
C#
49 lines
1.6 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.Allocation;
|
|
using osu.Framework.Graphics;
|
|
using osu.Framework.Graphics.Containers;
|
|
using osu.Game.Beatmaps;
|
|
using osu.Game.Graphics.Containers;
|
|
using osu.Game.Graphics.UserInterface;
|
|
|
|
namespace osu.Game.Overlays.Profile.Sections
|
|
{
|
|
/// <summary>
|
|
/// Display artist/title/mapper information, commonly used as the left portion of a profile or score display row.
|
|
/// </summary>
|
|
public abstract class BeatmapMetadataContainer : OsuHoverContainer
|
|
{
|
|
private readonly BeatmapInfo beatmap;
|
|
|
|
protected BeatmapMetadataContainer(BeatmapInfo beatmap)
|
|
: base(HoverSampleSet.Submit)
|
|
{
|
|
this.beatmap = beatmap;
|
|
|
|
AutoSizeAxes = Axes.Both;
|
|
}
|
|
|
|
[BackgroundDependencyLoader(true)]
|
|
private void load(BeatmapSetOverlay beatmapSetOverlay)
|
|
{
|
|
Action = () =>
|
|
{
|
|
if (beatmap.OnlineBeatmapID != null)
|
|
beatmapSetOverlay?.FetchAndShowBeatmap(beatmap.OnlineBeatmapID.Value);
|
|
else if (beatmap.BeatmapSet?.OnlineBeatmapSetID != null)
|
|
beatmapSetOverlay?.FetchAndShowBeatmapSet(beatmap.BeatmapSet.OnlineBeatmapSetID.Value);
|
|
};
|
|
|
|
Child = new FillFlowContainer
|
|
{
|
|
AutoSizeAxes = Axes.Both,
|
|
Children = CreateText(beatmap),
|
|
};
|
|
}
|
|
|
|
protected abstract Drawable[] CreateText(BeatmapInfo beatmap);
|
|
}
|
|
}
|