2019-01-24 16:43:03 +08:00
|
|
|
|
// 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.Linq;
|
|
|
|
|
using osu.Framework.Allocation;
|
2019-03-27 18:29:27 +08:00
|
|
|
|
using osu.Framework.Graphics.Sprites;
|
2020-03-02 18:40:32 +08:00
|
|
|
|
using osu.Framework.Input.Events;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
using osu.Framework.Screens;
|
|
|
|
|
using osu.Game.Graphics;
|
2020-06-02 19:32:52 +08:00
|
|
|
|
using osu.Game.Overlays;
|
|
|
|
|
using osu.Game.Overlays.Notifications;
|
2021-01-05 15:17:42 +08:00
|
|
|
|
using osu.Game.Rulesets.Mods;
|
2020-05-04 13:04:30 +08:00
|
|
|
|
using osu.Game.Scoring;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
using osu.Game.Screens.Play;
|
2020-03-17 16:43:16 +08:00
|
|
|
|
using osu.Game.Screens.Ranking;
|
2019-04-13 04:54:35 +08:00
|
|
|
|
using osu.Game.Users;
|
2018-12-12 12:21:44 +08:00
|
|
|
|
using osuTK.Input;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
|
|
namespace osu.Game.Screens.Select
|
|
|
|
|
{
|
|
|
|
|
public class PlaySongSelect : SongSelect
|
|
|
|
|
{
|
|
|
|
|
private bool removeAutoModOnResume;
|
2018-12-12 12:21:44 +08:00
|
|
|
|
private OsuScreen player;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2020-06-02 22:01:01 +08:00
|
|
|
|
[Resolved(CanBeNull = true)]
|
2020-06-02 19:32:52 +08:00
|
|
|
|
private NotificationOverlay notifications { get; set; }
|
|
|
|
|
|
2019-02-14 12:28:21 +08:00
|
|
|
|
public override bool AllowExternalScreenChange => true;
|
|
|
|
|
|
2019-06-12 15:33:15 +08:00
|
|
|
|
protected override UserActivity InitialActivity => new UserActivity.ChoosingBeatmap();
|
2019-04-13 04:54:35 +08:00
|
|
|
|
|
2018-12-12 12:21:44 +08:00
|
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
|
private void load(OsuColour colours)
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2020-11-02 05:50:38 +08:00
|
|
|
|
BeatmapOptions.AddButton(@"Edit", @"beatmap", FontAwesome.Solid.PencilAlt, colours.Yellow, () => Edit());
|
2020-02-12 18:52:47 +08:00
|
|
|
|
|
2020-05-04 13:04:30 +08:00
|
|
|
|
((PlayBeatmapDetailArea)BeatmapDetails).Leaderboard.ScoreSelected += PresentScore;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
|
2020-05-04 13:04:30 +08:00
|
|
|
|
protected void PresentScore(ScoreInfo score) =>
|
2020-11-20 13:35:44 +08:00
|
|
|
|
FinaliseSelection(score.Beatmap, score.Ruleset, () => this.Push(new SoloResultsScreen(score, false)));
|
2020-05-04 13:04:30 +08:00
|
|
|
|
|
2020-02-12 18:52:47 +08:00
|
|
|
|
protected override BeatmapDetailArea CreateBeatmapDetailArea() => new PlayBeatmapDetailArea();
|
|
|
|
|
|
2021-01-05 15:17:42 +08:00
|
|
|
|
private ModAutoplay getAutoplayMod() => Ruleset.Value.CreateInstance().GetAutoplayMod();
|
|
|
|
|
|
2019-01-23 19:52:00 +08:00
|
|
|
|
public override void OnResuming(IScreen last)
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2020-02-03 15:04:32 +08:00
|
|
|
|
base.OnResuming(last);
|
|
|
|
|
|
2018-04-13 17:19:50 +08:00
|
|
|
|
player = null;
|
|
|
|
|
|
|
|
|
|
if (removeAutoModOnResume)
|
|
|
|
|
{
|
2021-01-05 15:17:42 +08:00
|
|
|
|
var autoType = getAutoplayMod()?.GetType();
|
2020-06-01 23:41:04 +08:00
|
|
|
|
|
|
|
|
|
if (autoType != null)
|
2021-01-05 15:17:42 +08:00
|
|
|
|
Mods.Value = Mods.Value.Where(m => m.GetType() != autoType).ToArray();
|
2020-06-01 23:41:04 +08:00
|
|
|
|
|
2018-04-13 17:19:50 +08:00
|
|
|
|
removeAutoModOnResume = false;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-03-02 18:40:32 +08:00
|
|
|
|
protected override bool OnKeyDown(KeyDownEvent e)
|
|
|
|
|
{
|
|
|
|
|
switch (e.Key)
|
|
|
|
|
{
|
|
|
|
|
case Key.Enter:
|
2020-03-24 02:25:40 +08:00
|
|
|
|
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);
|
|
|
|
|
}
|
|
|
|
|
|
2018-05-30 14:44:35 +08:00
|
|
|
|
protected override bool OnStart()
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
|
|
|
|
if (player != null) return false;
|
|
|
|
|
|
|
|
|
|
// Ctrl+Enter should start map with autoplay enabled.
|
|
|
|
|
if (GetContainingInputManager().CurrentState?.Keyboard.ControlPressed == true)
|
|
|
|
|
{
|
2021-01-05 15:17:42 +08:00
|
|
|
|
var autoplayMod = getAutoplayMod();
|
2020-06-01 23:41:04 +08:00
|
|
|
|
|
2021-01-05 15:17:42 +08:00
|
|
|
|
if (autoplayMod == null)
|
2020-06-02 19:32:52 +08:00
|
|
|
|
{
|
2020-06-02 22:01:01 +08:00
|
|
|
|
notifications?.Post(new SimpleNotification
|
2020-06-01 23:41:04 +08:00
|
|
|
|
{
|
2020-06-02 19:32:52 +08:00
|
|
|
|
Text = "The current ruleset doesn't have an autoplay mod avalaible!"
|
|
|
|
|
});
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2021-01-05 15:17:42 +08:00
|
|
|
|
var mods = Mods.Value;
|
|
|
|
|
|
|
|
|
|
if (mods.All(m => m.GetType() != autoplayMod.GetType()))
|
2020-06-02 19:32:52 +08:00
|
|
|
|
{
|
2021-01-05 15:17:42 +08:00
|
|
|
|
Mods.Value = mods.Append(autoplayMod).ToArray();
|
2020-06-02 19:32:52 +08:00
|
|
|
|
removeAutoModOnResume = true;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2018-12-12 12:21:44 +08:00
|
|
|
|
SampleConfirm?.Play();
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2021-03-23 13:47:15 +08:00
|
|
|
|
this.Push(player = new PlayerLoader(() => new SoloPlayer()));
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|