1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-07 06:38:27 +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 18:19:50 +09:00
2022-06-17 16:37:17 +09:00
#nullable disable
using System;
using System.Collections.Generic;
using System.Linq;
using osu.Framework.Allocation;
using osu.Framework.Bindables;
2017-09-08 18:32:07 -03: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 03:46:06 +03:00
using osu.Game.Overlays.BeatmapSet.Scores;
using osu.Game.Overlays.Comments;
using osu.Game.Rulesets.Mods;
2022-07-23 10:15:52 +03:00
using osu.Game.Screens.Select.Details;
2018-11-20 16:51:59 +09:00
using osuTK;
2021-01-18 10:48:12 +03:00
using osuTK.Graphics;
2019-07-09 17:56:08 +03:00
2017-09-08 18:32:07 -03:00
namespace osu.Game.Overlays
{
2021-01-21 07:30:47 +03:00
public partial class BeatmapSetOverlay : OnlineOverlay<BeatmapSetHeader>
2017-09-08 18:32:07 -03:00
{
2020-02-04 20:17:27 +01:00
public const float Y_PADDING = 25;
2017-09-08 18:32:07 -03: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 10:15:52 +03: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 10:48:12 +03:00
: base(OverlayColourScheme.Blue)
2017-09-08 18:32:07 -03:00
{
2019-02-28 19:58:21 +09:00
Info info;
CommentsSection comments;
2021-01-18 10:48:12 +03:00
Child = new FillFlowContainer
2017-09-08 18:32:07 -03:00
{
2021-01-18 10:48:12 +03:00
RelativeSizeAxes = Axes.X,
AutoSizeAxes = Axes.Y,
Direction = FillDirection.Vertical,
Spacing = new Vector2(0, 20),
Children = new Drawable[]
2017-09-12 21:00:20 -03:00
{
2021-01-21 07:30:47 +03:00
info = new Info(),
2021-01-18 10:48:12 +03:00
new ScoresContainer
{
2021-01-21 07:30:47 +03:00
Beatmap = { BindTarget = Header.HeaderContent.Picker.Beatmap }
2021-01-18 10:48:12 +03:00
},
comments = new CommentsSection()
}
2017-09-08 18:32:07 -03:00
};
2018-04-13 18:19:50 +09:00
Header.BeatmapSet.BindTo(beatmapSet);
info.BeatmapSet.BindTo(beatmapSet);
comments.BeatmapSet.BindTo(beatmapSet);
Header.HeaderContent.Picker.Beatmap.ValueChanged += b =>
{
2021-10-03 00:55:29 +09:00
info.BeatmapInfo = b.NewValue;
2021-01-18 10:48:12 +03:00
ScrollFlow.ScrollToStart();
2017-11-13 18:49:10 +03:00
};
2017-09-08 18:32:07 -03:00
}
2018-04-13 18:19:50 +09:00
[BackgroundDependencyLoader]
private void load()
{
apiUser = api.LocalUser.GetBoundCopy();
apiUser.BindValueChanged(_ => Schedule(() =>
{
if (api.IsLoggedIn)
performFetch();
}));
}
2021-01-21 07:30:47 +03:00
protected override BeatmapSetHeader CreateHeader() => new BeatmapSetHeader();
2021-01-18 10:48:12 +03:00
protected override Color4 BackgroundColour => ColourProvider.Background6;
2018-04-13 18:19:50 +09:00
2019-05-14 15:19:23 +09:00
protected override void PopOutComplete()
2017-09-08 18:32:07 -03:00
{
2019-05-14 15:19:23 +09:00
base.PopOutComplete();
beatmapSet.Value = null;
2017-09-08 18:32:07 -03:00
}
2018-04-13 18:19:50 +09: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 18:19:50 +09: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-08 18:32:07 -03:00
{
beatmapSet.Value = set;
Show();
2017-09-08 18:32:07 -03: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-08 18:32:07 -03:00
}
}