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 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
|
|
|
|
|
{
|
2019-07-09 16:59:40 +08:00
|
|
|
|
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-07-04 10:18:29 +08:00
|
|
|
|
|
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);
|
|
|
|
|
|
2018-05-30 19:21:53 +08:00
|
|
|
|
if (!resuming)
|
|
|
|
|
{
|
2019-10-08 11:07:59 +08:00
|
|
|
|
welcome?.Play();
|
2018-05-30 19:21:53 +08:00
|
|
|
|
|
|
|
|
|
Scheduler.AddDelayed(delegate
|
|
|
|
|
{
|
2019-10-08 11:03:42 +08:00
|
|
|
|
StartTrack();
|
2018-05-30 19:21:53 +08:00
|
|
|
|
|
2019-07-09 16:59:40 +08:00
|
|
|
|
PrepareMenuLoad();
|
2018-05-30 19:21:53 +08:00
|
|
|
|
|
2019-07-09 16:59:40 +08:00
|
|
|
|
Scheduler.AddDelayed(LoadMenu, delay_step_one);
|
2018-05-30 19:21:53 +08:00
|
|
|
|
}, 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);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|