osu/osu.Game/Screens/Menu/MainMenu.cs

103 lines
3.2 KiB
C#
Raw Normal View History

// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
2016-08-26 03:28:23 +00:00
2016-11-14 08:23:33 +00:00
using osu.Framework.Allocation;
2016-08-26 03:28:23 +00:00
using osu.Framework.GameModes;
2016-09-29 11:13:58 +00:00
using osu.Framework.GameModes.Testing;
using osu.Framework.Graphics;
2016-10-01 08:02:20 +00:00
using osu.Framework.Graphics.Transformations;
using osu.Game.Graphics.Containers;
2016-11-14 08:23:33 +00:00
using osu.Game.Screens.Backgrounds;
using osu.Game.Screens.Charts;
using osu.Game.Screens.Direct;
using osu.Game.Screens.Multiplayer;
2016-10-01 08:02:20 +00:00
using OpenTK;
using osu.Game.Screens.Select;
2016-08-26 03:28:23 +00:00
2016-11-14 08:23:33 +00:00
namespace osu.Game.Screens.Menu
2016-08-26 03:28:23 +00:00
{
2016-10-05 07:35:10 +00:00
public class MainMenu : OsuGameMode
2016-08-26 03:28:23 +00:00
{
2016-10-01 08:02:20 +00:00
private ButtonSystem buttons;
2016-08-26 03:28:23 +00:00
public override string Name => @"Main Menu";
internal override bool ShowOverlays => buttons.State != MenuState.Initial;
2016-11-01 14:24:14 +00:00
private BackgroundMode background;
2016-10-05 07:35:10 +00:00
2016-11-01 14:24:14 +00:00
protected override BackgroundMode CreateBackground() => background;
2016-11-01 14:24:14 +00:00
public MainMenu()
{
background = new BackgroundModeDefault();
2016-09-30 04:31:05 +00:00
Children = new Drawable[]
{
2016-10-01 08:02:20 +00:00
new ParallaxContainer
2016-09-29 11:13:58 +00:00
{
2016-10-01 08:02:20 +00:00
ParallaxAmount = 0.01f,
Children = new Drawable[]
{
buttons = new ButtonSystem
2016-10-01 08:02:20 +00:00
{
OnChart = delegate { Push(new ChartListing()); },
OnDirect = delegate { Push(new OnlineListing()); },
2016-10-05 11:03:52 +00:00
OnEdit = delegate { Push(new EditSongSelect()); },
OnSolo = delegate { Push(new PlaySongSelect()); },
2016-10-01 08:02:20 +00:00
OnMulti = delegate { Push(new Lobby()); },
OnTest = delegate { Push(new TestBrowser()); },
OnExit = delegate { Exit(); },
2016-10-01 08:02:20 +00:00
}
}
2016-09-29 11:13:58 +00:00
}
2016-09-30 04:31:05 +00:00
};
2016-11-01 14:24:14 +00:00
}
[BackgroundDependencyLoader]
private void load(OsuGame game)
2016-11-01 14:24:14 +00:00
{
background.Preload(game);
buttons.OnSettings = game.ToggleOptions;
2016-11-01 14:24:14 +00:00
}
protected override void OnEntering(GameMode last)
2016-11-01 14:24:14 +00:00
{
base.OnEntering(last);
2016-11-01 14:24:14 +00:00
buttons.FadeInFromZero(500);
2016-09-30 04:31:05 +00:00
}
2016-10-05 07:35:10 +00:00
protected override void OnSuspending(GameMode next)
{
2016-10-05 07:35:10 +00:00
base.OnSuspending(next);
const float length = 400;
buttons.State = MenuState.EnteringMode;
Content.FadeOut(length, EasingTypes.InSine);
Content.MoveTo(new Vector2(-800, 0), length, EasingTypes.InSine);
}
2016-10-05 07:35:10 +00:00
protected override void OnResuming(GameMode last)
{
2016-10-05 07:35:10 +00:00
base.OnResuming(last);
const float length = 300;
buttons.State = MenuState.TopLevel;
Content.FadeIn(length, EasingTypes.OutQuint);
Content.MoveTo(new Vector2(0, 0), length, EasingTypes.OutQuint);
}
protected override bool OnExiting(GameMode next)
{
buttons.State = MenuState.Exit;
Content.FadeOut(ButtonSystem.EXIT_DELAY);
return base.OnExiting(next);
}
2016-08-26 03:28:23 +00:00
}
}