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

116 lines
3.7 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 System.Threading;
2018-04-13 17:19:50 +08:00
using osu.Framework.Allocation;
2019-02-22 19:44:02 +08:00
using osu.Framework.Bindables;
2018-04-13 17:19:50 +08:00
using osu.Framework.Graphics;
using osu.Framework.Graphics.Textures;
using osu.Game.Beatmaps;
using osu.Game.Graphics.Backgrounds;
using osu.Game.Graphics.Containers;
2018-04-13 17:19:50 +08:00
namespace osu.Game.Screens.Backgrounds
{
public class BackgroundScreenBeatmap : BackgroundScreen
2018-04-13 17:19:50 +08:00
{
protected Background Background;
2019-02-15 15:57:53 +08:00
private WorkingBeatmap beatmap;
/// <summary>
/// Whether or not user dim settings should be applied to this Background.
/// </summary>
public readonly Bindable<bool> EnableUserDim = new Bindable<bool>();
public readonly Bindable<bool> StoryboardReplacesBackground = new Bindable<bool>();
2019-02-15 15:17:01 +08:00
/// <summary>
/// The amount of blur to be applied in addition to user-specified blur.
/// </summary>
public readonly Bindable<float> BlurAmount = new Bindable<float>();
2019-03-19 12:06:14 +08:00
private readonly UserDimContainer fadeContainer;
2019-03-19 12:06:14 +08:00
protected virtual UserDimContainer CreateFadeContainer() => new UserDimContainer { RelativeSizeAxes = Axes.Both };
2019-02-15 15:17:01 +08:00
2019-03-12 11:56:01 +08:00
public BackgroundScreenBeatmap(WorkingBeatmap beatmap = null)
{
Beatmap = beatmap;
InternalChild = fadeContainer = CreateFadeContainer();
fadeContainer.EnableUserDim.BindTo(EnableUserDim);
2019-03-20 13:37:32 +08:00
fadeContainer.BlurAmount.BindTo(BlurAmount);
2019-03-12 11:56:01 +08:00
}
[BackgroundDependencyLoader]
private void load()
{
var background = new BeatmapBackground(beatmap);
LoadComponent(background);
switchBackground(background);
2019-03-12 11:56:01 +08:00
}
private CancellationTokenSource cancellationSource;
2019-03-12 13:01:27 +08:00
public WorkingBeatmap Beatmap
2018-04-13 17:19:50 +08:00
{
get => beatmap;
2018-04-13 17:19:50 +08:00
set
{
if (beatmap == value && beatmap != null)
return;
beatmap = value;
Schedule(() =>
{
if ((Background as BeatmapBackground)?.Beatmap == beatmap)
return;
2019-03-12 11:55:54 +08:00
cancellationSource?.Cancel();
LoadComponentAsync(new BeatmapBackground(beatmap), switchBackground, (cancellationSource = new CancellationTokenSource()).Token);
2018-04-13 17:19:50 +08:00
});
}
}
private void switchBackground(BeatmapBackground b)
2018-04-13 17:19:50 +08:00
{
float newDepth = 0;
if (Background != null)
{
newDepth = Background.Depth + 1;
Background.FinishTransforms();
Background.FadeOut(250);
Background.Expire();
}
b.Depth = newDepth;
fadeContainer.Background = Background = b;
StoryboardReplacesBackground.BindTo(fadeContainer.StoryboardReplacesBackground);
2019-02-15 15:17:01 +08:00
}
2018-04-13 17:19:50 +08:00
public override bool Equals(BackgroundScreen other)
{
if (!(other is BackgroundScreenBeatmap otherBeatmapBackground)) return false;
2018-04-13 17:19:50 +08:00
return base.Equals(other) && beatmap == otherBeatmapBackground.Beatmap;
}
protected class BeatmapBackground : Background
2018-04-13 17:19:50 +08:00
{
public readonly WorkingBeatmap Beatmap;
2018-04-13 17:19:50 +08:00
public BeatmapBackground(WorkingBeatmap beatmap)
{
Beatmap = beatmap;
2018-04-13 17:19:50 +08:00
}
[BackgroundDependencyLoader]
2018-08-31 06:04:40 +08:00
private void load(TextureStore textures)
2018-04-13 17:19:50 +08:00
{
Sprite.Texture = Beatmap?.Background ?? textures.Get(@"Backgrounds/bg1");
2018-04-13 17:19:50 +08:00
}
}
}
}