2019-02-05 07:14:37 +00: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.
|
|
|
|
|
|
|
|
using System;
|
2021-02-17 12:42:22 +00:00
|
|
|
using System.Linq;
|
2019-02-05 07:14:37 +00:00
|
|
|
using osu.Framework.Allocation;
|
2019-02-21 10:04:31 +00:00
|
|
|
using osu.Framework.Bindables;
|
2019-02-05 07:14:37 +00:00
|
|
|
using osu.Framework.Graphics.Containers;
|
2020-12-25 04:38:11 +00:00
|
|
|
using osu.Game.Online.Rooms;
|
2021-02-16 08:35:44 +00:00
|
|
|
using osu.Game.Screens.OnlinePlay.Match;
|
2019-02-05 07:14:37 +00:00
|
|
|
using osu.Game.Users;
|
|
|
|
|
2020-12-25 15:50:00 +00:00
|
|
|
namespace osu.Game.Screens.OnlinePlay
|
2019-02-05 07:14:37 +00:00
|
|
|
{
|
2021-02-18 06:47:33 +00:00
|
|
|
/// <summary>
|
|
|
|
/// A <see cref="CompositeDrawable"/> that exposes bindables for <see cref="Room"/> properties.
|
|
|
|
/// </summary>
|
2020-12-25 16:12:33 +00:00
|
|
|
public class OnlinePlayComposite : CompositeDrawable
|
2019-02-05 07:14:37 +00:00
|
|
|
{
|
|
|
|
[Resolved(typeof(Room))]
|
2021-02-16 10:29:40 +00:00
|
|
|
protected Bindable<long?> RoomID { get; private set; }
|
2019-02-05 07:14:37 +00:00
|
|
|
|
2019-04-25 08:36:17 +00:00
|
|
|
[Resolved(typeof(Room), nameof(Room.Name))]
|
|
|
|
protected Bindable<string> RoomName { get; private set; }
|
2019-02-05 07:14:37 +00:00
|
|
|
|
|
|
|
[Resolved(typeof(Room))]
|
2019-02-05 10:00:01 +00:00
|
|
|
protected Bindable<User> Host { get; private set; }
|
2019-02-05 07:14:37 +00:00
|
|
|
|
|
|
|
[Resolved(typeof(Room))]
|
2019-02-05 10:00:01 +00:00
|
|
|
protected Bindable<RoomStatus> Status { get; private set; }
|
2019-02-05 07:14:37 +00:00
|
|
|
|
|
|
|
[Resolved(typeof(Room))]
|
2019-02-05 10:00:01 +00:00
|
|
|
protected Bindable<GameType> Type { get; private set; }
|
2019-02-05 07:14:37 +00:00
|
|
|
|
|
|
|
[Resolved(typeof(Room))]
|
2019-02-05 10:00:01 +00:00
|
|
|
protected BindableList<PlaylistItem> Playlist { get; private set; }
|
2019-02-05 07:14:37 +00:00
|
|
|
|
|
|
|
[Resolved(typeof(Room))]
|
2020-02-27 10:42:28 +00:00
|
|
|
protected BindableList<User> RecentParticipants { get; private set; }
|
2019-02-05 07:14:37 +00:00
|
|
|
|
|
|
|
[Resolved(typeof(Room))]
|
2019-02-05 10:00:01 +00:00
|
|
|
protected Bindable<int> ParticipantCount { get; private set; }
|
2019-02-05 07:14:37 +00:00
|
|
|
|
|
|
|
[Resolved(typeof(Room))]
|
2019-02-05 10:00:01 +00:00
|
|
|
protected Bindable<int?> MaxParticipants { get; private set; }
|
2019-02-05 07:14:37 +00:00
|
|
|
|
2021-02-02 08:57:23 +00:00
|
|
|
[Resolved(typeof(Room))]
|
|
|
|
protected Bindable<int?> MaxAttempts { get; private set; }
|
|
|
|
|
2021-02-16 04:32:14 +00:00
|
|
|
[Resolved(typeof(Room))]
|
|
|
|
public Bindable<PlaylistAggregateScore> UserScore { get; private set; }
|
|
|
|
|
2019-02-05 07:14:37 +00:00
|
|
|
[Resolved(typeof(Room))]
|
2020-12-21 07:18:39 +00:00
|
|
|
protected Bindable<DateTimeOffset?> EndDate { get; private set; }
|
2019-02-05 07:14:37 +00:00
|
|
|
|
|
|
|
[Resolved(typeof(Room))]
|
2019-02-05 10:00:01 +00:00
|
|
|
protected Bindable<RoomAvailability> Availability { get; private set; }
|
2019-02-05 07:14:37 +00:00
|
|
|
|
|
|
|
[Resolved(typeof(Room))]
|
2020-12-21 07:18:39 +00:00
|
|
|
protected Bindable<TimeSpan?> Duration { get; private set; }
|
2021-02-16 08:35:44 +00:00
|
|
|
|
|
|
|
/// <summary>
|
2021-02-17 12:42:22 +00:00
|
|
|
/// The currently selected item in the <see cref="RoomSubScreen"/>, or the first item from <see cref="Playlist"/>
|
|
|
|
/// if this <see cref="OnlinePlayComposite"/> is not within a <see cref="RoomSubScreen"/>.
|
2021-02-16 08:35:44 +00:00
|
|
|
/// </summary>
|
2021-02-18 06:47:33 +00:00
|
|
|
protected readonly Bindable<PlaylistItem> SelectedItem = new Bindable<PlaylistItem>();
|
2021-02-17 12:42:22 +00:00
|
|
|
|
|
|
|
protected override void LoadComplete()
|
|
|
|
{
|
|
|
|
base.LoadComplete();
|
|
|
|
|
2021-02-18 06:47:33 +00:00
|
|
|
Playlist.BindCollectionChanged((_, __) => UpdateSelectedItem(), true);
|
2021-02-17 12:42:22 +00:00
|
|
|
}
|
|
|
|
|
2021-02-18 06:47:33 +00:00
|
|
|
protected virtual void UpdateSelectedItem()
|
2021-02-17 12:42:22 +00:00
|
|
|
{
|
2021-02-18 06:47:33 +00:00
|
|
|
SelectedItem.Value = Playlist.FirstOrDefault();
|
2021-02-17 12:42:22 +00:00
|
|
|
}
|
2019-02-05 07:14:37 +00:00
|
|
|
}
|
|
|
|
}
|