2020-02-11 06:44:56 +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.
|
|
|
|
|
|
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
|
using osu.Framework.Bindables;
|
|
|
|
|
using osu.Game.Rulesets;
|
|
|
|
|
using osu.Framework.Graphics.Containers;
|
|
|
|
|
using osu.Game.Online.API.Requests.Responses;
|
|
|
|
|
using osuTK;
|
|
|
|
|
using osu.Framework.Allocation;
|
|
|
|
|
using osu.Game.Online.API;
|
|
|
|
|
using osu.Game.Online.API.Requests;
|
|
|
|
|
using osu.Game.Overlays.Rankings.Tables;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using osu.Game.Overlays.Direct;
|
|
|
|
|
using System.Threading;
|
|
|
|
|
using osu.Game.Graphics.Containers;
|
|
|
|
|
using osu.Game.Graphics.UserInterface;
|
|
|
|
|
|
|
|
|
|
namespace osu.Game.Overlays.Rankings
|
|
|
|
|
{
|
|
|
|
|
public class SpotlightsLayout : CompositeDrawable
|
|
|
|
|
{
|
|
|
|
|
public readonly Bindable<RulesetInfo> Ruleset = new Bindable<RulesetInfo>();
|
|
|
|
|
|
|
|
|
|
private readonly Bindable<APISpotlight> selectedSpotlight = new Bindable<APISpotlight>();
|
|
|
|
|
|
|
|
|
|
[Resolved]
|
|
|
|
|
private IAPIProvider api { get; set; }
|
|
|
|
|
|
|
|
|
|
[Resolved]
|
|
|
|
|
private RulesetStore rulesets { get; set; }
|
|
|
|
|
|
|
|
|
|
private CancellationTokenSource cancellationToken;
|
|
|
|
|
private GetSpotlightRankingsRequest getRankingsRequest;
|
|
|
|
|
private GetSpotlightsRequest spotlightsRequest;
|
|
|
|
|
|
2020-02-11 07:35:23 +08:00
|
|
|
|
private SpotlightSelector selector;
|
|
|
|
|
private Container content;
|
2020-02-21 14:31:40 +08:00
|
|
|
|
private LoadingLayer loading;
|
2020-02-11 06:44:56 +08:00
|
|
|
|
|
2020-02-11 07:35:23 +08:00
|
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
|
private void load()
|
2020-02-11 06:44:56 +08:00
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.X;
|
|
|
|
|
AutoSizeAxes = Axes.Y;
|
|
|
|
|
InternalChild = new ReverseChildIDFillFlowContainer<Drawable>
|
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.X,
|
|
|
|
|
AutoSizeAxes = Axes.Y,
|
|
|
|
|
Direction = FillDirection.Vertical,
|
|
|
|
|
Children = new Drawable[]
|
|
|
|
|
{
|
|
|
|
|
selector = new SpotlightSelector
|
|
|
|
|
{
|
|
|
|
|
Current = selectedSpotlight,
|
|
|
|
|
},
|
|
|
|
|
new Container
|
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.X,
|
|
|
|
|
AutoSizeAxes = Axes.Y,
|
|
|
|
|
Children = new Drawable[]
|
|
|
|
|
{
|
|
|
|
|
content = new Container
|
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.X,
|
|
|
|
|
AutoSizeAxes = Axes.Y,
|
2020-02-11 07:35:23 +08:00
|
|
|
|
Margin = new MarginPadding { Vertical = 10 }
|
2020-02-11 06:44:56 +08:00
|
|
|
|
},
|
2020-02-21 14:31:40 +08:00
|
|
|
|
loading = new LoadingLayer(content)
|
2020-02-11 06:44:56 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override void LoadComplete()
|
|
|
|
|
{
|
|
|
|
|
base.LoadComplete();
|
|
|
|
|
|
2020-02-11 07:35:23 +08:00
|
|
|
|
selector.Show();
|
|
|
|
|
|
2020-02-11 06:44:56 +08:00
|
|
|
|
selectedSpotlight.BindValueChanged(onSpotlightChanged);
|
|
|
|
|
Ruleset.BindValueChanged(onRulesetChanged);
|
|
|
|
|
|
|
|
|
|
getSpotlights();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void getSpotlights()
|
|
|
|
|
{
|
|
|
|
|
spotlightsRequest = new GetSpotlightsRequest();
|
2020-02-17 15:07:32 +08:00
|
|
|
|
spotlightsRequest.Success += response => Schedule(() => selector.Spotlights = response.Spotlights);
|
2020-02-11 06:44:56 +08:00
|
|
|
|
api.Queue(spotlightsRequest);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void onRulesetChanged(ValueChangedEvent<RulesetInfo> ruleset)
|
|
|
|
|
{
|
|
|
|
|
if (!selector.Spotlights.Any())
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
selectedSpotlight.TriggerChange();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void onSpotlightChanged(ValueChangedEvent<APISpotlight> spotlight)
|
|
|
|
|
{
|
|
|
|
|
loading.Show();
|
|
|
|
|
|
|
|
|
|
cancellationToken?.Cancel();
|
|
|
|
|
getRankingsRequest?.Cancel();
|
|
|
|
|
|
|
|
|
|
getRankingsRequest = new GetSpotlightRankingsRequest(Ruleset.Value, spotlight.NewValue.Id);
|
|
|
|
|
getRankingsRequest.Success += onSuccess;
|
|
|
|
|
api.Queue(getRankingsRequest);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void onSuccess(GetSpotlightRankingsResponse response)
|
|
|
|
|
{
|
|
|
|
|
LoadComponentAsync(createContent(response), loaded =>
|
|
|
|
|
{
|
|
|
|
|
selector.ShowInfo(response);
|
|
|
|
|
|
|
|
|
|
content.Clear();
|
|
|
|
|
content.Add(loaded);
|
|
|
|
|
|
|
|
|
|
loading.Hide();
|
|
|
|
|
}, (cancellationToken = new CancellationTokenSource()).Token);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private Drawable createContent(GetSpotlightRankingsResponse response) => new FillFlowContainer
|
|
|
|
|
{
|
|
|
|
|
AutoSizeAxes = Axes.Y,
|
|
|
|
|
RelativeSizeAxes = Axes.X,
|
|
|
|
|
Direction = FillDirection.Vertical,
|
|
|
|
|
Spacing = new Vector2(0, 20),
|
|
|
|
|
Children = new Drawable[]
|
|
|
|
|
{
|
|
|
|
|
new ScoresTable(1, response.Users),
|
|
|
|
|
new FillFlowContainer
|
|
|
|
|
{
|
|
|
|
|
AutoSizeAxes = Axes.Y,
|
|
|
|
|
RelativeSizeAxes = Axes.X,
|
|
|
|
|
Spacing = new Vector2(10),
|
|
|
|
|
Children = response.BeatmapSets.Select(b => new DirectGridPanel(b.ToBeatmapSet(rulesets))
|
|
|
|
|
{
|
|
|
|
|
Anchor = Anchor.TopCentre,
|
|
|
|
|
Origin = Anchor.TopCentre,
|
|
|
|
|
}).ToList()
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
protected override void Dispose(bool isDisposing)
|
|
|
|
|
{
|
|
|
|
|
spotlightsRequest?.Cancel();
|
|
|
|
|
getRankingsRequest?.Cancel();
|
|
|
|
|
cancellationToken?.Cancel();
|
2020-02-17 15:07:32 +08:00
|
|
|
|
|
|
|
|
|
base.Dispose(isDisposing);
|
2020-02-11 06:44:56 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|