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