1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 16:47:24 +08:00
osu-lazer/osu.Game/Screens/OnlinePlay/Components/OnlinePlayBackgroundScreen.cs

108 lines
3.1 KiB
C#
Raw Normal View History

2021-08-19 18:10:54 +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.Threading;
2021-08-20 16:05:46 +08:00
using osu.Framework.Allocation;
using osu.Framework.Extensions.Color4Extensions;
2021-08-19 18:10:54 +08:00
using osu.Framework.Graphics;
using osu.Framework.Graphics.Colour;
using osu.Framework.Graphics.Shapes;
2021-08-20 16:50:49 +08:00
using osu.Framework.Screens;
using osu.Game.Beatmaps;
2021-08-19 18:10:54 +08:00
using osu.Game.Online.Rooms;
using osuTK;
using osuTK.Graphics;
2021-08-19 18:10:54 +08:00
2021-08-20 17:14:12 +08:00
#nullable enable
2021-08-19 18:10:54 +08:00
namespace osu.Game.Screens.OnlinePlay.Components
{
2021-08-20 17:14:12 +08:00
public abstract class OnlinePlayBackgroundScreen : BackgroundScreen
2021-08-19 18:10:54 +08:00
{
private CancellationTokenSource? cancellationSource;
private PlaylistItemBackground? background;
2021-08-20 17:14:12 +08:00
protected OnlinePlayBackgroundScreen()
2021-08-20 16:05:46 +08:00
: base(false)
2021-08-19 18:10:54 +08:00
{
AddInternal(new Box
{
RelativeSizeAxes = Axes.Both,
Depth = float.MinValue,
Colour = ColourInfo.GradientVertical(Color4.Black.Opacity(0.9f), Color4.Black.Opacity(0.6f))
});
2021-08-19 18:10:54 +08:00
}
2021-08-20 16:05:46 +08:00
[BackgroundDependencyLoader]
private void load()
{
2021-08-20 17:14:12 +08:00
switchBackground(new PlaylistItemBackground(playlistItem));
2021-08-20 16:05:46 +08:00
}
2021-08-20 17:14:12 +08:00
private PlaylistItem? playlistItem;
2021-08-19 18:10:54 +08:00
2021-08-20 17:14:12 +08:00
protected PlaylistItem? PlaylistItem
2021-08-19 18:10:54 +08:00
{
2021-08-20 17:14:12 +08:00
get => playlistItem;
2021-08-19 18:10:54 +08:00
set
{
2021-08-20 17:14:12 +08:00
if (playlistItem == value)
2021-08-19 18:10:54 +08:00
return;
2021-08-20 17:14:12 +08:00
playlistItem = value;
2021-08-19 18:10:54 +08:00
2021-08-20 17:14:12 +08:00
if (LoadState > LoadState.Ready)
updateBackground();
2021-08-19 18:10:54 +08:00
}
}
private void updateBackground()
{
Schedule(() =>
{
var beatmap = playlistItem?.APIBeatmap;
2021-08-19 18:10:54 +08:00
string? lastCover = (background?.Beatmap?.BeatmapSet as IBeatmapSetOnlineInfo)?.Covers.Cover;
string? newCover = beatmap?.BeatmapSet?.Covers.Cover;
if (lastCover == newCover)
2021-08-19 18:10:54 +08:00
return;
cancellationSource?.Cancel();
LoadComponentAsync(new PlaylistItemBackground(playlistItem), switchBackground, (cancellationSource = new CancellationTokenSource()).Token);
});
}
private void switchBackground(PlaylistItemBackground newBackground)
{
float newDepth = 0;
if (background != null)
{
newDepth = background.Depth + 1;
background.FinishTransforms();
background.FadeOut(250);
background.Expire();
}
newBackground.Depth = newDepth;
newBackground.BlurTo(new Vector2(10));
AddInternal(background = newBackground);
}
2021-08-20 16:50:49 +08:00
public override void OnSuspending(IScreen next)
{
base.OnSuspending(next);
this.MoveToX(0, TRANSITION_LENGTH);
}
public override bool OnExiting(IScreen next)
{
bool result = base.OnExiting(next);
2021-08-20 16:50:49 +08:00
this.MoveToX(0);
return result;
}
2021-08-19 18:10:54 +08:00
}
}