1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-14 19:37:51 +08:00
osu-lazer/osu.Game/Screens/Select/BeatmapDetailArea.cs

131 lines
3.9 KiB
C#
Raw Normal View History

2017-03-23 11:22:31 +08:00
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
2017-03-23 12:19:29 +08:00
using osu.Framework.Allocation;
2017-03-23 11:22:31 +08:00
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using osu.Framework.Graphics.Primitives;
2017-03-23 12:19:29 +08:00
using osu.Game.Beatmaps;
using osu.Game.Online.API;
2017-03-23 12:19:29 +08:00
using osu.Game.Online.API.Requests;
using osu.Game.Screens.Select.Details;
2017-03-23 12:19:29 +08:00
using osu.Game.Screens.Select.Leaderboards;
2017-03-23 11:22:31 +08:00
namespace osu.Game.Screens.Select
{
public class BeatmapDetailArea : Container
{
2017-03-23 13:47:27 +08:00
private readonly Container content;
2017-03-23 11:29:28 +08:00
protected override Container<Drawable> Content => content;
public readonly BeatmapDetails Details;
2017-03-23 12:19:29 +08:00
public readonly Leaderboard Leaderboard;
2017-03-25 06:02:24 +08:00
private BeatmapDetailTab currentTab;
2017-03-23 12:19:29 +08:00
private APIAccess api;
2017-03-23 12:19:29 +08:00
private WorkingBeatmap beatmap;
public WorkingBeatmap Beatmap
2017-03-23 12:19:29 +08:00
{
get
{
return beatmap;
}
set
{
beatmap = value;
2017-03-25 06:02:24 +08:00
if (IsLoaded)
if(currentTab == BeatmapDetailTab.Details)
Schedule(updateDetails);
else
Schedule(updateScores);
}
2017-03-23 12:19:29 +08:00
}
2017-03-23 11:22:31 +08:00
public BeatmapDetailArea()
{
2017-03-23 11:29:28 +08:00
AddInternal(new Drawable[]
2017-03-23 11:22:31 +08:00
{
new BeatmapDetailAreaTabControl
{
RelativeSizeAxes = Axes.X,
2017-03-23 12:19:29 +08:00
OnFilter = (tab, mods) =>
{
switch (tab)
{
case BeatmapDetailTab.Details:
Details.Show();
Leaderboard.Hide();
2017-03-25 06:02:24 +08:00
updateDetails();
2017-03-23 12:19:29 +08:00
break;
default:
Details.Hide();
Leaderboard.Show();
2017-03-25 06:02:24 +08:00
updateScores();
2017-03-23 12:19:29 +08:00
break;
}
2017-03-25 06:02:24 +08:00
currentTab = tab;
2017-03-23 12:19:29 +08:00
},
2017-03-23 11:22:31 +08:00
},
2017-03-23 11:29:28 +08:00
content = new Container
2017-03-23 11:22:31 +08:00
{
2017-03-23 11:29:28 +08:00
RelativeSizeAxes = Axes.Both,
2017-03-23 11:22:31 +08:00
Padding = new MarginPadding { Top = BeatmapDetailAreaTabControl.HEIGHT },
},
2017-03-23 11:29:28 +08:00
});
2017-03-23 12:19:29 +08:00
Add(new Drawable[]
{
Details = new BeatmapDetails
2017-03-23 12:19:29 +08:00
{
RelativeSizeAxes = Axes.Both,
2017-03-26 06:33:03 +08:00
Padding = new MarginPadding(5),
2017-03-23 12:19:29 +08:00
},
Leaderboard = new Leaderboard
{
RelativeSizeAxes = Axes.Both,
}
});
}
protected override void LoadComplete()
{
base.LoadComplete();
updateScores();
}
[BackgroundDependencyLoader(permitNulls: true)]
private void load(APIAccess api)
{
this.api = api;
}
2017-03-23 12:19:29 +08:00
private GetScoresRequest getScoresRequest;
private void updateScores()
2017-03-23 12:19:29 +08:00
{
if (!IsLoaded) return;
2017-03-23 12:19:29 +08:00
Leaderboard.Scores = null;
getScoresRequest?.Cancel();
if (api == null || beatmap?.BeatmapInfo == null || !Leaderboard.IsPresent) return;
2017-03-23 12:19:29 +08:00
getScoresRequest = new GetScoresRequest(beatmap.BeatmapInfo);
getScoresRequest.Success += r => Leaderboard.Scores = r.Scores;
api.Queue(getScoresRequest);
2017-03-23 11:22:31 +08:00
}
2017-03-25 06:02:24 +08:00
private void updateDetails()
{
if (!IsLoaded) return;
if (api == null || beatmap?.BeatmapInfo == null) return;
2017-03-26 06:33:03 +08:00
Details.Beatmap = beatmap.Beatmap.BeatmapInfo;
2017-03-25 06:02:24 +08:00
}
2017-03-23 11:22:31 +08:00
}
}