2018-01-05 19:21:19 +08:00
|
|
|
|
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
|
2017-11-04 01:25:21 +08:00
|
|
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
|
|
|
|
|
|
using OpenTK;
|
|
|
|
|
using osu.Framework.Configuration;
|
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
|
using osu.Game.Online.API.Requests;
|
|
|
|
|
using osu.Game.Overlays.Direct;
|
|
|
|
|
using osu.Game.Users;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
|
|
|
|
|
namespace osu.Game.Overlays.Profile.Sections.Beatmaps
|
|
|
|
|
{
|
|
|
|
|
public class PaginatedBeatmapContainer : PaginatedContainer
|
|
|
|
|
{
|
|
|
|
|
private const float panel_padding = 10f;
|
|
|
|
|
|
|
|
|
|
private readonly BeatmapSetType type;
|
|
|
|
|
|
2017-11-14 17:53:09 +08:00
|
|
|
|
private DirectPanel currentlyPlaying;
|
2017-11-04 01:25:21 +08:00
|
|
|
|
|
2017-11-14 13:26:44 +08:00
|
|
|
|
public PaginatedBeatmapContainer(BeatmapSetType type, Bindable<User> user, string header, string missing = "None... yet.")
|
2017-11-04 01:25:21 +08:00
|
|
|
|
: base(user, header, missing)
|
|
|
|
|
{
|
|
|
|
|
this.type = type;
|
|
|
|
|
|
|
|
|
|
ItemsPerPage = 6;
|
|
|
|
|
|
|
|
|
|
ItemsContainer.Spacing = new Vector2(panel_padding);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override void ShowMore()
|
|
|
|
|
{
|
|
|
|
|
base.ShowMore();
|
|
|
|
|
|
|
|
|
|
var req = new GetUserBeatmapsRequest(User.Value.Id, type, VisiblePages++ * ItemsPerPage);
|
|
|
|
|
|
|
|
|
|
req.Success += sets =>
|
|
|
|
|
{
|
|
|
|
|
ShowMoreButton.FadeTo(sets.Count == ItemsPerPage ? 1 : 0);
|
|
|
|
|
ShowMoreLoading.Hide();
|
|
|
|
|
|
2017-11-19 01:27:30 +08:00
|
|
|
|
if (!sets.Any() && VisiblePages == 1)
|
2017-11-09 01:42:24 +08:00
|
|
|
|
{
|
|
|
|
|
MissingText.Show();
|
|
|
|
|
return;
|
|
|
|
|
}
|
2017-11-04 01:25:21 +08:00
|
|
|
|
|
|
|
|
|
foreach (var s in sets)
|
|
|
|
|
{
|
2017-11-07 03:18:37 +08:00
|
|
|
|
if (!s.OnlineBeatmapSetID.HasValue)
|
|
|
|
|
continue;
|
|
|
|
|
|
2017-11-14 18:03:50 +08:00
|
|
|
|
var panel = new DirectGridPanel(s.ToBeatmapSet(Rulesets));
|
2017-11-14 17:51:41 +08:00
|
|
|
|
ItemsContainer.Add(panel);
|
2017-11-07 03:05:04 +08:00
|
|
|
|
|
2017-11-14 17:53:09 +08:00
|
|
|
|
panel.PreviewPlaying.ValueChanged += isPlaying =>
|
2017-11-04 01:25:21 +08:00
|
|
|
|
{
|
2017-11-14 17:53:09 +08:00
|
|
|
|
if (!isPlaying) return;
|
2017-11-07 03:05:04 +08:00
|
|
|
|
|
2017-11-14 17:53:09 +08:00
|
|
|
|
if (currentlyPlaying != null && currentlyPlaying != panel)
|
|
|
|
|
currentlyPlaying.PreviewPlaying.Value = false;
|
|
|
|
|
|
|
|
|
|
currentlyPlaying = panel;
|
2017-11-04 01:25:21 +08:00
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
Api.Queue(req);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|