1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 01:27:29 +08:00
osu-lazer/osu.Game/Overlays/BeatmapSetOverlay.cs

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

176 lines
5.4 KiB
C#
Raw Normal View History

// 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
2022-06-17 15:37:17 +08:00
#nullable disable
using System;
using System.Collections.Generic;
using System.Linq;
using osu.Framework.Allocation;
using osu.Framework.Bindables;
2017-09-09 05:32:07 +08:00
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using osu.Game.Online.API;
using osu.Game.Online.API.Requests;
using osu.Game.Online.API.Requests.Responses;
2017-09-25 17:26:27 +08:00
using osu.Game.Overlays.BeatmapSet;
2017-11-11 08:46:06 +08:00
using osu.Game.Overlays.BeatmapSet.Scores;
using osu.Game.Overlays.Comments;
using osu.Game.Rulesets.Mods;
2022-07-23 15:15:52 +08:00
using osu.Game.Screens.Select.Details;
2018-11-20 15:51:59 +08:00
using osuTK;
2021-01-18 15:48:12 +08:00
using osuTK.Graphics;
2019-07-09 22:56:08 +08:00
2017-09-09 05:32:07 +08:00
namespace osu.Game.Overlays
{
2021-01-21 12:30:47 +08:00
public partial class BeatmapSetOverlay : OnlineOverlay<BeatmapSetHeader>
2017-09-09 05:32:07 +08:00
{
2020-02-05 03:17:27 +08:00
public const float Y_PADDING = 25;
2017-09-09 05:32:07 +08:00
public const float RIGHT_WIDTH = 275;
private readonly Bindable<APIBeatmapSet> beatmapSet = new Bindable<APIBeatmapSet>();
[Resolved]
private IAPIProvider api { get; set; }
private IBindable<APIUser> apiUser;
private (BeatmapSetLookupType type, int id)? lastLookup;
2022-07-23 15:15:52 +08:00
/// <remarks>
/// Isolates the beatmap set overlay from the game-wide selected mods bindable
/// to avoid affecting the beatmap details section (i.e. <see cref="AdvancedStats.StatisticRow"/>).
/// </remarks>
[Cached]
[Cached(typeof(IBindable<IReadOnlyList<Mod>>))]
protected readonly Bindable<IReadOnlyList<Mod>> SelectedMods = new Bindable<IReadOnlyList<Mod>>(Array.Empty<Mod>());
2017-09-25 17:26:27 +08:00
public BeatmapSetOverlay()
2021-01-18 15:48:12 +08:00
: base(OverlayColourScheme.Blue)
2017-09-09 05:32:07 +08:00
{
2019-02-28 18:58:21 +08:00
Info info;
CommentsSection comments;
2021-01-18 15:48:12 +08:00
Child = new FillFlowContainer
2017-09-09 05:32:07 +08:00
{
2021-01-18 15:48:12 +08:00
RelativeSizeAxes = Axes.X,
AutoSizeAxes = Axes.Y,
Direction = FillDirection.Vertical,
Spacing = new Vector2(0, 20),
Children = new Drawable[]
2017-09-13 08:00:20 +08:00
{
2021-01-21 12:30:47 +08:00
info = new Info(),
2021-01-18 15:48:12 +08:00
new ScoresContainer
{
2021-01-21 12:30:47 +08:00
Beatmap = { BindTarget = Header.HeaderContent.Picker.Beatmap }
2021-01-18 15:48:12 +08:00
},
comments = new CommentsSection()
}
2017-09-09 05:32:07 +08:00
};
2018-04-13 17:19:50 +08:00
Header.BeatmapSet.BindTo(beatmapSet);
info.BeatmapSet.BindTo(beatmapSet);
comments.BeatmapSet.BindTo(beatmapSet);
Header.HeaderContent.Picker.Beatmap.ValueChanged += b =>
{
2021-10-02 23:55:29 +08:00
info.BeatmapInfo = b.NewValue;
2021-01-18 15:48:12 +08:00
ScrollFlow.ScrollToStart();
2017-11-13 23:49:10 +08:00
};
2017-09-09 05:32:07 +08:00
}
2018-04-13 17:19:50 +08:00
[BackgroundDependencyLoader]
private void load()
{
apiUser = api.LocalUser.GetBoundCopy();
apiUser.BindValueChanged(_ => Schedule(() =>
{
if (api.IsLoggedIn)
performFetch();
}));
}
2021-01-21 12:30:47 +08:00
protected override BeatmapSetHeader CreateHeader() => new BeatmapSetHeader();
2021-01-18 15:48:12 +08:00
protected override Color4 BackgroundColour => ColourProvider.Background6;
2018-04-13 17:19:50 +08:00
2019-05-14 14:19:23 +08:00
protected override void PopOutComplete()
2017-09-09 05:32:07 +08:00
{
2019-05-14 14:19:23 +08:00
base.PopOutComplete();
beatmapSet.Value = null;
2017-09-09 05:32:07 +08:00
}
2018-04-13 17:19:50 +08:00
public void FetchAndShowBeatmap(int beatmapId)
{
lastLookup = (BeatmapSetLookupType.BeatmapId, beatmapId);
beatmapSet.Value = null;
performFetch();
Show();
}
public void FetchAndShowBeatmapSet(int beatmapSetId)
{
lastLookup = (BeatmapSetLookupType.SetId, beatmapSetId);
beatmapSet.Value = null;
performFetch();
Show();
}
2018-04-13 17:19:50 +08:00
/// <summary>
/// Show an already fully-populated beatmap set.
/// </summary>
/// <param name="set">The set to show.</param>
public void ShowBeatmapSet(APIBeatmapSet set)
2017-09-09 05:32:07 +08:00
{
beatmapSet.Value = set;
Show();
2017-09-09 05:32:07 +08:00
}
private void performFetch()
{
if (!api.IsLoggedIn)
return;
if (lastLookup == null)
return;
var req = new GetBeatmapSetRequest(lastLookup.Value.id, lastLookup.Value.type);
req.Success += res =>
{
beatmapSet.Value = res;
if (lastLookup.Value.type == BeatmapSetLookupType.BeatmapId)
Header.HeaderContent.Picker.Beatmap.Value = Header.BeatmapSet.Value.Beatmaps.First(b => b.OnlineID == lastLookup.Value.id);
};
API.Queue(req);
}
private partial class CommentsSection : BeatmapSetLayoutSection
{
public readonly Bindable<APIBeatmapSet> BeatmapSet = new Bindable<APIBeatmapSet>();
public CommentsSection()
{
CommentsContainer comments;
Add(comments = new CommentsContainer());
BeatmapSet.BindValueChanged(beatmapSet =>
{
if (beatmapSet.NewValue?.OnlineID > 0)
{
Show();
comments.ShowComments(CommentableType.Beatmapset, beatmapSet.NewValue.OnlineID);
}
else
{
Hide();
}
}, true);
}
}
2017-09-09 05:32:07 +08:00
}
}