mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 06:17:23 +08:00
143 lines
4.7 KiB
C#
143 lines
4.7 KiB
C#
// 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.
|
|
|
|
using System.Linq;
|
|
using osu.Framework.Allocation;
|
|
using osu.Framework.Graphics.Sprites;
|
|
using osu.Framework.Input.Events;
|
|
using osu.Framework.Screens;
|
|
using osu.Game.Graphics;
|
|
using osu.Game.Online.API.Requests.Responses;
|
|
using osu.Game.Overlays;
|
|
using osu.Game.Overlays.Notifications;
|
|
using osu.Game.Rulesets.Mods;
|
|
using osu.Game.Scoring;
|
|
using osu.Game.Screens.Play;
|
|
using osu.Game.Screens.Ranking;
|
|
using osu.Game.Users;
|
|
using osuTK.Input;
|
|
|
|
namespace osu.Game.Screens.Select
|
|
{
|
|
public class PlaySongSelect : SongSelect
|
|
{
|
|
private bool removeAutoModOnResume;
|
|
private OsuScreen playerLoader;
|
|
|
|
[Resolved(CanBeNull = true)]
|
|
private NotificationOverlay notifications { get; set; }
|
|
|
|
public override bool AllowExternalScreenChange => true;
|
|
|
|
protected override UserActivity InitialActivity => new UserActivity.ChoosingBeatmap();
|
|
|
|
[BackgroundDependencyLoader]
|
|
private void load(OsuColour colours)
|
|
{
|
|
BeatmapOptions.AddButton(@"Edit", @"beatmap", FontAwesome.Solid.PencilAlt, colours.Yellow, () => Edit());
|
|
|
|
((PlayBeatmapDetailArea)BeatmapDetails).Leaderboard.ScoreSelected += PresentScore;
|
|
}
|
|
|
|
protected void PresentScore(ScoreInfo score) =>
|
|
FinaliseSelection(score.BeatmapInfo, score.Ruleset, () => this.Push(new SoloResultsScreen(score, false)));
|
|
|
|
protected override BeatmapDetailArea CreateBeatmapDetailArea() => new PlayBeatmapDetailArea();
|
|
|
|
private ModAutoplay getAutoplayMod() => Ruleset.Value.CreateInstance().GetAutoplayMod();
|
|
|
|
public override void OnResuming(IScreen last)
|
|
{
|
|
base.OnResuming(last);
|
|
|
|
playerLoader = null;
|
|
|
|
if (removeAutoModOnResume)
|
|
{
|
|
var autoType = getAutoplayMod()?.GetType();
|
|
|
|
if (autoType != null)
|
|
Mods.Value = Mods.Value.Where(m => m.GetType() != autoType).ToArray();
|
|
|
|
removeAutoModOnResume = false;
|
|
}
|
|
}
|
|
|
|
protected override bool OnKeyDown(KeyDownEvent e)
|
|
{
|
|
switch (e.Key)
|
|
{
|
|
case Key.Enter:
|
|
case Key.KeypadEnter:
|
|
// 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);
|
|
}
|
|
|
|
protected override bool OnStart()
|
|
{
|
|
if (playerLoader != null) return false;
|
|
|
|
// Ctrl+Enter should start map with autoplay enabled.
|
|
if (GetContainingInputManager().CurrentState?.Keyboard.ControlPressed == true)
|
|
{
|
|
var autoInstance = getAutoplayMod();
|
|
|
|
if (autoInstance == null)
|
|
{
|
|
notifications?.Post(new SimpleNotification
|
|
{
|
|
Text = "The current ruleset doesn't have an autoplay mod avalaible!"
|
|
});
|
|
return false;
|
|
}
|
|
|
|
var mods = Mods.Value;
|
|
|
|
if (mods.All(m => m.GetType() != autoInstance.GetType()))
|
|
{
|
|
Mods.Value = mods.Append(autoInstance).ToArray();
|
|
removeAutoModOnResume = true;
|
|
}
|
|
}
|
|
|
|
SampleConfirm?.Play();
|
|
|
|
this.Push(playerLoader = new PlayerLoader(createPlayer));
|
|
return true;
|
|
|
|
Player createPlayer()
|
|
{
|
|
var replayGeneratingMod = Mods.Value.OfType<ICreateReplayData>().FirstOrDefault();
|
|
|
|
if (replayGeneratingMod != null)
|
|
{
|
|
return new ReplayPlayer((beatmap, mods) =>
|
|
{
|
|
var replayData = replayGeneratingMod.CreateReplayData(beatmap, mods);
|
|
|
|
return new Score
|
|
{
|
|
Replay = replayData.Replay,
|
|
ScoreInfo =
|
|
{
|
|
User = new APIUser
|
|
{
|
|
Id = APIUser.SYSTEM_USER_ID,
|
|
Username = replayData.User.Username,
|
|
}
|
|
}
|
|
};
|
|
});
|
|
}
|
|
|
|
return new SoloPlayer();
|
|
}
|
|
}
|
|
}
|
|
}
|