2019-01-24 16:43:03 +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.
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2019-08-27 20:47:37 +08:00
|
|
|
|
using System.Collections.Generic;
|
2020-09-08 04:08:50 +08:00
|
|
|
|
using osu.Framework.Allocation;
|
2019-02-21 18:04:31 +08:00
|
|
|
|
using osu.Framework.Bindables;
|
2017-11-04 01:25:21 +08:00
|
|
|
|
using osu.Framework.Graphics;
|
2021-07-17 21:45:17 +08:00
|
|
|
|
using osu.Framework.Localisation;
|
2021-10-25 01:20:57 +08:00
|
|
|
|
using osu.Game.Beatmaps.Drawables.Cards;
|
2019-08-27 20:47:37 +08:00
|
|
|
|
using osu.Game.Online.API;
|
2017-11-04 01:25:21 +08:00
|
|
|
|
using osu.Game.Online.API.Requests;
|
2019-08-27 20:47:37 +08:00
|
|
|
|
using osu.Game.Online.API.Requests.Responses;
|
2018-11-20 15:51:59 +08:00
|
|
|
|
using osuTK;
|
2021-11-04 17:02:44 +08:00
|
|
|
|
using APIUser = osu.Game.Online.API.Requests.Responses.APIUser;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2017-11-04 01:25:21 +08:00
|
|
|
|
namespace osu.Game.Overlays.Profile.Sections.Beatmaps
|
|
|
|
|
{
|
2020-11-21 08:18:24 +08:00
|
|
|
|
public class PaginatedBeatmapContainer : PaginatedProfileSubsection<APIBeatmapSet>
|
2017-11-04 01:25:21 +08:00
|
|
|
|
{
|
|
|
|
|
private const float panel_padding = 10f;
|
|
|
|
|
private readonly BeatmapSetType type;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2022-04-19 04:04:21 +08:00
|
|
|
|
protected override int InitialItemsCount => type == BeatmapSetType.Graveyard ? 2 : 6;
|
|
|
|
|
|
2021-11-04 17:02:44 +08:00
|
|
|
|
public PaginatedBeatmapContainer(BeatmapSetType type, Bindable<APIUser> user, LocalisableString headerText)
|
2021-07-17 21:53:24 +08:00
|
|
|
|
: base(user, headerText)
|
2017-11-04 01:25:21 +08:00
|
|
|
|
{
|
|
|
|
|
this.type = type;
|
2020-09-08 04:08:50 +08:00
|
|
|
|
}
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2020-09-08 04:08:50 +08:00
|
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
|
private void load()
|
|
|
|
|
{
|
2017-11-04 01:25:21 +08:00
|
|
|
|
ItemsContainer.Spacing = new Vector2(panel_padding);
|
|
|
|
|
}
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2021-11-04 17:02:44 +08:00
|
|
|
|
protected override int GetCount(APIUser user)
|
2020-09-08 04:08:50 +08:00
|
|
|
|
{
|
|
|
|
|
switch (type)
|
|
|
|
|
{
|
|
|
|
|
case BeatmapSetType.Favourite:
|
|
|
|
|
return user.FavouriteBeatmapsetCount;
|
|
|
|
|
|
|
|
|
|
case BeatmapSetType.Graveyard:
|
|
|
|
|
return user.GraveyardBeatmapsetCount;
|
|
|
|
|
|
|
|
|
|
case BeatmapSetType.Loved:
|
|
|
|
|
return user.LovedBeatmapsetCount;
|
|
|
|
|
|
2021-07-21 03:48:38 +08:00
|
|
|
|
case BeatmapSetType.Ranked:
|
|
|
|
|
return user.RankedBeatmapsetCount;
|
2020-09-08 04:08:50 +08:00
|
|
|
|
|
2021-07-21 03:48:38 +08:00
|
|
|
|
case BeatmapSetType.Pending:
|
|
|
|
|
return user.PendingBeatmapsetCount;
|
2020-09-08 04:08:50 +08:00
|
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2022-04-19 04:04:21 +08:00
|
|
|
|
protected override APIRequest<List<APIBeatmapSet>> CreateRequest(int itemsPerPage, int initialItems) =>
|
|
|
|
|
new GetUserBeatmapsRequest(User.Value.Id, type, VisiblePages++, itemsPerPage, initialItems);
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2021-10-21 17:53:49 +08:00
|
|
|
|
protected override Drawable CreateDrawableItem(APIBeatmapSet model) => model.OnlineID > 0
|
2021-12-21 15:25:52 +08:00
|
|
|
|
? new BeatmapCardNormal(model)
|
2019-08-28 12:27:44 +08:00
|
|
|
|
{
|
|
|
|
|
Anchor = Anchor.TopCentre,
|
|
|
|
|
Origin = Anchor.TopCentre,
|
2021-10-21 17:53:49 +08:00
|
|
|
|
}
|
|
|
|
|
: null;
|
2017-11-04 01:25:21 +08:00
|
|
|
|
}
|
|
|
|
|
}
|