1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-24 14:47:24 +08:00
osu-lazer/osu.Game/Screens/OnlinePlay/Lounge/LoungeBackgroundScreen.cs

44 lines
1.4 KiB
C#
Raw Normal View History

2021-08-20 17:14:12 +08: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.
#nullable enable
using System.Linq;
using osu.Framework.Bindables;
using osu.Framework.Screens;
2021-08-20 17:14:12 +08:00
using osu.Game.Online.Rooms;
using osu.Game.Screens.OnlinePlay.Components;
using PlaylistItem = osu.Game.Online.Rooms.PlaylistItem;
namespace osu.Game.Screens.OnlinePlay.Lounge
{
public class LoungeBackgroundScreen : OnlinePlayBackgroundScreen
{
2021-08-20 20:33:21 +08:00
public readonly Bindable<Room> SelectedRoom = new Bindable<Room>();
2021-08-20 17:14:12 +08:00
private readonly BindableList<PlaylistItem> playlist = new BindableList<PlaylistItem>();
public LoungeBackgroundScreen()
{
2021-08-20 20:33:21 +08:00
SelectedRoom.BindValueChanged(onSelectedRoomChanged);
2021-08-20 17:14:12 +08:00
playlist.BindCollectionChanged((_, __) => PlaylistItem = playlist.FirstOrDefault());
}
2021-08-20 20:33:21 +08:00
private void onSelectedRoomChanged(ValueChangedEvent<Room> room)
2021-08-20 17:14:12 +08:00
{
2021-08-20 20:33:21 +08:00
if (room.OldValue != null)
playlist.UnbindFrom(room.OldValue.Playlist);
2021-08-20 17:14:12 +08:00
2021-08-20 20:33:21 +08:00
if (room.NewValue != null)
playlist.BindTo(room.NewValue.Playlist);
else
playlist.Clear();
2021-08-20 17:14:12 +08:00
}
public override bool OnExiting(IScreen next)
{
// This screen never exits.
return true;
}
2021-08-20 17:14:12 +08:00
}
}