2019-01-24 16:43:03 +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.
|
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;
|
2019-02-20 15:53:57 +08:00
|
|
|
|
using osu.Game.Graphics.Containers;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
|
|
namespace osu.Game.Screens.Backgrounds
|
|
|
|
|
{
|
2018-09-21 02:13:34 +08:00
|
|
|
|
public class BackgroundScreenBeatmap : BlurrableBackgroundScreen
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2019-02-15 15:57:53 +08:00
|
|
|
|
private WorkingBeatmap beatmap;
|
2019-02-24 19:03:24 +08:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Whether or not user dim settings should be applied to this Background.
|
|
|
|
|
/// </summary>
|
2019-02-28 17:25:58 +08:00
|
|
|
|
public readonly Bindable<bool> EnableUserDim = new Bindable<bool>();
|
2019-02-24 19:03:24 +08:00
|
|
|
|
|
2019-02-28 17:25:58 +08:00
|
|
|
|
public readonly Bindable<bool> StoryboardReplacesBackground = new Bindable<bool>();
|
2019-02-15 15:17:01 +08:00
|
|
|
|
|
2019-02-28 19:01:15 +08:00
|
|
|
|
private readonly UserDimContainer fadeContainer;
|
2019-02-24 19:03:24 +08:00
|
|
|
|
|
2019-02-22 19:34:51 +08:00
|
|
|
|
protected virtual UserDimContainer CreateFadeContainer() => new UserDimContainer { RelativeSizeAxes = Axes.Both };
|
2019-02-15 15:17:01 +08:00
|
|
|
|
|
2019-02-14 16:47:53 +08:00
|
|
|
|
public virtual WorkingBeatmap Beatmap
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2019-02-28 12:58:19 +08:00
|
|
|
|
get => beatmap;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
set
|
|
|
|
|
{
|
|
|
|
|
if (beatmap == value && beatmap != null)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
beatmap = value;
|
|
|
|
|
|
2019-03-11 23:05:05 +08:00
|
|
|
|
Schedule(() => { LoadComponentAsync(new BeatmapBackground(beatmap), b => Schedule(() => backgroundLoaded(b))); });
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2019-03-11 23:05:05 +08:00
|
|
|
|
private void backgroundLoaded(BeatmapBackground b)
|
|
|
|
|
{
|
|
|
|
|
float newDepth = 0;
|
|
|
|
|
if (Background != null)
|
|
|
|
|
{
|
|
|
|
|
newDepth = Background.Depth + 1;
|
|
|
|
|
Background.FinishTransforms();
|
|
|
|
|
Background.FadeOut(250);
|
|
|
|
|
Background.Expire();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
b.Depth = newDepth;
|
|
|
|
|
fadeContainer.Add(Background = b);
|
|
|
|
|
Background.BlurSigma = BlurTarget;
|
|
|
|
|
StoryboardReplacesBackground.BindTo(fadeContainer.StoryboardReplacesBackground);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
|
private void load()
|
|
|
|
|
{
|
|
|
|
|
if (beatmap != null)
|
|
|
|
|
backgroundLoaded(new BeatmapBackground(beatmap));
|
|
|
|
|
}
|
|
|
|
|
|
2018-04-13 17:19:50 +08:00
|
|
|
|
public BackgroundScreenBeatmap(WorkingBeatmap beatmap = null)
|
|
|
|
|
{
|
|
|
|
|
Beatmap = beatmap;
|
2019-02-28 19:01:15 +08:00
|
|
|
|
InternalChild = fadeContainer = CreateFadeContainer();
|
|
|
|
|
fadeContainer.EnableUserDim.BindTo(EnableUserDim);
|
2019-02-15 15:17:01 +08:00
|
|
|
|
}
|
|
|
|
|
|
2018-04-13 17:19:50 +08:00
|
|
|
|
public override bool Equals(BackgroundScreen other)
|
|
|
|
|
{
|
|
|
|
|
var otherBeatmapBackground = other as BackgroundScreenBeatmap;
|
|
|
|
|
if (otherBeatmapBackground == null) return false;
|
|
|
|
|
|
|
|
|
|
return base.Equals(other) && beatmap == otherBeatmapBackground.Beatmap;
|
|
|
|
|
}
|
|
|
|
|
|
2019-02-14 16:47:53 +08:00
|
|
|
|
protected class BeatmapBackground : Background
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
|
|
|
|
private readonly WorkingBeatmap beatmap;
|
|
|
|
|
|
|
|
|
|
public BeatmapBackground(WorkingBeatmap beatmap)
|
|
|
|
|
{
|
|
|
|
|
this.beatmap = beatmap;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[BackgroundDependencyLoader]
|
2018-08-31 06:04:40 +08:00
|
|
|
|
private void load(TextureStore textures)
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2018-08-31 06:04:40 +08:00
|
|
|
|
Sprite.Texture = beatmap?.Background ?? textures.Get(@"Backgrounds/bg1");
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|