1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-30 00:07:25 +08:00
osu-lazer/osu.Game/Overlays/Profile/Sections/BeatmapMetadataContainer.cs

49 lines
1.6 KiB
C#
Raw Normal View History

// 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
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;
2018-04-13 17:19:50 +08:00
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.
2018-04-13 17:19:50 +08:00
/// </summary>
public abstract class BeatmapMetadataContainer : OsuHoverContainer
2018-04-13 17:19:50 +08:00
{
2021-10-02 23:55:29 +08:00
private readonly BeatmapInfo beatmapInfo;
2018-04-13 17:19:50 +08:00
2021-10-02 23:55:29 +08:00
protected BeatmapMetadataContainer(BeatmapInfo beatmapInfo)
: base(HoverSampleSet.Submit)
2018-04-13 17:19:50 +08:00
{
2021-10-02 23:55:29 +08:00
this.beatmapInfo = beatmapInfo;
2019-07-18 19:17:19 +08:00
2018-04-13 17:19:50 +08:00
AutoSizeAxes = Axes.Both;
}
[BackgroundDependencyLoader(true)]
private void load(BeatmapSetOverlay beatmapSetOverlay)
2018-04-13 17:19:50 +08:00
{
Action = () =>
{
2021-10-02 23:55:29 +08:00
if (beatmapInfo.OnlineBeatmapID != null)
beatmapSetOverlay?.FetchAndShowBeatmap(beatmapInfo.OnlineBeatmapID.Value);
else if (beatmapInfo.BeatmapSet?.OnlineBeatmapSetID != null)
beatmapSetOverlay?.FetchAndShowBeatmapSet(beatmapInfo.BeatmapSet.OnlineBeatmapSetID.Value);
2018-04-13 17:19:50 +08:00
};
Child = new FillFlowContainer
{
AutoSizeAxes = Axes.Both,
2021-10-02 23:55:29 +08:00
Children = CreateText(beatmapInfo),
2018-04-13 17:19:50 +08:00
};
}
2021-10-02 23:55:29 +08:00
protected abstract Drawable[] CreateText(BeatmapInfo beatmapInfo);
2018-04-13 17:19:50 +08:00
}
}