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

88 lines
2.6 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 osu.Framework.Allocation;
using osu.Framework.Configuration;
2018-04-13 17:19:50 +08:00
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
2018-04-13 17:19:50 +08:00
using osu.Framework.Graphics.Textures;
using osu.Framework.Screens;
2018-04-13 17:19:50 +08:00
using osu.Game.Beatmaps;
using osu.Game.Configuration;
using osu.Game.Graphics;
2018-04-13 17:19:50 +08:00
using osu.Game.Graphics.Backgrounds;
using osuTK;
2018-04-13 17:19:50 +08:00
namespace osu.Game.Screens.Backgrounds
{
public class BackgroundScreenBeatmap : BlurrableBackgroundScreen
2018-04-13 17:19:50 +08:00
{
protected WorkingBeatmap beatmap;
public virtual WorkingBeatmap Beatmap
2018-04-13 17:19:50 +08:00
{
get { return beatmap; }
set
{
if (beatmap == value && beatmap != null)
return;
beatmap = value;
Schedule(() =>
{
LoadComponentAsync(new BeatmapBackground(beatmap), b => Schedule(() =>
2018-04-13 17:19:50 +08:00
{
float newDepth = 0;
if (Background != null)
2018-04-13 17:19:50 +08:00
{
newDepth = Background.Depth + 1;
Background.FinishTransforms();
Background.FadeOut(250);
Background.Expire();
2018-04-13 17:19:50 +08:00
}
b.Depth = newDepth;
AddBackground(Background = b);
Background.BlurSigma = BlurTarget;
}));
2018-04-13 17:19:50 +08:00
});
}
}
protected virtual void AddBackground(Drawable d)
{
AddInternal(d);
}
2018-04-13 17:19:50 +08:00
public BackgroundScreenBeatmap(WorkingBeatmap beatmap = null)
{
Beatmap = beatmap;
}
public override bool Equals(BackgroundScreen other)
{
var otherBeatmapBackground = other as BackgroundScreenBeatmap;
if (otherBeatmapBackground == null) return false;
return base.Equals(other) && beatmap == otherBeatmapBackground.Beatmap;
}
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
}
}
}
}