1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-11 06:32:53 +08:00
osu-lazer/osu.Game/Screens/OnlinePlay/Playlists/PlaylistsSongSelect.cs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

46 lines
1.4 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
2016-09-29 19:13:58 +08:00
{
public partial class PlaylistsSongSelect : OnlinePlaySongSelect
2016-09-29 19:13:58 +08:00
{
2024-11-14 16:57:32 +08:00
private readonly Room room;
2021-08-24 12:29:19 +08:00
public PlaylistsSongSelect(Room room)
: base(room)
{
2024-11-14 16:57:32 +08:00
this.room = room;
2021-08-24 12:29:19 +08:00
}
2024-11-14 16:57:32 +08:00
protected override BeatmapDetailArea CreateBeatmapDetailArea() => new MatchBeatmapDetailArea(room)
{
2024-11-14 16:57:32 +08:00
CreateNewItem = () => room.Playlist = room.Playlist.Append(createNewItem()).ToArray()
};
2020-02-12 18:52:47 +08:00
protected override bool SelectItem(PlaylistItem item)
{
2024-11-14 16:57:32 +08:00
if (room.Playlist.Count <= 1)
room.Playlist = [createNewItem()];
this.Exit();
return true;
}
2019-02-01 14:42:15 +08:00
2024-11-14 16:57:32 +08:00
private PlaylistItem createNewItem() => new PlaylistItem(Beatmap.Value.BeatmapInfo)
2019-02-01 14:42:15 +08:00
{
2024-11-14 16:57:32 +08:00
ID = room.Playlist.Count == 0 ? 0 : room.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()
};
2016-09-29 19:13:58 +08:00
}
}