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-12-14 12:38:27 +08:00
|
|
|
|
using System;
|
2018-12-25 16:17:51 +08:00
|
|
|
|
using Humanizer;
|
2018-12-14 12:38:27 +08:00
|
|
|
|
using osu.Game.Online.Multiplayer;
|
2018-12-10 18:20:41 +08:00
|
|
|
|
using osu.Game.Screens.Multi;
|
2018-12-04 16:43:44 +08:00
|
|
|
|
|
2018-04-13 17:19:50 +08:00
|
|
|
|
namespace osu.Game.Screens.Select
|
|
|
|
|
{
|
2018-12-26 19:05:57 +08:00
|
|
|
|
public class MatchSongSelect : SongSelect, IMultiplayerSubScreen
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2018-12-14 12:38:27 +08:00
|
|
|
|
public Action<PlaylistItem> Selected;
|
|
|
|
|
|
2018-12-04 16:43:44 +08:00
|
|
|
|
public string ShortTitle => "song selection";
|
2018-12-25 16:17:51 +08:00
|
|
|
|
public override string Title => ShortTitle.Humanize();
|
2018-12-04 16:43:44 +08:00
|
|
|
|
|
2018-05-30 14:44:35 +08:00
|
|
|
|
protected override bool OnStart()
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2018-12-14 12:38:27 +08:00
|
|
|
|
var item = new PlaylistItem
|
|
|
|
|
{
|
|
|
|
|
Beatmap = Beatmap.Value.BeatmapInfo,
|
|
|
|
|
Ruleset = Ruleset.Value,
|
2018-12-14 16:35:05 +08:00
|
|
|
|
RulesetID = Ruleset.Value.ID ?? 0
|
2018-12-14 12:38:27 +08:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
item.RequiredMods.AddRange(SelectedMods.Value);
|
|
|
|
|
|
|
|
|
|
Selected?.Invoke(item);
|
|
|
|
|
|
|
|
|
|
if (IsCurrentScreen)
|
|
|
|
|
Exit();
|
|
|
|
|
|
2018-04-13 17:19:50 +08:00
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|