2017-02-07 12:59:30 +08:00
|
|
|
|
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
|
|
|
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
2016-10-06 20:10:01 +08:00
|
|
|
|
|
2016-11-14 16:23:33 +08:00
|
|
|
|
using osu.Framework.Allocation;
|
|
|
|
|
using osu.Framework.Audio;
|
2016-10-06 20:10:01 +08:00
|
|
|
|
using osu.Framework.Audio.Sample;
|
|
|
|
|
using osu.Framework.Audio.Track;
|
2017-04-15 01:42:42 +08:00
|
|
|
|
using osu.Framework.Configuration;
|
2017-02-17 17:59:30 +08:00
|
|
|
|
using osu.Framework.Screens;
|
2016-10-07 16:07:23 +08:00
|
|
|
|
using osu.Framework.Graphics;
|
2017-05-23 15:26:51 +08:00
|
|
|
|
using osu.Framework.MathUtils;
|
|
|
|
|
using osu.Game.Beatmaps.IO;
|
2017-04-15 01:42:42 +08:00
|
|
|
|
using osu.Game.Configuration;
|
2017-05-23 15:26:51 +08:00
|
|
|
|
using osu.Game.Database;
|
2016-12-01 20:59:32 +08:00
|
|
|
|
using osu.Game.Graphics.Containers;
|
2016-11-14 16:23:33 +08:00
|
|
|
|
using osu.Game.Screens.Backgrounds;
|
2016-10-07 16:07:23 +08:00
|
|
|
|
using OpenTK.Graphics;
|
2016-10-06 20:10:01 +08:00
|
|
|
|
|
2016-11-14 16:23:33 +08:00
|
|
|
|
namespace osu.Game.Screens.Menu
|
2016-10-06 20:10:01 +08:00
|
|
|
|
{
|
2017-02-18 13:16:46 +08:00
|
|
|
|
public class Intro : OsuScreen
|
2016-10-06 20:10:01 +08:00
|
|
|
|
{
|
2017-03-23 12:41:50 +08:00
|
|
|
|
private readonly OsuLogo logo;
|
2016-10-07 18:12:36 +08:00
|
|
|
|
|
2017-05-23 15:26:51 +08:00
|
|
|
|
public const string MENU_MUSIC_BEATMAP_HASH = "21c1271b91234385978b5418881fdd88";
|
|
|
|
|
|
2016-10-07 18:12:36 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Whether we have loaded the menu previously.
|
|
|
|
|
/// </summary>
|
|
|
|
|
internal bool DidLoadMenu;
|
2016-10-07 17:58:20 +08:00
|
|
|
|
|
2017-03-07 09:59:19 +08:00
|
|
|
|
private MainMenu mainMenu;
|
2017-02-18 16:35:04 +08:00
|
|
|
|
private SampleChannel welcome;
|
|
|
|
|
private SampleChannel seeya;
|
2016-11-01 22:24:14 +08:00
|
|
|
|
|
2017-03-16 22:58:36 +08:00
|
|
|
|
internal override bool HasLocalCursorDisplayed => true;
|
|
|
|
|
|
2017-02-17 19:07:11 +08:00
|
|
|
|
internal override bool ShowOverlays => false;
|
2016-11-09 14:22:54 +08:00
|
|
|
|
|
2017-02-17 17:59:30 +08:00
|
|
|
|
protected override BackgroundScreen CreateBackground() => new BackgroundScreenEmpty();
|
2016-10-06 22:32:35 +08:00
|
|
|
|
|
2016-11-01 22:24:14 +08:00
|
|
|
|
public Intro()
|
2016-10-06 20:10:01 +08:00
|
|
|
|
{
|
2016-10-07 16:07:23 +08:00
|
|
|
|
Children = new Drawable[]
|
|
|
|
|
{
|
2016-12-01 20:59:32 +08:00
|
|
|
|
new ParallaxContainer
|
2016-10-07 16:07:23 +08:00
|
|
|
|
{
|
2016-12-01 20:59:32 +08:00
|
|
|
|
ParallaxAmount = 0.01f,
|
|
|
|
|
Children = new Drawable[]
|
|
|
|
|
{
|
|
|
|
|
logo = new OsuLogo
|
|
|
|
|
{
|
|
|
|
|
Alpha = 0,
|
|
|
|
|
Triangles = false,
|
|
|
|
|
BlendingMode = BlendingMode.Additive,
|
|
|
|
|
Interactive = false,
|
|
|
|
|
Colour = Color4.DarkGray,
|
|
|
|
|
Ripple = false
|
|
|
|
|
}
|
|
|
|
|
}
|
2016-10-07 16:07:23 +08:00
|
|
|
|
}
|
|
|
|
|
};
|
2016-11-01 22:24:14 +08:00
|
|
|
|
}
|
|
|
|
|
|
2017-04-15 01:42:42 +08:00
|
|
|
|
private Bindable<bool> menuVoice;
|
2017-04-15 02:10:59 +08:00
|
|
|
|
private Bindable<bool> menuMusic;
|
2017-05-23 15:26:51 +08:00
|
|
|
|
private Track track;
|
2017-04-15 01:42:42 +08:00
|
|
|
|
|
2016-11-12 18:44:16 +08:00
|
|
|
|
[BackgroundDependencyLoader]
|
2017-05-23 15:26:51 +08:00
|
|
|
|
private void load(AudioManager audio, OsuConfigManager config, BeatmapDatabase beatmaps, Framework.Game game)
|
2016-11-01 22:24:14 +08:00
|
|
|
|
{
|
2017-05-15 09:56:27 +08:00
|
|
|
|
menuVoice = config.GetBindable<bool>(OsuSetting.MenuVoice);
|
|
|
|
|
menuMusic = config.GetBindable<bool>(OsuSetting.MenuMusic);
|
2017-04-15 01:42:42 +08:00
|
|
|
|
|
2017-05-23 15:26:51 +08:00
|
|
|
|
BeatmapSetInfo setInfo = null;
|
|
|
|
|
|
|
|
|
|
if (!menuMusic)
|
|
|
|
|
{
|
|
|
|
|
var query = beatmaps.Query<BeatmapSetInfo>().Where(b => !b.DeletePending);
|
|
|
|
|
int count = query.Count();
|
|
|
|
|
if (count > 0)
|
|
|
|
|
setInfo = query.ElementAt(RNG.Next(0, count - 1));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (setInfo == null)
|
|
|
|
|
{
|
|
|
|
|
var query = beatmaps.Query<BeatmapSetInfo>().Where(b => b.Hash == MENU_MUSIC_BEATMAP_HASH);
|
|
|
|
|
|
|
|
|
|
setInfo = query.FirstOrDefault();
|
|
|
|
|
|
|
|
|
|
if (setInfo == null)
|
|
|
|
|
{
|
|
|
|
|
// we need to import the default menu background beatmap
|
|
|
|
|
beatmaps.Import(new OszArchiveReader(game.Resources.GetStream(@"Tracks/circles.osz")));
|
|
|
|
|
|
|
|
|
|
setInfo = query.First();
|
|
|
|
|
|
|
|
|
|
setInfo.DeletePending = true;
|
|
|
|
|
beatmaps.Update(setInfo, false);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
beatmaps.GetChildren(setInfo);
|
2017-07-19 12:32:16 +08:00
|
|
|
|
Beatmap.Value = beatmaps.GetWorkingBeatmap(setInfo.Beatmaps[0]);
|
2017-05-23 15:26:51 +08:00
|
|
|
|
|
2017-07-19 12:32:16 +08:00
|
|
|
|
track = Beatmap.Value.Track;
|
2017-04-15 01:42:42 +08:00
|
|
|
|
|
2017-04-15 02:10:59 +08:00
|
|
|
|
welcome = audio.Sample.Get(@"welcome");
|
2016-12-05 18:34:52 +08:00
|
|
|
|
seeya = audio.Sample.Get(@"seeya");
|
2016-11-01 22:24:14 +08:00
|
|
|
|
}
|
2016-10-06 20:10:01 +08:00
|
|
|
|
|
2017-02-17 17:59:30 +08:00
|
|
|
|
protected override void OnEntering(Screen last)
|
2016-11-01 22:24:14 +08:00
|
|
|
|
{
|
2017-01-20 16:28:03 +08:00
|
|
|
|
base.OnEntering(last);
|
|
|
|
|
|
2017-04-25 11:48:25 +08:00
|
|
|
|
if (menuVoice)
|
2017-04-15 01:42:42 +08:00
|
|
|
|
welcome.Play();
|
2017-04-15 06:17:51 +08:00
|
|
|
|
|
2017-02-26 20:15:33 +08:00
|
|
|
|
Scheduler.AddDelayed(delegate
|
2016-10-07 16:07:23 +08:00
|
|
|
|
{
|
2017-07-20 07:57:46 +08:00
|
|
|
|
// Only start the current track if it is the menu music. A beatmap's track is started when entering the Main Manu.
|
|
|
|
|
if (menuMusic)
|
|
|
|
|
track.Start();
|
2017-02-26 20:15:33 +08:00
|
|
|
|
|
2017-04-02 14:56:12 +08:00
|
|
|
|
LoadComponentAsync(mainMenu = new MainMenu());
|
2016-10-07 16:07:23 +08:00
|
|
|
|
|
2016-11-02 00:02:48 +08:00
|
|
|
|
Scheduler.AddDelayed(delegate
|
|
|
|
|
{
|
2017-02-26 20:15:33 +08:00
|
|
|
|
DidLoadMenu = true;
|
|
|
|
|
Push(mainMenu);
|
|
|
|
|
}, 2300);
|
|
|
|
|
}, 600);
|
2016-10-07 16:07:23 +08:00
|
|
|
|
|
2016-11-01 22:24:14 +08:00
|
|
|
|
logo.ScaleTo(0.4f);
|
|
|
|
|
logo.FadeOut();
|
|
|
|
|
|
2017-07-23 02:50:25 +08:00
|
|
|
|
logo.ScaleTo(1, 4400, Easing.OutQuint);
|
|
|
|
|
logo.FadeIn(20000, Easing.OutQuint);
|
2016-10-07 16:07:23 +08:00
|
|
|
|
}
|
|
|
|
|
|
2017-02-17 17:59:30 +08:00
|
|
|
|
protected override void OnSuspending(Screen next)
|
2016-10-07 16:07:23 +08:00
|
|
|
|
{
|
|
|
|
|
Content.FadeOut(300);
|
|
|
|
|
base.OnSuspending(next);
|
2016-10-06 20:10:01 +08:00
|
|
|
|
}
|
2016-10-07 17:34:37 +08:00
|
|
|
|
|
2017-02-17 17:59:30 +08:00
|
|
|
|
protected override bool OnExiting(Screen next)
|
2016-10-07 17:58:20 +08:00
|
|
|
|
{
|
|
|
|
|
//cancel exiting if we haven't loaded the menu yet.
|
2016-10-07 18:12:36 +08:00
|
|
|
|
return !DidLoadMenu;
|
2016-10-07 17:58:20 +08:00
|
|
|
|
}
|
|
|
|
|
|
2017-02-17 17:59:30 +08:00
|
|
|
|
protected override void OnResuming(Screen last)
|
2016-10-07 17:34:37 +08:00
|
|
|
|
{
|
2017-02-17 14:33:08 +08:00
|
|
|
|
if (!(last is MainMenu))
|
|
|
|
|
Content.FadeIn(300);
|
|
|
|
|
|
2017-04-15 01:42:42 +08:00
|
|
|
|
double fadeOutTime = 2000;
|
2016-12-05 18:34:52 +08:00
|
|
|
|
//we also handle the exit transition.
|
2017-04-15 01:42:42 +08:00
|
|
|
|
if (menuVoice)
|
|
|
|
|
seeya.Play();
|
|
|
|
|
else
|
|
|
|
|
fadeOutTime = 500;
|
2016-12-05 18:34:52 +08:00
|
|
|
|
|
2017-04-15 01:42:42 +08:00
|
|
|
|
Scheduler.AddDelayed(Exit, fadeOutTime);
|
2016-12-05 18:34:52 +08:00
|
|
|
|
|
|
|
|
|
//don't want to fade out completely else we will stop running updates and shit will hit the fan.
|
2017-04-15 01:42:42 +08:00
|
|
|
|
Game.FadeTo(0.01f, fadeOutTime);
|
2016-10-07 17:34:37 +08:00
|
|
|
|
|
|
|
|
|
base.OnResuming(last);
|
|
|
|
|
}
|
2016-10-06 20:10:01 +08:00
|
|
|
|
}
|
|
|
|
|
}
|