mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 16:57:25 +08:00
283 lines
16 KiB
C#
283 lines
16 KiB
C#
// 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.Diagnostics;
|
|
using System.Linq;
|
|
using osu.Framework.Allocation;
|
|
using osu.Framework.Bindables;
|
|
using osu.Framework.Graphics;
|
|
using osu.Framework.Graphics.Containers;
|
|
using osu.Framework.Screens;
|
|
using osu.Game.Online.API;
|
|
using osu.Game.Online.Rooms;
|
|
using osu.Game.Screens.OnlinePlay.Components;
|
|
using osu.Game.Screens.OnlinePlay.Match;
|
|
using osu.Game.Screens.OnlinePlay.Match.Components;
|
|
using osu.Game.Screens.Play.HUD;
|
|
using osu.Game.Users;
|
|
using osuTK;
|
|
using Footer = osu.Game.Screens.OnlinePlay.Match.Components.Footer;
|
|
|
|
namespace osu.Game.Screens.OnlinePlay.Playlists
|
|
{
|
|
public class PlaylistsRoomSubScreen : RoomSubScreen
|
|
{
|
|
public override string Title { get; }
|
|
|
|
public override string ShortTitle => "playlist";
|
|
|
|
[Resolved(typeof(Room), nameof(Room.RoomID))]
|
|
private Bindable<long?> roomId { get; set; }
|
|
|
|
[Resolved(typeof(Room), nameof(Room.Playlist))]
|
|
private BindableList<PlaylistItem> playlist { get; set; }
|
|
|
|
private MatchSettingsOverlay settingsOverlay;
|
|
private MatchLeaderboard leaderboard;
|
|
|
|
private OverlinedHeader participantsHeader;
|
|
|
|
private GridContainer mainContent;
|
|
|
|
public PlaylistsRoomSubScreen(Room room)
|
|
{
|
|
Title = room.RoomID.Value == null ? "New playlist" : room.Name.Value;
|
|
Activity.Value = new UserActivity.InLobby(room);
|
|
}
|
|
|
|
[BackgroundDependencyLoader]
|
|
private void load()
|
|
{
|
|
AddRangeInternal(new Drawable[]
|
|
{
|
|
mainContent = new GridContainer
|
|
{
|
|
RelativeSizeAxes = Axes.Both,
|
|
Content = new[]
|
|
{
|
|
new Drawable[]
|
|
{
|
|
new Container
|
|
{
|
|
RelativeSizeAxes = Axes.Both,
|
|
Padding = new MarginPadding
|
|
{
|
|
Horizontal = 105,
|
|
Vertical = 20
|
|
},
|
|
Child = new GridContainer
|
|
{
|
|
RelativeSizeAxes = Axes.Both,
|
|
RowDimensions = new[]
|
|
{
|
|
new Dimension(GridSizeMode.AutoSize),
|
|
new Dimension(GridSizeMode.AutoSize),
|
|
new Dimension(GridSizeMode.AutoSize),
|
|
new Dimension(),
|
|
},
|
|
Content = new[]
|
|
{
|
|
new Drawable[] { new Match.Components.Header() },
|
|
new Drawable[]
|
|
{
|
|
participantsHeader = new OverlinedHeader("Participants")
|
|
{
|
|
ShowLine = false
|
|
}
|
|
},
|
|
new Drawable[]
|
|
{
|
|
new Container
|
|
{
|
|
RelativeSizeAxes = Axes.X,
|
|
AutoSizeAxes = Axes.Y,
|
|
Margin = new MarginPadding { Top = 5 },
|
|
Child = new ParticipantsDisplay(Direction.Horizontal)
|
|
{
|
|
Details = { BindTarget = participantsHeader.Details }
|
|
}
|
|
}
|
|
},
|
|
new Drawable[]
|
|
{
|
|
new GridContainer
|
|
{
|
|
RelativeSizeAxes = Axes.Both,
|
|
Content = new[]
|
|
{
|
|
new Drawable[]
|
|
{
|
|
new Container
|
|
{
|
|
RelativeSizeAxes = Axes.Both,
|
|
Padding = new MarginPadding { Right = 5 },
|
|
Child = new GridContainer
|
|
{
|
|
RelativeSizeAxes = Axes.Both,
|
|
Content = new[]
|
|
{
|
|
new Drawable[] { new OverlinedPlaylistHeader(), },
|
|
new Drawable[]
|
|
{
|
|
new DrawableRoomPlaylistWithResults
|
|
{
|
|
RelativeSizeAxes = Axes.Both,
|
|
Items = { BindTarget = playlist },
|
|
SelectedItem = { BindTarget = SelectedItem },
|
|
RequestShowResults = item =>
|
|
{
|
|
Debug.Assert(roomId.Value != null);
|
|
ParentScreen?.Push(new PlaylistsResultsScreen(null, roomId.Value.Value, item, false));
|
|
}
|
|
}
|
|
},
|
|
},
|
|
RowDimensions = new[]
|
|
{
|
|
new Dimension(GridSizeMode.AutoSize),
|
|
new Dimension(),
|
|
}
|
|
}
|
|
},
|
|
null,
|
|
new GridContainer
|
|
{
|
|
RelativeSizeAxes = Axes.Both,
|
|
Content = new[]
|
|
{
|
|
new[]
|
|
{
|
|
UserModsSection = new FillFlowContainer
|
|
{
|
|
RelativeSizeAxes = Axes.X,
|
|
AutoSizeAxes = Axes.Y,
|
|
Margin = new MarginPadding { Bottom = 10 },
|
|
Children = new Drawable[]
|
|
{
|
|
new OverlinedHeader("Extra mods"),
|
|
new FillFlowContainer
|
|
{
|
|
AutoSizeAxes = Axes.Both,
|
|
Direction = FillDirection.Horizontal,
|
|
Spacing = new Vector2(10, 0),
|
|
Children = new Drawable[]
|
|
{
|
|
new PurpleTriangleButton
|
|
{
|
|
Anchor = Anchor.CentreLeft,
|
|
Origin = Anchor.CentreLeft,
|
|
Width = 90,
|
|
Text = "Select",
|
|
Action = ShowUserModSelect,
|
|
},
|
|
new ModDisplay
|
|
{
|
|
Anchor = Anchor.CentreLeft,
|
|
Origin = Anchor.CentreLeft,
|
|
DisplayUnrankedText = false,
|
|
Current = UserMods,
|
|
Scale = new Vector2(0.8f),
|
|
},
|
|
}
|
|
}
|
|
}
|
|
},
|
|
},
|
|
new Drawable[]
|
|
{
|
|
new OverlinedHeader("Leaderboard")
|
|
},
|
|
new Drawable[] { leaderboard = new MatchLeaderboard { RelativeSizeAxes = Axes.Both }, },
|
|
new Drawable[] { new OverlinedHeader("Chat"), },
|
|
new Drawable[] { new MatchChatDisplay { RelativeSizeAxes = Axes.Both } }
|
|
},
|
|
RowDimensions = new[]
|
|
{
|
|
new Dimension(GridSizeMode.AutoSize),
|
|
new Dimension(GridSizeMode.AutoSize),
|
|
new Dimension(),
|
|
new Dimension(GridSizeMode.AutoSize),
|
|
new Dimension(GridSizeMode.Relative, size: 0.4f, minSize: 120),
|
|
}
|
|
},
|
|
null
|
|
},
|
|
},
|
|
ColumnDimensions = new[]
|
|
{
|
|
new Dimension(GridSizeMode.Relative, size: 0.5f, maxSize: 400),
|
|
new Dimension(),
|
|
new Dimension(GridSizeMode.Relative, size: 0.5f, maxSize: 600),
|
|
new Dimension(),
|
|
}
|
|
}
|
|
}
|
|
},
|
|
}
|
|
}
|
|
},
|
|
new Drawable[]
|
|
{
|
|
new Footer
|
|
{
|
|
OnStart = onStart,
|
|
}
|
|
}
|
|
},
|
|
RowDimensions = new[]
|
|
{
|
|
new Dimension(),
|
|
new Dimension(GridSizeMode.AutoSize),
|
|
}
|
|
},
|
|
settingsOverlay = new PlaylistsMatchSettingsOverlay
|
|
{
|
|
RelativeSizeAxes = Axes.Both,
|
|
EditPlaylist = () => this.Push(new PlaylistsSongSelect()),
|
|
State = { Value = roomId.Value == null ? Visibility.Visible : Visibility.Hidden }
|
|
}
|
|
});
|
|
|
|
if (roomId.Value == null)
|
|
{
|
|
// A new room is being created.
|
|
// The main content should be hidden until the settings overlay is hidden, signaling the room is ready to be displayed.
|
|
mainContent.Hide();
|
|
|
|
settingsOverlay.State.BindValueChanged(visibility =>
|
|
{
|
|
if (visibility.NewValue == Visibility.Hidden)
|
|
mainContent.Show();
|
|
}, true);
|
|
}
|
|
}
|
|
|
|
[Resolved]
|
|
private IAPIProvider api { get; set; }
|
|
|
|
protected override void LoadComplete()
|
|
{
|
|
base.LoadComplete();
|
|
|
|
roomId.BindValueChanged(id =>
|
|
{
|
|
if (id.NewValue == null)
|
|
settingsOverlay.Show();
|
|
else
|
|
{
|
|
settingsOverlay.Hide();
|
|
|
|
// Set the first playlist item.
|
|
// This is scheduled since updating the room and playlist may happen in an arbitrary order (via Room.CopyFrom()).
|
|
Schedule(() => SelectedItem.Value = playlist.FirstOrDefault());
|
|
}
|
|
}, true);
|
|
}
|
|
|
|
private void onStart() => StartPlay(() => new PlaylistsPlayer(SelectedItem.Value)
|
|
{
|
|
Exited = () => leaderboard.RefreshScores()
|
|
});
|
|
}
|
|
}
|