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 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;
|
|
|
|
|
|
|
|
|
|
namespace osu.Game.Screens
|
|
|
|
|
{
|
2019-06-26 00:36:17 +08:00
|
|
|
|
public class Loader : StartupScreen
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
|
|
|
|
private bool showDisclaimer;
|
|
|
|
|
|
|
|
|
|
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;
|
2019-03-27 21:27:53 +08:00
|
|
|
|
logo.RelativePositionAxes = Axes.None;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
logo.Origin = Anchor.BottomRight;
|
|
|
|
|
logo.Anchor = Anchor.BottomRight;
|
|
|
|
|
logo.Position = new Vector2(-40);
|
|
|
|
|
logo.Scale = new Vector2(0.2f);
|
|
|
|
|
|
2018-05-30 19:21:25 +08:00
|
|
|
|
logo.Delay(500).FadeInFromZero(1000, Easing.OutQuint);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override void LogoSuspending(OsuLogo logo)
|
|
|
|
|
{
|
|
|
|
|
base.LogoSuspending(logo);
|
2018-05-31 16:14:04 +08:00
|
|
|
|
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;
|
|
|
|
|
|
2019-07-09 17:06:49 +08:00
|
|
|
|
protected virtual OsuScreen CreateLoadableScreen()
|
|
|
|
|
{
|
|
|
|
|
if (showDisclaimer)
|
|
|
|
|
return new Disclaimer(getIntroSequence());
|
|
|
|
|
|
|
|
|
|
return getIntroSequence();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private IntroScreen getIntroSequence() => new IntroCircles();
|
2018-05-31 16:29:59 +08:00
|
|
|
|
|
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
|
|
|
|
|
{
|
2019-03-07 17:30:18 +08:00
|
|
|
|
private readonly List<IShader> loadTargets = new List<IShader>();
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
|
|
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));
|
|
|
|
|
}
|
|
|
|
|
|
2019-03-07 17:30:18 +08:00
|
|
|
|
protected virtual bool AllLoaded => loadTargets.All(s => s.IsLoaded);
|
2018-05-31 19:07:44 +08:00
|
|
|
|
|
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();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|