1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 16:47:24 +08:00
osu-lazer/osu.Game/Screens/Menu/IntroScreen.cs

175 lines
5.4 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.
using osu.Framework.Allocation;
using osu.Framework.Audio;
using osu.Framework.Audio.Sample;
2019-09-23 20:52:44 +08:00
using osu.Framework.Audio.Track;
using osu.Framework.Bindables;
using osu.Framework.Graphics;
2019-09-23 20:52:44 +08:00
using osu.Framework.MathUtils;
using osu.Framework.Screens;
using osu.Game.Beatmaps;
using osu.Game.Configuration;
2019-09-23 20:52:44 +08:00
using osu.Game.IO.Archives;
using osu.Game.Screens.Backgrounds;
2019-09-23 20:52:44 +08:00
using osu.Game.Skinning;
using osuTK;
using osuTK.Graphics;
namespace osu.Game.Screens.Menu
{
public abstract class IntroScreen : StartupScreen
{
2019-10-08 10:52:16 +08:00
/// <summary>
/// A hash used to find the associated beatmap if already imported.
/// </summary>
2019-09-23 20:52:44 +08:00
protected abstract string BeatmapHash { get; }
2019-10-08 10:52:16 +08:00
/// <summary>
/// A source file to use as an import source if the intro beatmap is not yet present.
/// Should be within the "Tracks" namespace of game resources.
/// </summary>
2019-09-23 20:52:44 +08:00
protected abstract string BeatmapFile { get; }
private readonly BindableDouble exitingVolumeFade = new BindableDouble(1);
2019-10-08 10:54:39 +08:00
private const int exit_delay = 3000;
[Resolved]
private AudioManager audio { get; set; }
2019-09-23 20:52:44 +08:00
protected SampleChannel Welcome;
private SampleChannel seeya;
2019-09-23 20:52:44 +08:00
protected Bindable<bool> MenuVoice;
protected Bindable<bool> MenuMusic;
protected Track Track;
protected WorkingBeatmap IntroBeatmap;
private LeasedBindable<WorkingBeatmap> beatmap;
2019-08-20 17:18:41 +08:00
public new Bindable<WorkingBeatmap> Beatmap => beatmap;
protected override BackgroundScreen CreateBackground() => new BackgroundScreenBlack();
[BackgroundDependencyLoader]
2019-09-24 18:17:27 +08:00
private void load(OsuConfigManager config, SkinManager skinManager, BeatmapManager beatmaps, Framework.Game game)
{
2019-08-21 13:01:07 +08:00
// prevent user from changing beatmap while the intro is still runnning.
beatmap = base.Beatmap.BeginLease(false);
2019-09-23 20:52:44 +08:00
MenuVoice = config.GetBindable<bool>(OsuSetting.MenuVoice);
MenuMusic = config.GetBindable<bool>(OsuSetting.MenuMusic);
2019-09-24 18:17:27 +08:00
seeya = audio.Samples.Get(@"seeya");
2019-09-23 20:52:44 +08:00
BeatmapSetInfo setInfo = null;
if (!MenuMusic.Value)
{
var sets = beatmaps.GetAllUsableBeatmapSets();
if (sets.Count > 0)
setInfo = beatmaps.QueryBeatmapSet(s => s.ID == sets[RNG.Next(0, sets.Count - 1)].ID);
}
if (setInfo == null)
{
setInfo = beatmaps.QueryBeatmapSet(b => b.Hash == BeatmapHash);
if (setInfo == null)
{
// we need to import the default menu background beatmap
setInfo = beatmaps.Import(new ZipArchiveReader(game.Resources.GetStream($"Tracks/{BeatmapFile}"), BeatmapFile)).Result;
setInfo.Protected = true;
beatmaps.Update(setInfo);
}
}
IntroBeatmap = beatmaps.GetWorkingBeatmap(setInfo.Beatmaps[0]);
Track = IntroBeatmap.Track;
}
/// <summary>
/// Whether we have loaded the menu previously.
/// </summary>
public bool DidLoadMenu { get; private set; }
public override bool OnExiting(IScreen next)
{
//cancel exiting if we haven't loaded the menu yet.
return !DidLoadMenu;
}
public override void OnResuming(IScreen last)
{
this.FadeIn(300);
2019-10-08 10:54:39 +08:00
double fadeOutTime = exit_delay;
//we also handle the exit transition.
2019-09-23 20:52:44 +08:00
if (MenuVoice.Value)
seeya.Play();
else
fadeOutTime = 500;
audio.AddAdjustment(AdjustableProperty.Volume, exitingVolumeFade);
this.TransformBindableTo(exitingVolumeFade, 0, fadeOutTime).OnComplete(_ => this.Exit());
//don't want to fade out completely else we will stop running updates.
Game.FadeTo(0.01f, fadeOutTime);
base.OnResuming(last);
}
protected override void LogoArriving(OsuLogo logo, bool resuming)
{
base.LogoArriving(logo, resuming);
logo.Colour = Color4.White;
logo.Triangles = false;
logo.Ripple = false;
if (!resuming)
{
logo.MoveTo(new Vector2(0.5f));
logo.ScaleTo(Vector2.One);
logo.Hide();
}
else
{
const int quick_appear = 350;
int initialMovementTime = logo.Alpha > 0.2f ? quick_appear : 0;
logo.MoveTo(new Vector2(0.5f), initialMovementTime, Easing.OutQuint);
logo
.ScaleTo(1, initialMovementTime, Easing.OutQuint)
.FadeIn(quick_appear, Easing.OutQuint)
.Then()
2019-10-08 10:54:39 +08:00
.RotateTo(20, exit_delay * 1.5f)
.FadeOut(exit_delay);
}
}
private MainMenu mainMenu;
protected void PrepareMenuLoad()
{
LoadComponentAsync(mainMenu = new MainMenu());
}
protected void LoadMenu()
{
2019-08-20 17:18:41 +08:00
beatmap.Return();
2019-08-21 13:01:07 +08:00
DidLoadMenu = true;
this.Push(mainMenu);
}
}
}