mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 06:09:34 +08:00
42 lines
1.4 KiB
C#
42 lines
1.4 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.
|
|
|
|
#nullable disable
|
|
|
|
using osu.Framework.Allocation;
|
|
using osu.Framework.Graphics;
|
|
using osu.Game.Beatmaps.Drawables;
|
|
using osu.Game.Online.Rooms;
|
|
|
|
namespace osu.Game.Screens.OnlinePlay.Components
|
|
{
|
|
public partial class OnlinePlayBackgroundSprite : OnlinePlayComposite
|
|
{
|
|
protected readonly BeatmapSetCoverType BeatmapSetCoverType;
|
|
private UpdateableBeatmapBackgroundSprite sprite;
|
|
|
|
public OnlinePlayBackgroundSprite(BeatmapSetCoverType beatmapSetCoverType = BeatmapSetCoverType.Cover)
|
|
{
|
|
BeatmapSetCoverType = beatmapSetCoverType;
|
|
}
|
|
|
|
[BackgroundDependencyLoader]
|
|
private void load()
|
|
{
|
|
InternalChild = sprite = CreateBackgroundSprite();
|
|
|
|
CurrentPlaylistItem.BindValueChanged(_ => updateBeatmap());
|
|
Playlist.CollectionChanged += (_, _) => updateBeatmap();
|
|
|
|
updateBeatmap();
|
|
}
|
|
|
|
private void updateBeatmap()
|
|
{
|
|
sprite.Beatmap.Value = CurrentPlaylistItem.Value?.Beatmap ?? Playlist.GetCurrentItem()?.Beatmap;
|
|
}
|
|
|
|
protected virtual UpdateableBeatmapBackgroundSprite CreateBackgroundSprite() => new UpdateableBeatmapBackgroundSprite(BeatmapSetCoverType) { RelativeSizeAxes = Axes.Both };
|
|
}
|
|
}
|