1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-23 06:07:25 +08:00
osu-lazer/osu.Game/Screens/Select/PlaySongSelect.cs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

124 lines
4.0 KiB
C#
Raw Normal View History

// 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 System.Collections.Generic;
using System.Linq;
2017-03-14 18:38:06 +08:00
using osu.Framework.Allocation;
using osu.Framework.Graphics.Sprites;
2020-03-02 18:40:32 +08:00
using osu.Framework.Input.Events;
using osu.Framework.Screens;
2017-03-14 18:38:06 +08:00
using osu.Game.Graphics;
2020-06-02 19:32:52 +08:00
using osu.Game.Overlays;
using osu.Game.Overlays.Notifications;
using osu.Game.Rulesets.Mods;
using osu.Game.Scoring;
using osu.Game.Screens.Play;
2020-03-17 16:43:16 +08:00
using osu.Game.Screens.Ranking;
using osu.Game.Users;
using osu.Game.Utils;
using osuTK.Input;
2018-04-13 17:19:50 +08:00
namespace osu.Game.Screens.Select
{
public class PlaySongSelect : SongSelect
{
2021-05-25 17:37:04 +08:00
private OsuScreen playerLoader;
2018-04-13 17:19:50 +08:00
2020-06-02 22:01:01 +08:00
[Resolved(CanBeNull = true)]
private INotificationOverlay notifications { get; set; }
2020-06-02 19:32:52 +08:00
public override bool AllowExternalScreenChange => true;
protected override UserActivity InitialActivity => new UserActivity.ChoosingBeatmap();
[BackgroundDependencyLoader]
private void load(OsuColour colours)
2017-03-14 21:51:26 +08:00
{
BeatmapOptions.AddButton(@"Edit", @"beatmap", FontAwesome.Solid.PencilAlt, colours.Yellow, () => Edit());
2020-02-12 18:52:47 +08:00
((PlayBeatmapDetailArea)BeatmapDetails).Leaderboard.ScoreSelected += PresentScore;
}
2018-04-13 17:19:50 +08:00
protected void PresentScore(ScoreInfo score) =>
FinaliseSelection(score.BeatmapInfo, score.Ruleset, () => this.Push(new SoloResultsScreen(score, false)));
2020-02-12 18:52:47 +08:00
protected override BeatmapDetailArea CreateBeatmapDetailArea() => new PlayBeatmapDetailArea();
2020-03-02 18:40:32 +08:00
protected override bool OnKeyDown(KeyDownEvent e)
{
switch (e.Key)
{
case Key.Enter:
case Key.KeypadEnter:
2020-03-02 18:40:32 +08:00
// this is a special hard-coded case; we can't rely on OnPressed (of SongSelect) as GlobalActionContainer is
// matching with exact modifier consideration (so Ctrl+Enter would be ignored).
FinaliseSelection();
return true;
}
return base.OnKeyDown(e);
}
private IReadOnlyList<Mod> modsAtGameplayStart;
private ModAutoplay getAutoplayMod() => Ruleset.Value.CreateInstance().GetAutoplayMod();
protected override bool OnStart()
{
2021-05-25 17:37:04 +08:00
if (playerLoader != null) return false;
2018-04-13 17:19:50 +08:00
modsAtGameplayStart = Mods.Value;
2017-12-15 11:08:11 +08:00
// Ctrl+Enter should start map with autoplay enabled.
if (GetContainingInputManager().CurrentState?.Keyboard.ControlPressed == true)
{
2021-05-25 17:37:04 +08:00
var autoInstance = getAutoplayMod();
2021-05-25 17:37:04 +08:00
if (autoInstance == null)
2020-06-02 19:32:52 +08:00
{
2020-06-02 22:01:01 +08:00
notifications?.Post(new SimpleNotification
{
2020-06-02 19:32:52 +08:00
Text = "The current ruleset doesn't have an autoplay mod avalaible!"
});
return false;
}
var mods = Mods.Value.Append(autoInstance).ToArray();
if (!ModUtils.CheckCompatibleSet(mods, out var invalid))
mods = mods.Except(invalid).Append(autoInstance).ToArray();
Mods.Value = mods;
2017-12-15 11:08:11 +08:00
}
2018-04-13 17:19:50 +08:00
SampleConfirm?.Play();
2018-04-13 17:19:50 +08:00
2021-05-25 17:37:04 +08:00
this.Push(playerLoader = new PlayerLoader(createPlayer));
return true;
2021-05-25 17:37:04 +08:00
Player createPlayer()
{
var replayGeneratingMod = Mods.Value.OfType<ICreateReplayData>().FirstOrDefault();
if (replayGeneratingMod != null)
{
return new ReplayPlayer((beatmap, mods) => replayGeneratingMod.CreateScoreFromReplayData(beatmap, mods));
}
2021-05-25 17:37:04 +08:00
return new SoloPlayer();
}
}
public override void OnResuming(ScreenTransitionEvent e)
{
base.OnResuming(e);
if (playerLoader != null)
{
Mods.Value = modsAtGameplayStart;
playerLoader = null;
}
}
}
}