1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 15:27:26 +08:00
osu-lazer/osu.Game/Screens/Play/PlayerLoader.cs

413 lines
14 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
2018-12-26 21:16:35 +08:00
using System;
using System.Linq;
2018-04-13 17:19:50 +08:00
using System.Threading.Tasks;
using osu.Framework.Allocation;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using osu.Framework.Graphics.Sprites;
2018-10-02 11:02:47 +08:00
using osu.Framework.Input.Events;
using osu.Framework.Localisation;
2018-04-13 17:19:50 +08:00
using osu.Framework.Screens;
using osu.Framework.Threading;
2018-04-13 17:19:50 +08:00
using osu.Game.Beatmaps;
using osu.Game.Graphics;
using osu.Game.Graphics.Sprites;
using osu.Game.Graphics.UserInterface;
2018-04-13 17:19:50 +08:00
using osu.Game.Screens.Menu;
2019-01-26 17:14:45 +08:00
using osu.Game.Screens.Play.HUD;
2018-04-13 17:19:50 +08:00
using osu.Game.Screens.Play.PlayerSettings;
2018-11-20 15:51:59 +08:00
using osuTK;
using osuTK.Graphics;
2018-04-13 17:19:50 +08:00
namespace osu.Game.Screens.Play
{
public class PlayerLoader : ScreenWithBeatmapBackground
{
2018-12-26 21:16:35 +08:00
private readonly Func<Player> createPlayer;
private static readonly Vector2 background_blur = new Vector2(15);
2018-04-13 17:19:50 +08:00
private Player player;
2019-01-24 18:55:42 +08:00
private Container content;
2018-04-13 17:19:50 +08:00
private BeatmapMetadataDisplay info;
private bool hideOverlays;
public override bool HideOverlaysOnEnter => hideOverlays;
2018-04-13 17:19:50 +08:00
2019-02-01 14:42:15 +08:00
public override bool DisallowExternalBeatmapRulesetChanges => true;
2018-04-13 17:19:50 +08:00
private Task loadTask;
2018-12-26 21:16:35 +08:00
public PlayerLoader(Func<Player> createPlayer)
2018-04-13 17:19:50 +08:00
{
2018-12-26 21:16:35 +08:00
this.createPlayer = createPlayer;
}
2018-04-13 17:19:50 +08:00
2018-12-26 21:16:35 +08:00
private void restartRequested()
{
hideOverlays = true;
ValidForResume = true;
2018-04-13 17:19:50 +08:00
}
[BackgroundDependencyLoader]
private void load()
{
2019-01-24 18:55:42 +08:00
InternalChild = content = new Container
2018-04-13 17:19:50 +08:00
{
Anchor = Anchor.Centre,
Origin = Anchor.Centre,
2019-01-24 18:55:42 +08:00
RelativeSizeAxes = Axes.Both,
Children = new Drawable[]
{
2019-01-24 18:55:42 +08:00
info = new BeatmapMetadataDisplay(Beatmap.Value)
{
Alpha = 0,
Anchor = Anchor.Centre,
Origin = Anchor.Centre,
},
new FillFlowContainer<PlayerSettingsGroup>
{
Anchor = Anchor.TopRight,
Origin = Anchor.TopRight,
AutoSizeAxes = Axes.Both,
Direction = FillDirection.Vertical,
Spacing = new Vector2(0, 20),
Margin = new MarginPadding(25),
Children = new PlayerSettingsGroup[]
{
VisualSettings = new VisualSettings(),
2019-01-24 18:55:42 +08:00
new InputSettings()
}
}
}
2019-01-24 18:55:42 +08:00
};
2018-04-13 17:19:50 +08:00
2018-12-26 21:16:35 +08:00
loadNewPlayer();
2018-04-13 17:19:50 +08:00
}
private void playerLoaded(Player player) => info.Loading = false;
2019-01-23 19:52:00 +08:00
public override void OnResuming(IScreen last)
2018-04-13 17:19:50 +08:00
{
base.OnResuming(last);
contentIn();
info.Loading = true;
2018-04-13 17:19:50 +08:00
//we will only be resumed if the player has requested a re-run (see ValidForResume setting above)
2018-12-26 21:16:35 +08:00
loadNewPlayer();
2018-04-13 17:19:50 +08:00
this.Delay(400).Schedule(pushWhenLoaded);
}
2018-12-26 21:16:35 +08:00
private void loadNewPlayer()
{
var restartCount = player?.RestartCount + 1 ?? 0;
player = createPlayer();
player.RestartCount = restartCount;
player.RestartRequested = restartRequested;
loadTask = LoadComponentAsync(player, playerLoaded);
}
2018-04-13 17:19:50 +08:00
private void contentIn()
{
2019-01-24 18:55:42 +08:00
content.ScaleTo(1, 650, Easing.OutQuint);
content.FadeInFromZero(400);
2018-04-13 17:19:50 +08:00
}
private void contentOut()
{
2019-01-24 18:55:42 +08:00
content.ScaleTo(0.7f, 300, Easing.InQuint);
content.FadeOut(250);
2018-04-13 17:19:50 +08:00
}
2019-01-23 19:52:00 +08:00
public override void OnEntering(IScreen last)
2018-04-13 17:19:50 +08:00
{
base.OnEntering(last);
2019-01-24 18:55:42 +08:00
content.ScaleTo(0.7f);
2018-04-13 17:19:50 +08:00
contentIn();
info.Delay(750).FadeIn(500);
this.Delay(1800).Schedule(pushWhenLoaded);
}
protected override void LogoArriving(OsuLogo logo, bool resuming)
{
base.LogoArriving(logo, resuming);
logo.ScaleTo(new Vector2(0.15f), 300, Easing.In);
logo.MoveTo(new Vector2(0.5f), 300, Easing.In);
logo.FadeIn(350);
logo.Delay(resuming ? 0 : 500).MoveToOffset(new Vector2(0, -0.24f), 500, Easing.InOutExpo);
}
private ScheduledDelegate pushDebounce;
protected VisualSettings VisualSettings;
2018-04-13 17:19:50 +08:00
private bool readyForPush => player.LoadState == LoadState.Ready && IsHovered && GetContainingInputManager()?.DraggedDrawable == null;
2018-04-13 17:19:50 +08:00
2018-10-02 11:02:47 +08:00
protected override bool OnHover(HoverEvent e)
{
// restore our screen defaults
if (this.IsCurrentScreen())
2019-02-28 15:51:17 +08:00
{
InitializeBackgroundElements();
2019-02-20 16:20:45 +08:00
Background.EnableUserDim.Value = false;
2019-02-28 15:51:17 +08:00
}
2018-10-02 11:02:47 +08:00
return base.OnHover(e);
}
2018-10-02 11:02:47 +08:00
protected override void OnHoverLost(HoverLostEvent e)
{
if (GetContainingInputManager()?.HoveredDrawables.Contains(VisualSettings) == true)
{
// Update background elements is only being called here because blur logic still exists in Player.
// Will need to be removed when resolving https://github.com/ppy/osu/issues/4322
UpdateBackgroundElements();
2019-02-20 16:20:45 +08:00
if (this.IsCurrentScreen())
Background.EnableUserDim.Value = true;
}
2018-10-02 11:02:47 +08:00
base.OnHoverLost(e);
}
protected override void InitializeBackgroundElements()
{
Background?.FadeColour(Color4.White, BACKGROUND_FADE_DURATION, Easing.OutQuint);
Background?.BlurTo(background_blur, BACKGROUND_FADE_DURATION, Easing.OutQuint);
}
2018-04-13 17:19:50 +08:00
private void pushWhenLoaded()
{
2019-01-23 19:52:00 +08:00
if (!this.IsCurrentScreen()) return;
2018-04-13 17:19:50 +08:00
try
{
if (!readyForPush)
{
// as the pushDebounce below has a delay, we need to keep checking and cancel a future debounce
// if we become unready for push during the delay.
cancelLoad();
return;
}
if (pushDebounce != null)
return;
pushDebounce = Scheduler.AddDelayed(() =>
{
contentOut();
this.Delay(250).Schedule(() =>
{
2019-01-23 19:52:00 +08:00
if (!this.IsCurrentScreen()) return;
2018-04-13 17:19:50 +08:00
loadTask = null;
//By default, we want to load the player and never be returned to.
//Note that this may change if the player we load requested a re-run.
ValidForResume = false;
if (player.LoadedBeatmapSuccessfully)
2019-01-23 19:52:00 +08:00
this.Push(player);
else
2019-01-23 19:52:00 +08:00
this.Exit();
2018-04-13 17:19:50 +08:00
});
}, 500);
}
finally
{
Schedule(pushWhenLoaded);
}
}
private void cancelLoad()
{
pushDebounce?.Cancel();
pushDebounce = null;
}
2019-01-23 19:52:00 +08:00
public override void OnSuspending(IScreen next)
2018-04-13 17:19:50 +08:00
{
base.OnSuspending(next);
cancelLoad();
}
2019-01-23 19:52:00 +08:00
public override bool OnExiting(IScreen next)
2018-04-13 17:19:50 +08:00
{
2019-01-24 18:55:42 +08:00
content.ScaleTo(0.7f, 150, Easing.InQuint);
2018-04-13 17:19:50 +08:00
this.FadeOut(150);
cancelLoad();
2019-02-18 15:00:59 +08:00
Background.EnableUserDim.Value = false;
2019-02-20 16:20:45 +08:00
2018-04-13 17:19:50 +08:00
return base.OnExiting(next);
}
protected override void Dispose(bool isDisposing)
{
base.Dispose(isDisposing);
if (isDisposing)
{
// if the player never got pushed, we should explicitly dispose it.
loadTask?.ContinueWith(_ => player.Dispose());
}
2018-04-13 17:19:50 +08:00
}
private class BeatmapMetadataDisplay : Container
{
private class MetadataLine : Container
{
public MetadataLine(string left, string right)
{
AutoSizeAxes = Axes.Both;
Children = new Drawable[]
{
new OsuSpriteText
{
Anchor = Anchor.TopCentre,
Origin = Anchor.TopRight,
Margin = new MarginPadding { Right = 5 },
Colour = OsuColour.Gray(0.8f),
2018-04-13 17:19:50 +08:00
Text = left,
},
new OsuSpriteText
{
Anchor = Anchor.TopCentre,
Origin = Anchor.TopLeft,
Margin = new MarginPadding { Left = 5 },
Text = string.IsNullOrEmpty(right) ? @"-" : right,
}
};
}
}
private readonly WorkingBeatmap beatmap;
private LoadingAnimation loading;
private Sprite backgroundSprite;
2019-03-01 19:10:32 +08:00
private ModDisplay modDisplay;
2019-01-26 17:14:45 +08:00
public bool Loading
{
set
{
if (value)
{
loading.Show();
backgroundSprite.FadeColour(OsuColour.Gray(0.5f), 400, Easing.OutQuint);
}
else
{
loading.Hide();
backgroundSprite.FadeColour(Color4.White, 400, Easing.OutQuint);
}
}
}
2018-04-13 17:19:50 +08:00
public BeatmapMetadataDisplay(WorkingBeatmap beatmap)
{
this.beatmap = beatmap;
}
[BackgroundDependencyLoader]
private void load()
2018-04-13 17:19:50 +08:00
{
var metadata = beatmap?.BeatmapInfo?.Metadata ?? new BeatmapMetadata();
AutoSizeAxes = Axes.Both;
Children = new Drawable[]
{
new FillFlowContainer
{
AutoSizeAxes = Axes.Both,
Origin = Anchor.TopCentre,
Anchor = Anchor.TopCentre,
Direction = FillDirection.Vertical,
Children = new Drawable[]
{
new OsuSpriteText
{
Text = new LocalisedString((metadata.TitleUnicode, metadata.Title)),
2019-02-20 15:52:36 +08:00
Font = OsuFont.GetFont(size: 36, italics: true),
2018-04-13 17:19:50 +08:00
Origin = Anchor.TopCentre,
Anchor = Anchor.TopCentre,
},
new OsuSpriteText
{
Text = new LocalisedString((metadata.ArtistUnicode, metadata.Artist)),
2019-02-20 15:52:36 +08:00
Font = OsuFont.GetFont(size: 26, italics: true),
2018-04-13 17:19:50 +08:00
Origin = Anchor.TopCentre,
Anchor = Anchor.TopCentre,
},
new Container
{
Size = new Vector2(300, 60),
Margin = new MarginPadding(10),
Origin = Anchor.TopCentre,
Anchor = Anchor.TopCentre,
CornerRadius = 10,
Masking = true,
Children = new Drawable[]
2018-04-13 17:19:50 +08:00
{
backgroundSprite = new Sprite
2018-04-13 17:19:50 +08:00
{
RelativeSizeAxes = Axes.Both,
Texture = beatmap?.Background,
Origin = Anchor.Centre,
Anchor = Anchor.Centre,
FillMode = FillMode.Fill,
},
loading = new LoadingAnimation { Scale = new Vector2(1.3f) }
2018-04-13 17:19:50 +08:00
}
},
new OsuSpriteText
{
Text = beatmap?.BeatmapInfo?.Version,
2019-02-20 15:52:36 +08:00
Font = OsuFont.GetFont(size: 26, italics: true),
2018-04-13 17:19:50 +08:00
Origin = Anchor.TopCentre,
Anchor = Anchor.TopCentre,
Margin = new MarginPadding
{
Bottom = 40
},
},
new MetadataLine("Source", metadata.Source)
{
Origin = Anchor.TopCentre,
Anchor = Anchor.TopCentre,
},
new MetadataLine("Mapper", metadata.AuthorString)
{
Origin = Anchor.TopCentre,
Anchor = Anchor.TopCentre,
},
2019-03-05 16:58:05 +08:00
new ModDisplay
{
Anchor = Anchor.TopCentre,
Origin = Anchor.TopCentre,
AutoSizeAxes = Axes.Both,
Margin = new MarginPadding { Top = 20 },
Current = beatmap.Mods
}
2018-04-13 17:19:50 +08:00
},
}
};
Loading = true;
2018-04-13 17:19:50 +08:00
}
}
}
}