1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 01:27:29 +08:00
osu-lazer/osu.Game/Screens/Loader.cs

125 lines
4.1 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.Collections.Generic;
using System.Linq;
using osu.Framework.Allocation;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Shaders;
using osu.Game.Screens.Menu;
2018-11-20 15:51:59 +08:00
using osuTK;
2018-04-13 17:19:50 +08:00
using osu.Framework.Screens;
using osu.Game.Overlays;
2018-04-13 17:19:50 +08:00
namespace osu.Game.Screens
{
public class Loader : OsuScreen
{
private bool showDisclaimer;
public override bool HideOverlaysOnEnter => true;
2018-04-13 17:19:50 +08:00
public override OverlayActivation InitialOverlayActivationMode => OverlayActivation.Disabled;
public override bool CursorVisible => false;
protected override bool AllowBackButton => false;
2018-04-13 17:19:50 +08:00
public Loader()
{
ValidForResume = false;
}
protected override void LogoArriving(OsuLogo logo, bool resuming)
{
base.LogoArriving(logo, resuming);
2018-05-31 16:14:47 +08:00
logo.BeatMatching = false;
2018-04-13 17:19:50 +08:00
logo.Triangles = false;
logo.Origin = Anchor.BottomRight;
logo.Anchor = Anchor.BottomRight;
logo.Position = new Vector2(-40);
logo.Scale = new Vector2(0.2f);
logo.Delay(500).FadeInFromZero(1000, Easing.OutQuint);
}
protected override void LogoSuspending(OsuLogo logo)
{
base.LogoSuspending(logo);
logo.FadeOut(logo.Alpha * 400);
2018-04-13 17:19:50 +08:00
}
2018-05-31 19:07:44 +08:00
private OsuScreen loadableScreen;
2018-04-13 17:19:50 +08:00
private ShaderPrecompiler precompiler;
2018-05-31 16:29:59 +08:00
protected virtual OsuScreen CreateLoadableScreen() => showDisclaimer ? (OsuScreen)new Disclaimer() : new Intro();
2018-05-31 19:07:44 +08:00
protected virtual ShaderPrecompiler CreateShaderPrecompiler() => new ShaderPrecompiler();
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-23 19:52:00 +08:00
LoadComponentAsync(precompiler = CreateShaderPrecompiler(), AddInternal);
2018-05-31 19:07:44 +08:00
LoadComponentAsync(loadableScreen = CreateLoadableScreen());
checkIfLoaded();
2018-04-13 17:19:50 +08:00
}
2018-05-31 19:07:44 +08:00
private void checkIfLoaded()
2018-04-13 17:19:50 +08:00
{
2018-05-31 19:07:44 +08:00
if (loadableScreen.LoadState != LoadState.Ready || !precompiler.FinishedCompiling)
{
Schedule(checkIfLoaded);
2018-04-13 17:19:50 +08:00
return;
2018-05-31 19:07:44 +08:00
}
2018-04-13 17:19:50 +08:00
2019-01-23 19:52:00 +08:00
this.Push(loadableScreen);
2018-04-13 17:19:50 +08:00
}
[BackgroundDependencyLoader]
private void load(OsuGameBase game)
{
showDisclaimer = game.IsDeployedBuild;
}
/// <summary>
/// Compiles a set of shaders before continuing. Attempts to draw some frames between compilation by limiting to one compile per draw frame.
/// </summary>
public class ShaderPrecompiler : Drawable
{
private readonly List<Shader> loadTargets = new List<Shader>();
public bool FinishedCompiling { get; private set; }
[BackgroundDependencyLoader]
private void load(ShaderManager manager)
{
loadTargets.Add(manager.Load(VertexShaderDescriptor.TEXTURE_2, FragmentShaderDescriptor.TEXTURE_ROUNDED));
loadTargets.Add(manager.Load(VertexShaderDescriptor.TEXTURE_2, FragmentShaderDescriptor.BLUR));
loadTargets.Add(manager.Load(VertexShaderDescriptor.TEXTURE_2, FragmentShaderDescriptor.TEXTURE));
loadTargets.Add(manager.Load(@"CursorTrail", FragmentShaderDescriptor.TEXTURE));
loadTargets.Add(manager.Load(VertexShaderDescriptor.TEXTURE_3, FragmentShaderDescriptor.TEXTURE_ROUNDED));
loadTargets.Add(manager.Load(VertexShaderDescriptor.TEXTURE_3, FragmentShaderDescriptor.TEXTURE));
}
2018-05-31 19:07:44 +08:00
protected virtual bool AllLoaded => loadTargets.All(s => s.Loaded);
2018-04-13 17:19:50 +08:00
protected override void Update()
{
base.Update();
// if our target is null we are done.
2018-05-31 19:07:44 +08:00
if (AllLoaded)
2018-04-13 17:19:50 +08:00
{
FinishedCompiling = true;
Expire();
}
}
}
}
}