1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 17:27:39 +08:00
osu-lazer/osu.Game/Screens/Menu/IntroCircles.cs

60 lines
1.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;
2019-09-24 18:17:27 +08:00
using osu.Framework.Audio;
2019-10-08 11:07:59 +08:00
using osu.Framework.Audio.Sample;
2018-04-13 17:19:50 +08:00
using osu.Framework.Screens;
using osu.Framework.Graphics;
namespace osu.Game.Screens.Menu
{
public class IntroCircles : IntroScreen
2018-04-13 17:19:50 +08:00
{
2019-09-23 20:52:44 +08:00
protected override string BeatmapHash => "3c8b1fcc9434dbb29e2fb613d3b9eada9d7bb6c125ceb32396c3b53437280c83";
2018-04-13 17:19:50 +08:00
2019-09-23 20:52:44 +08:00
protected override string BeatmapFile => "circles.osz";
2019-09-23 20:52:44 +08:00
private const double delay_step_one = 2300;
private const double delay_step_two = 600;
2018-04-13 17:19:50 +08:00
2021-01-19 16:11:40 +08:00
private Sample welcome;
2019-10-08 11:07:59 +08:00
2018-04-13 17:19:50 +08:00
[BackgroundDependencyLoader]
2019-09-24 18:17:27 +08:00
private void load(AudioManager audio)
2018-04-13 17:19:50 +08:00
{
2019-09-23 20:52:44 +08:00
if (MenuVoice.Value)
2020-06-23 20:34:57 +08:00
welcome = audio.Samples.Get(@"Intro/welcome");
2018-04-13 17:19:50 +08:00
}
protected override void LogoArriving(OsuLogo logo, bool resuming)
{
base.LogoArriving(logo, resuming);
if (!resuming)
{
2019-10-08 11:07:59 +08:00
welcome?.Play();
Scheduler.AddDelayed(delegate
{
2019-10-08 11:03:42 +08:00
StartTrack();
PrepareMenuLoad();
Scheduler.AddDelayed(LoadMenu, delay_step_one);
}, delay_step_two);
2018-04-13 17:19:50 +08:00
logo.ScaleTo(1);
logo.FadeIn();
logo.PlayIntro();
}
}
2019-01-23 19:52:00 +08:00
public override void OnSuspending(IScreen next)
2018-04-13 17:19:50 +08:00
{
2019-01-23 19:52:00 +08:00
this.FadeOut(300);
2018-04-13 17:19:50 +08:00
base.OnSuspending(next);
}
}
}