2018-04-13 17:19:50 +08:00
|
|
|
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
|
|
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
|
2018-11-20 15:51:59 +08:00
|
|
|
using osuTK;
|
|
|
|
using osuTK.Graphics;
|
|
|
|
using osuTK.Input;
|
2018-04-13 17:19:50 +08:00
|
|
|
using osu.Framework.Allocation;
|
|
|
|
using osu.Framework.Graphics;
|
2018-10-02 11:02:47 +08:00
|
|
|
using osu.Framework.Input.Events;
|
2018-04-13 17:19:50 +08:00
|
|
|
using osu.Framework.Screens;
|
|
|
|
using osu.Game.Beatmaps;
|
2018-09-21 02:13:15 +08:00
|
|
|
using osu.Game.Graphics;
|
2018-04-13 17:19:50 +08:00
|
|
|
using osu.Game.Graphics.Containers;
|
|
|
|
using osu.Game.Screens.Backgrounds;
|
|
|
|
using osu.Game.Screens.Charts;
|
|
|
|
using osu.Game.Screens.Direct;
|
|
|
|
using osu.Game.Screens.Edit;
|
2018-05-16 08:14:10 +08:00
|
|
|
using osu.Game.Screens.Multi;
|
2018-04-13 17:19:50 +08:00
|
|
|
using osu.Game.Screens.Select;
|
|
|
|
using osu.Game.Screens.Tournament;
|
|
|
|
|
|
|
|
namespace osu.Game.Screens.Menu
|
|
|
|
{
|
|
|
|
public class MainMenu : OsuScreen
|
|
|
|
{
|
|
|
|
private readonly ButtonSystem buttons;
|
|
|
|
|
2018-07-03 17:18:04 +08:00
|
|
|
protected override bool HideOverlaysOnEnter => buttons.State == ButtonSystemState.Initial;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
2018-07-03 17:18:04 +08:00
|
|
|
protected override bool AllowBackButton => buttons.State != ButtonSystemState.Initial;
|
2018-05-15 03:09:09 +08:00
|
|
|
|
2018-11-29 16:18:59 +08:00
|
|
|
public override bool AllowExternalScreenChange => true;
|
|
|
|
|
2018-04-13 17:19:50 +08:00
|
|
|
private readonly BackgroundScreenDefault background;
|
|
|
|
private Screen songSelect;
|
|
|
|
|
|
|
|
private readonly MenuSideFlashes sideFlashes;
|
|
|
|
|
|
|
|
protected override BackgroundScreen CreateBackground() => background;
|
|
|
|
|
|
|
|
public MainMenu()
|
|
|
|
{
|
|
|
|
background = new BackgroundScreenDefault();
|
|
|
|
|
|
|
|
Children = new Drawable[]
|
|
|
|
{
|
2018-05-10 16:07:19 +08:00
|
|
|
new ExitConfirmOverlay
|
|
|
|
{
|
|
|
|
Action = Exit,
|
|
|
|
},
|
2018-04-13 17:19:50 +08:00
|
|
|
new ParallaxContainer
|
|
|
|
{
|
|
|
|
ParallaxAmount = 0.01f,
|
|
|
|
Children = new Drawable[]
|
|
|
|
{
|
|
|
|
buttons = new ButtonSystem
|
|
|
|
{
|
|
|
|
OnChart = delegate { Push(new ChartListing()); },
|
|
|
|
OnDirect = delegate { Push(new OnlineListing()); },
|
|
|
|
OnEdit = delegate { Push(new Editor()); },
|
2018-07-11 00:32:10 +08:00
|
|
|
OnSolo = onSolo,
|
2018-05-16 08:14:10 +08:00
|
|
|
OnMulti = delegate { Push(new Multiplayer()); },
|
2018-04-13 17:19:50 +08:00
|
|
|
OnExit = Exit,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
sideFlashes = new MenuSideFlashes(),
|
|
|
|
};
|
2018-09-21 02:13:15 +08:00
|
|
|
|
|
|
|
buttons.StateChanged += state =>
|
|
|
|
{
|
|
|
|
switch (state)
|
|
|
|
{
|
|
|
|
case ButtonSystemState.Initial:
|
|
|
|
case ButtonSystemState.Exit:
|
|
|
|
background.FadeColour(Color4.White, 500, Easing.OutSine);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
background.FadeColour(OsuColour.Gray(0.8f), 500, Easing.OutSine);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
};
|
2018-04-13 17:19:50 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
[BackgroundDependencyLoader(true)]
|
|
|
|
private void load(OsuGame game = null)
|
|
|
|
{
|
|
|
|
LoadComponentAsync(background);
|
|
|
|
|
|
|
|
if (game != null)
|
|
|
|
{
|
|
|
|
buttons.OnSettings = game.ToggleSettings;
|
|
|
|
buttons.OnDirect = game.ToggleDirect;
|
|
|
|
}
|
|
|
|
|
|
|
|
preloadSongSelect();
|
|
|
|
}
|
|
|
|
|
|
|
|
private void preloadSongSelect()
|
|
|
|
{
|
|
|
|
if (songSelect == null)
|
|
|
|
LoadComponentAsync(songSelect = new PlaySongSelect());
|
|
|
|
}
|
|
|
|
|
2018-07-11 00:32:10 +08:00
|
|
|
public void LoadToSolo() => Schedule(onSolo);
|
|
|
|
|
|
|
|
private void onSolo() => Push(consumeSongSelect());
|
|
|
|
|
2018-04-13 17:19:50 +08:00
|
|
|
private Screen consumeSongSelect()
|
|
|
|
{
|
|
|
|
var s = songSelect;
|
|
|
|
songSelect = null;
|
|
|
|
return s;
|
|
|
|
}
|
|
|
|
|
|
|
|
protected override void OnEntering(Screen last)
|
|
|
|
{
|
|
|
|
base.OnEntering(last);
|
|
|
|
buttons.FadeInFromZero(500);
|
|
|
|
|
|
|
|
var track = Beatmap.Value.Track;
|
|
|
|
var metadata = Beatmap.Value.Metadata;
|
|
|
|
|
|
|
|
if (last is Intro && track != null)
|
|
|
|
{
|
|
|
|
if (!track.IsRunning)
|
|
|
|
{
|
|
|
|
track.Seek(metadata.PreviewTime != -1 ? metadata.PreviewTime : 0.4f * track.Length);
|
|
|
|
track.Start();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Beatmap.ValueChanged += beatmap_ValueChanged;
|
|
|
|
}
|
|
|
|
|
|
|
|
protected override void LogoArriving(OsuLogo logo, bool resuming)
|
|
|
|
{
|
|
|
|
base.LogoArriving(logo, resuming);
|
|
|
|
|
|
|
|
buttons.SetOsuLogo(logo);
|
|
|
|
|
|
|
|
logo.FadeColour(Color4.White, 100, Easing.OutQuint);
|
|
|
|
logo.FadeIn(100, Easing.OutQuint);
|
|
|
|
|
|
|
|
if (resuming)
|
|
|
|
{
|
2018-07-03 17:18:04 +08:00
|
|
|
buttons.State = ButtonSystemState.TopLevel;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
const float length = 300;
|
|
|
|
|
|
|
|
Content.FadeIn(length, Easing.OutQuint);
|
|
|
|
Content.MoveTo(new Vector2(0, 0), length, Easing.OutQuint);
|
|
|
|
|
|
|
|
sideFlashes.Delay(length).FadeIn(64, Easing.InQuint);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
protected override void LogoSuspending(OsuLogo logo)
|
|
|
|
{
|
|
|
|
logo.FadeOut(300, Easing.InSine)
|
|
|
|
.ScaleTo(0.2f, 300, Easing.InSine)
|
|
|
|
.OnComplete(l => buttons.SetOsuLogo(null));
|
|
|
|
}
|
|
|
|
|
|
|
|
private void beatmap_ValueChanged(WorkingBeatmap newValue)
|
|
|
|
{
|
|
|
|
if (!IsCurrentScreen)
|
|
|
|
return;
|
|
|
|
|
|
|
|
background.Next();
|
|
|
|
}
|
|
|
|
|
|
|
|
protected override void OnSuspending(Screen next)
|
|
|
|
{
|
|
|
|
base.OnSuspending(next);
|
|
|
|
|
|
|
|
const float length = 400;
|
|
|
|
|
2018-07-03 17:18:04 +08:00
|
|
|
buttons.State = ButtonSystemState.EnteringMode;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
Content.FadeOut(length, Easing.InSine);
|
|
|
|
Content.MoveTo(new Vector2(-800, 0), length, Easing.InSine);
|
|
|
|
|
|
|
|
sideFlashes.FadeOut(64, Easing.OutQuint);
|
|
|
|
}
|
|
|
|
|
|
|
|
protected override void OnResuming(Screen last)
|
|
|
|
{
|
|
|
|
base.OnResuming(last);
|
|
|
|
|
|
|
|
background.Next();
|
|
|
|
|
|
|
|
//we may have consumed our preloaded instance, so let's make another.
|
|
|
|
preloadSongSelect();
|
|
|
|
}
|
|
|
|
|
|
|
|
protected override bool OnExiting(Screen next)
|
|
|
|
{
|
2018-07-03 17:18:04 +08:00
|
|
|
buttons.State = ButtonSystemState.Exit;
|
2018-04-13 17:19:50 +08:00
|
|
|
Content.FadeOut(3000);
|
|
|
|
return base.OnExiting(next);
|
|
|
|
}
|
|
|
|
|
2018-10-02 11:02:47 +08:00
|
|
|
protected override bool OnKeyDown(KeyDownEvent e)
|
2018-04-13 17:19:50 +08:00
|
|
|
{
|
2018-10-02 11:44:14 +08:00
|
|
|
if (!e.Repeat && e.ControlPressed && e.ShiftPressed && e.Key == Key.D)
|
2018-04-13 17:19:50 +08:00
|
|
|
{
|
|
|
|
Push(new Drawings());
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-10-02 11:02:47 +08:00
|
|
|
return base.OnKeyDown(e);
|
2018-04-13 17:19:50 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|