1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-13 02:27:20 +08:00
osu-lazer/osu.Game/Screens/OnlinePlay/Playlists/PlaylistsLoungeSubScreen.cs

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

111 lines
3.3 KiB
C#
Raw Normal View History

2020-12-20 23:36:56 +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.
using System;
using System.Collections.Generic;
2022-05-27 20:18:46 +09:00
using System.ComponentModel;
using System.Diagnostics;
using System.Linq;
using osu.Framework.Allocation;
using osu.Framework.Graphics;
using osu.Framework.Graphics.UserInterface;
using osu.Game.Graphics.UserInterface;
using osu.Game.Online.API;
using osu.Game.Online.API.Requests;
2020-12-25 13:38:11 +09:00
using osu.Game.Online.Rooms;
using osu.Game.Screens.OnlinePlay.Lounge;
using osu.Game.Screens.OnlinePlay.Lounge.Components;
using osu.Game.Screens.OnlinePlay.Match;
2020-12-20 23:36:56 +09:00
namespace osu.Game.Screens.OnlinePlay.Playlists
2020-12-20 23:36:56 +09:00
{
2020-12-25 13:11:21 +09:00
public partial class PlaylistsLoungeSubScreen : LoungeSubScreen
2020-12-20 23:36:56 +09:00
{
[Resolved]
2024-11-13 18:36:47 +09:00
private IAPIProvider api { get; set; } = null!;
2024-11-13 18:36:47 +09:00
private Dropdown<PlaylistsCategory> categoryDropdown = null!;
protected override IEnumerable<Drawable> CreateFilterControls()
{
categoryDropdown = new SlimEnumDropdown<PlaylistsCategory>
{
RelativeSizeAxes = Axes.None,
Width = 160,
};
categoryDropdown.Current.BindValueChanged(_ => UpdateFilter());
return base.CreateFilterControls().Append(categoryDropdown);
}
protected override FilterCriteria CreateFilterCriteria()
{
var criteria = base.CreateFilterCriteria();
switch (categoryDropdown.Current.Value)
{
case PlaylistsCategory.Normal:
2021-08-13 13:07:02 +09:00
criteria.Category = @"normal";
break;
case PlaylistsCategory.Spotlight:
2021-08-13 13:07:02 +09:00
criteria.Category = @"spotlight";
break;
2022-05-27 20:18:46 +09:00
case PlaylistsCategory.FeaturedArtist:
criteria.Category = @"featured_artist";
break;
}
return criteria;
}
2020-12-21 00:21:30 +09:00
2025-01-25 19:27:21 +09:00
protected override void JoinInternal(Room room, string? password, Action<Room> onSuccess, Action<string> onFailure)
{
var joinRoomRequest = new JoinRoomRequest(room, password);
joinRoomRequest.Success += r => onSuccess(r);
joinRoomRequest.Failure += exception =>
{
if (exception is not OperationCanceledException)
onFailure(exception.Message);
};
api.Queue(joinRoomRequest);
}
public override void Close(Room room)
{
Debug.Assert(room.RoomID != null);
var request = new ClosePlaylistRequest(room.RoomID.Value);
request.Success += RefreshRooms;
api.Queue(request);
}
protected override OsuButton CreateNewRoomButton() => new CreatePlaylistsRoomButton();
protected override Room CreateNewRoom()
{
return new Room
{
2024-11-13 16:55:18 +09:00
Name = $"{api.LocalUser}'s awesome playlist",
2024-11-13 18:36:47 +09:00
Type = MatchType.Playlists
};
}
2020-12-25 13:11:21 +09:00
protected override RoomSubScreen CreateRoomSubScreen(Room room) => new PlaylistsRoomSubScreen(room);
private enum PlaylistsCategory
{
Any,
Normal,
2022-05-27 20:18:46 +09:00
Spotlight,
[Description("Featured Artist")]
FeaturedArtist,
}
2020-12-20 23:36:56 +09:00
}
}