mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 02:37:25 +08:00
57 lines
1.6 KiB
C#
57 lines
1.6 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.Screens;
|
|
using osu.Game.Online.API;
|
|
using osu.Game.Online.Rooms;
|
|
using osu.Game.Screens.OnlinePlay.Components;
|
|
using osu.Game.Screens.Select;
|
|
|
|
namespace osu.Game.Screens.OnlinePlay.Playlists
|
|
{
|
|
public partial class PlaylistsSongSelect : OnlinePlaySongSelect
|
|
{
|
|
public PlaylistsSongSelect(Room room)
|
|
: base(room)
|
|
{
|
|
}
|
|
|
|
protected override BeatmapDetailArea CreateBeatmapDetailArea() => new MatchBeatmapDetailArea
|
|
{
|
|
CreateNewItem = createNewItem
|
|
};
|
|
|
|
protected override bool SelectItem(PlaylistItem item)
|
|
{
|
|
switch (Playlist.Count)
|
|
{
|
|
case 0:
|
|
createNewItem();
|
|
break;
|
|
|
|
case 1:
|
|
Playlist.Clear();
|
|
createNewItem();
|
|
break;
|
|
}
|
|
|
|
this.Exit();
|
|
return true;
|
|
}
|
|
|
|
private void createNewItem()
|
|
{
|
|
PlaylistItem item = new PlaylistItem(Beatmap.Value.BeatmapInfo)
|
|
{
|
|
ID = Playlist.Count == 0 ? 0 : Playlist.Max(p => p.ID) + 1,
|
|
RulesetID = Ruleset.Value.OnlineID,
|
|
RequiredMods = Mods.Value.Select(m => new APIMod(m)).ToArray(),
|
|
AllowedMods = FreeMods.Value.Select(m => new APIMod(m)).ToArray()
|
|
};
|
|
|
|
Playlist.Add(item);
|
|
}
|
|
}
|
|
}
|