2019-01-24 08:43:03 +00: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 09:19:50 +00:00
|
|
|
|
|
2022-06-17 07:37:17 +00:00
|
|
|
|
#nullable disable
|
|
|
|
|
|
2021-10-07 07:38:22 +00:00
|
|
|
|
using System;
|
|
|
|
|
using JetBrains.Annotations;
|
2016-11-14 08:23:33 +00:00
|
|
|
|
using osu.Framework.Allocation;
|
2019-09-24 10:17:27 +00:00
|
|
|
|
using osu.Framework.Audio;
|
2019-10-08 03:07:59 +00:00
|
|
|
|
using osu.Framework.Audio.Sample;
|
2017-02-17 09:59:30 +00:00
|
|
|
|
using osu.Framework.Screens;
|
2016-10-07 08:07:23 +00:00
|
|
|
|
using osu.Framework.Graphics;
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
2016-11-14 08:23:33 +00:00
|
|
|
|
namespace osu.Game.Screens.Menu
|
2016-10-06 12:10:01 +00:00
|
|
|
|
{
|
2019-07-09 08:59:40 +00:00
|
|
|
|
public class IntroCircles : IntroScreen
|
2016-10-06 12:10:01 +00:00
|
|
|
|
{
|
2019-09-23 12:52:44 +00:00
|
|
|
|
protected override string BeatmapHash => "3c8b1fcc9434dbb29e2fb613d3b9eada9d7bb6c125ceb32396c3b53437280c83";
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
2019-09-23 12:52:44 +00:00
|
|
|
|
protected override string BeatmapFile => "circles.osz";
|
2019-07-04 02:18:29 +00:00
|
|
|
|
|
2022-08-17 04:20:40 +00:00
|
|
|
|
public const double TRACK_START_DELAY = 600;
|
2022-08-16 09:09:04 +00:00
|
|
|
|
|
|
|
|
|
private const double delay_for_menu = 2900;
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
2021-01-19 08:11:40 +00:00
|
|
|
|
private Sample welcome;
|
2019-10-08 03:07:59 +00:00
|
|
|
|
|
2021-10-07 07:38:22 +00:00
|
|
|
|
public IntroCircles([CanBeNull] Func<MainMenu> createNextScreen = null)
|
|
|
|
|
: base(createNextScreen)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2016-11-12 10:44:16 +00:00
|
|
|
|
[BackgroundDependencyLoader]
|
2019-09-24 10:17:27 +00:00
|
|
|
|
private void load(AudioManager audio)
|
2016-11-01 14:24:14 +00:00
|
|
|
|
{
|
2019-09-23 12:52:44 +00:00
|
|
|
|
if (MenuVoice.Value)
|
2020-06-23 12:34:57 +00:00
|
|
|
|
welcome = audio.Samples.Get(@"Intro/welcome");
|
2016-11-01 14:24:14 +00:00
|
|
|
|
}
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
2017-11-09 08:38:20 +00:00
|
|
|
|
protected override void LogoArriving(OsuLogo logo, bool resuming)
|
2017-11-01 11:54:58 +00:00
|
|
|
|
{
|
2017-11-09 08:38:20 +00:00
|
|
|
|
base.LogoArriving(logo, resuming);
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
2018-05-30 11:21:53 +00:00
|
|
|
|
if (!resuming)
|
|
|
|
|
{
|
2019-10-08 03:07:59 +00:00
|
|
|
|
welcome?.Play();
|
2018-05-30 11:21:53 +00:00
|
|
|
|
|
|
|
|
|
Scheduler.AddDelayed(delegate
|
|
|
|
|
{
|
2019-10-08 03:03:42 +00:00
|
|
|
|
StartTrack();
|
2018-05-30 11:21:53 +00:00
|
|
|
|
|
2019-07-09 08:59:40 +00:00
|
|
|
|
PrepareMenuLoad();
|
2018-05-30 11:21:53 +00:00
|
|
|
|
|
2022-08-17 04:20:40 +00:00
|
|
|
|
Scheduler.AddDelayed(LoadMenu, delay_for_menu - TRACK_START_DELAY);
|
|
|
|
|
}, TRACK_START_DELAY);
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
2017-11-08 05:31:11 +00:00
|
|
|
|
logo.ScaleTo(1);
|
|
|
|
|
logo.FadeIn();
|
|
|
|
|
logo.PlayIntro();
|
2017-11-01 11:54:58 +00:00
|
|
|
|
}
|
2016-10-07 08:07:23 +00:00
|
|
|
|
}
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
2022-04-21 15:52:44 +00:00
|
|
|
|
public override void OnSuspending(ScreenTransitionEvent e)
|
2016-10-07 08:07:23 +00:00
|
|
|
|
{
|
2019-01-23 11:52:00 +00:00
|
|
|
|
this.FadeOut(300);
|
2022-04-21 15:52:44 +00:00
|
|
|
|
base.OnSuspending(e);
|
2016-10-06 12:10:01 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|