1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-23 18:07:25 +08:00
osu-lazer/osu.Game/Screens/OnlinePlay/Playlists/PlaylistsSongSelect.cs

57 lines
1.6 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.Linq;
2019-01-23 19:52:00 +08:00
using osu.Framework.Screens;
using osu.Game.Online.API;
2020-12-25 12:38:11 +08:00
using osu.Game.Online.Rooms;
using osu.Game.Screens.OnlinePlay.Components;
using osu.Game.Screens.Select;
namespace osu.Game.Screens.OnlinePlay.Playlists
2018-04-13 17:19:50 +08:00
{
public class PlaylistsSongSelect : OnlinePlaySongSelect
2018-04-13 17:19:50 +08:00
{
2021-08-24 12:29:19 +08:00
public PlaylistsSongSelect(Room room)
: base(room)
{
}
protected override BeatmapDetailArea CreateBeatmapDetailArea() => new MatchBeatmapDetailArea
{
CreateNewItem = createNewItem
};
2020-02-12 18:52:47 +08:00
2021-02-01 17:50:32 +08:00
protected override void SelectItem(PlaylistItem item)
2018-04-13 17:19:50 +08:00
{
switch (Playlist.Count)
{
case 0:
createNewItem();
break;
case 1:
Playlist.Clear();
createNewItem();
break;
}
this.Exit();
2018-04-13 17:19:50 +08:00
}
2019-02-01 14:42:15 +08:00
private void createNewItem()
2019-02-01 14:42:15 +08:00
{
PlaylistItem item = new PlaylistItem
{
ID = Playlist.Count == 0 ? 0 : Playlist.Max(p => p.ID) + 1,
Beatmap = { Value = Beatmap.Value.BeatmapInfo },
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);
2019-02-01 14:42:15 +08:00
}
2018-04-13 17:19:50 +08:00
}
}