2019-01-24 17:43:03 +09: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 18:19:50 +09:00
|
|
|
|
|
2020-02-14 19:56:01 +09:00
|
|
|
|
using System.Linq;
|
2019-01-23 20:52:00 +09:00
|
|
|
|
using osu.Framework.Screens;
|
2022-02-15 16:01:14 +09:00
|
|
|
|
using osu.Game.Online.API;
|
2020-12-25 13:38:11 +09:00
|
|
|
|
using osu.Game.Online.Rooms;
|
2020-12-25 16:50:00 +01:00
|
|
|
|
using osu.Game.Screens.OnlinePlay.Components;
|
2021-02-01 20:16:58 +09:00
|
|
|
|
using osu.Game.Screens.Select;
|
2018-12-04 17:43:44 +09:00
|
|
|
|
|
2021-02-01 20:16:58 +09:00
|
|
|
|
namespace osu.Game.Screens.OnlinePlay.Playlists
|
2016-09-29 20:13:58 +09:00
|
|
|
|
{
|
2021-02-01 20:16:58 +09:00
|
|
|
|
public partial class PlaylistsSongSelect : OnlinePlaySongSelect
|
2016-09-29 20:13:58 +09:00
|
|
|
|
{
|
2021-08-24 13:29:19 +09:00
|
|
|
|
public PlaylistsSongSelect(Room room)
|
|
|
|
|
: base(room)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2020-02-14 17:51:42 +09:00
|
|
|
|
protected override BeatmapDetailArea CreateBeatmapDetailArea() => new MatchBeatmapDetailArea
|
|
|
|
|
{
|
|
|
|
|
CreateNewItem = createNewItem
|
|
|
|
|
};
|
2020-02-12 19:52:47 +09:00
|
|
|
|
|
2022-06-18 14:28:25 +09:00
|
|
|
|
protected override bool SelectItem(PlaylistItem item)
|
2017-12-28 21:07:19 +09:00
|
|
|
|
{
|
2020-02-15 14:41:16 +09:00
|
|
|
|
switch (Playlist.Count)
|
|
|
|
|
{
|
|
|
|
|
case 0:
|
|
|
|
|
createNewItem();
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case 1:
|
2022-02-15 16:01:14 +09:00
|
|
|
|
Playlist.Clear();
|
|
|
|
|
createNewItem();
|
2020-02-15 14:41:16 +09:00
|
|
|
|
break;
|
|
|
|
|
}
|
2018-12-14 13:38:27 +09:00
|
|
|
|
|
2020-02-14 17:51:42 +09:00
|
|
|
|
this.Exit();
|
2022-06-18 14:28:25 +09:00
|
|
|
|
return true;
|
2017-12-28 21:07:19 +09:00
|
|
|
|
}
|
2019-02-01 15:42:15 +09:00
|
|
|
|
|
2020-02-14 17:51:42 +09:00
|
|
|
|
private void createNewItem()
|
2019-02-01 15:42:15 +09:00
|
|
|
|
{
|
2022-02-15 23:33:26 +09:00
|
|
|
|
PlaylistItem item = new PlaylistItem(Beatmap.Value.BeatmapInfo)
|
2019-03-07 14:09:28 +09:00
|
|
|
|
{
|
2022-02-15 16:01:14 +09:00
|
|
|
|
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()
|
2020-02-14 17:51:42 +09:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
Playlist.Add(item);
|
2019-02-01 15:42:15 +09:00
|
|
|
|
}
|
2016-09-29 20:13:58 +09:00
|
|
|
|
}
|
|
|
|
|
}
|