1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 04:07:25 +08:00
osu-lazer/osu.Game/Overlays/BeatmapListingOverlay.cs

393 lines
14 KiB
C#
Raw Normal View History

2020-02-19 22:40:54 +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.
2022-06-17 15:37:17 +08:00
#nullable disable
using System.Collections.Generic;
2020-02-19 22:40:54 +08:00
using System.Linq;
using System.Threading;
using System.Threading.Tasks;
2020-02-19 22:40:54 +08:00
using osu.Framework.Allocation;
using osu.Framework.Bindables;
using osu.Framework.Extensions.IEnumerableExtensions;
2021-06-22 13:53:21 +08:00
using osu.Framework.Localisation;
2020-02-19 22:40:54 +08:00
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using osu.Framework.Graphics.Shapes;
using osu.Framework.Graphics.Sprites;
using osu.Framework.Graphics.Textures;
using osu.Framework.Input.Events;
2020-02-19 22:40:54 +08:00
using osu.Game.Audio;
using osu.Game.Beatmaps.Drawables.Cards;
2021-06-19 20:54:24 +08:00
using osu.Game.Graphics;
2020-02-19 22:40:54 +08:00
using osu.Game.Graphics.Sprites;
2021-06-19 20:54:24 +08:00
using osu.Game.Graphics.Containers;
using osu.Game.Online.API;
using osu.Game.Online.API.Requests.Responses;
2020-02-19 22:40:54 +08:00
using osu.Game.Overlays.BeatmapListing;
using osu.Game.Resources.Localisation.Web;
2020-02-19 22:40:54 +08:00
using osuTK;
using osuTK.Graphics;
namespace osu.Game.Overlays
{
2021-01-18 16:13:38 +08:00
public class BeatmapListingOverlay : OnlineOverlay<BeatmapListingHeader>
2020-02-19 22:40:54 +08:00
{
[Resolved]
private PreviewTrackManager previewTrackManager { get; set; }
[Resolved]
private IAPIProvider api { get; set; }
private IBindable<APIUser> apiUser;
2020-02-20 10:08:42 +08:00
private Drawable currentContent;
private Container panelTarget;
private FillFlowContainer<BeatmapCard> foundContent;
private NotFoundDrawable notFoundContent;
2021-06-19 20:54:24 +08:00
private SupporterRequiredDrawable supporterRequiredContent;
2021-01-18 15:48:12 +08:00
private BeatmapListingFilterControl filterControl;
2020-02-19 22:40:54 +08:00
public BeatmapListingOverlay()
: base(OverlayColourScheme.Blue)
{
}
[BackgroundDependencyLoader]
private void load()
{
2021-01-18 15:48:12 +08:00
Child = new FillFlowContainer
2020-02-19 22:40:54 +08:00
{
2021-01-18 15:48:12 +08:00
RelativeSizeAxes = Axes.X,
AutoSizeAxes = Axes.Y,
Direction = FillDirection.Vertical,
Children = new Drawable[]
2020-02-19 22:40:54 +08:00
{
2021-01-18 15:48:12 +08:00
filterControl = new BeatmapListingFilterControl
{
TypingStarted = onTypingStarted,
SearchStarted = onSearchStarted,
SearchFinished = onSearchFinished,
},
new Container
2020-02-19 22:40:54 +08:00
{
AutoSizeAxes = Axes.Y,
RelativeSizeAxes = Axes.X,
Children = new Drawable[]
{
2021-01-18 15:48:12 +08:00
new Box
2020-02-19 22:40:54 +08:00
{
2021-01-18 15:48:12 +08:00
RelativeSizeAxes = Axes.Both,
Colour = ColourProvider.Background5,
2020-02-19 22:40:54 +08:00
},
2021-01-18 15:48:12 +08:00
panelTarget = new Container
2020-02-19 22:40:54 +08:00
{
AutoSizeAxes = Axes.Y,
RelativeSizeAxes = Axes.X,
Masking = true,
2021-01-18 15:48:12 +08:00
Padding = new MarginPadding { Horizontal = 20 },
2020-02-19 22:40:54 +08:00
Children = new Drawable[]
{
2021-01-18 15:48:12 +08:00
notFoundContent = new NotFoundDrawable(),
2021-06-19 20:54:24 +08:00
supporterRequiredContent = new SupporterRequiredDrawable(),
2020-02-19 22:40:54 +08:00
}
}
2021-01-18 15:48:12 +08:00
},
},
2020-02-19 22:40:54 +08:00
}
};
}
protected override void LoadComplete()
{
base.LoadComplete();
filterControl.CardSize.BindValueChanged(_ => onCardSizeChanged());
apiUser = api.LocalUser.GetBoundCopy();
apiUser.BindValueChanged(_ => Schedule(() =>
{
if (api.IsLoggedIn)
addContentToResultsArea(Drawable.Empty());
}));
}
2021-07-01 18:45:17 +08:00
public void ShowWithSearch(string query)
{
filterControl.Search(query);
Show();
}
2020-02-19 22:40:54 +08:00
2021-01-18 15:48:12 +08:00
protected override BeatmapListingHeader CreateHeader() => new BeatmapListingHeader();
2020-02-19 22:40:54 +08:00
protected override Color4 BackgroundColour => ColourProvider.Background6;
2020-02-19 22:40:54 +08:00
private void onTypingStarted()
{
// temporary until the textbox/header is updated to always stay on screen.
2021-01-18 15:48:12 +08:00
ScrollFlow.ScrollToStart();
2020-02-20 07:54:35 +08:00
}
protected override void OnFocus(FocusEvent e)
2020-02-20 07:54:35 +08:00
{
base.OnFocus(e);
2020-02-20 07:54:35 +08:00
filterControl.TakeFocus();
2020-02-19 22:40:54 +08:00
}
private CancellationTokenSource cancellationToken;
2020-02-19 22:40:54 +08:00
2021-12-24 18:00:09 +08:00
private Task panelLoadTask;
private void onSearchStarted()
2020-02-20 07:54:35 +08:00
{
cancellationToken?.Cancel();
2020-02-19 22:40:54 +08:00
previewTrackManager.StopAnyPlaying(this);
if (panelTarget.Any())
2021-01-18 15:48:12 +08:00
Loading.Show();
2020-02-19 22:40:54 +08:00
}
2021-06-22 13:53:21 +08:00
private void onSearchFinished(BeatmapListingFilterControl.SearchResult searchResult)
2020-02-19 22:40:54 +08:00
{
2021-12-24 18:00:09 +08:00
cancellationToken?.Cancel();
if (searchResult.Type == BeatmapListingFilterControl.SearchResultType.SupporterOnlyFilters)
2020-02-19 22:40:54 +08:00
{
supporterRequiredContent.UpdateText(searchResult.SupporterOnlyFiltersUsed);
addContentToResultsArea(supporterRequiredContent);
2020-02-19 22:40:54 +08:00
return;
}
var newCards = createCardsFor(searchResult.Results);
if (filterControl.CurrentPage == 0)
2020-02-19 22:40:54 +08:00
{
//No matches case
if (!newCards.Any())
2020-02-19 22:40:54 +08:00
{
addContentToResultsArea(notFoundContent);
return;
}
2020-02-19 22:40:54 +08:00
var content = createCardContainerFor(newCards);
panelLoadTask = LoadComponentAsync(foundContent = content, addContentToResultsArea, (cancellationToken = new CancellationTokenSource()).Token);
}
else
2020-02-19 22:40:54 +08:00
{
panelLoadTask = LoadComponentsAsync(newCards, loaded =>
{
lastFetchDisplayedTime = Time.Current;
foundContent.AddRange(loaded);
loaded.ForEach(p => p.FadeIn(200, Easing.OutQuint));
}, (cancellationToken = new CancellationTokenSource()).Token);
}
}
private BeatmapCard[] createCardsFor(IEnumerable<APIBeatmapSet> beatmapSets) => beatmapSets.Select(set => BeatmapCard.Create(set, filterControl.CardSize.Value).With(c =>
{
c.Anchor = Anchor.TopCentre;
c.Origin = Anchor.TopCentre;
})).ToArray();
private static ReverseChildIDFillFlowContainer<BeatmapCard> createCardContainerFor(IEnumerable<BeatmapCard> newCards)
{
// spawn new children with the contained so we only clear old content at the last moment.
// reverse ID flow is required for correct Z-ordering of the cards' expandable content (last card should be front-most).
var content = new ReverseChildIDFillFlowContainer<BeatmapCard>
{
RelativeSizeAxes = Axes.X,
AutoSizeAxes = Axes.Y,
Spacing = new Vector2(10),
Alpha = 0,
Margin = new MarginPadding
{
Top = 15,
// the + 20 adjustment is roughly eyeballed in order to fit all of the expanded content height after it's scaled
// as well as provide visual balance to the top margin.
Bottom = ExpandedContentScrollContainer.HEIGHT + 20
},
ChildrenEnumerable = newCards
};
return content;
}
private void addContentToResultsArea(Drawable content)
{
2021-01-18 15:48:12 +08:00
Loading.Hide();
lastFetchDisplayedTime = Time.Current;
if (content == currentContent)
return;
var lastContent = currentContent;
2020-02-20 12:48:34 +08:00
if (lastContent != null)
{
lastContent.FadeOut();
if (!isPlaceholderContent(lastContent))
lastContent.Expire();
2020-02-20 12:48:34 +08:00
}
if (!content.IsAlive)
panelTarget.Add(content);
content.FadeInFromZero();
currentContent = content;
}
/// <summary>
/// Whether <paramref name="drawable"/> is a static placeholder reused multiple times by this overlay.
/// </summary>
private bool isPlaceholderContent(Drawable drawable)
=> drawable == notFoundContent || drawable == supporterRequiredContent;
private void onCardSizeChanged()
{
if (foundContent?.IsAlive != true || !foundContent.Any())
return;
Loading.Show();
var newCards = createCardsFor(foundContent.Reverse().Select(card => card.BeatmapSet));
2021-12-24 18:00:09 +08:00
cancellationToken?.Cancel();
panelLoadTask = LoadComponentsAsync(newCards, cards =>
{
foundContent.Clear();
foundContent.AddRange(cards);
Loading.Hide();
}, (cancellationToken = new CancellationTokenSource()).Token);
}
protected override void Dispose(bool isDisposing)
{
cancellationToken?.Cancel();
base.Dispose(isDisposing);
}
public class NotFoundDrawable : CompositeDrawable
{
public NotFoundDrawable()
{
RelativeSizeAxes = Axes.X;
Height = 250;
2020-02-20 10:08:42 +08:00
Alpha = 0;
Margin = new MarginPadding { Top = 15 };
}
[BackgroundDependencyLoader]
private void load(TextureStore textures)
{
AddInternal(new FillFlowContainer
{
Anchor = Anchor.Centre,
Origin = Anchor.Centre,
RelativeSizeAxes = Axes.Y,
AutoSizeAxes = Axes.X,
Direction = FillDirection.Horizontal,
Spacing = new Vector2(10, 0),
Children = new Drawable[]
{
new Sprite
{
Anchor = Anchor.Centre,
Origin = Anchor.Centre,
RelativeSizeAxes = Axes.Both,
FillMode = FillMode.Fit,
Texture = textures.Get(@"Online/not-found")
},
new OsuSpriteText
{
Anchor = Anchor.Centre,
Origin = Anchor.Centre,
Text = BeatmapsStrings.ListingSearchNotFoundQuote,
}
}
});
}
2020-02-19 22:40:54 +08:00
}
// TODO: localisation requires Text/LinkFlowContainer support for localising strings with links inside
// (https://github.com/ppy/osu-framework/issues/4530)
2021-06-19 20:54:24 +08:00
public class SupporterRequiredDrawable : CompositeDrawable
{
2021-06-24 13:45:38 +08:00
private LinkFlowContainer supporterRequiredText;
2021-06-19 20:54:24 +08:00
public SupporterRequiredDrawable()
{
RelativeSizeAxes = Axes.X;
2021-06-20 17:17:07 +08:00
Height = 225;
2021-06-19 20:54:24 +08:00
Alpha = 0;
}
[BackgroundDependencyLoader]
private void load(TextureStore textures)
{
AddInternal(new FillFlowContainer
{
Anchor = Anchor.Centre,
Origin = Anchor.Centre,
RelativeSizeAxes = Axes.Y,
AutoSizeAxes = Axes.X,
Direction = FillDirection.Horizontal,
2021-06-24 13:45:38 +08:00
Children = new Drawable[]
2021-06-19 20:54:24 +08:00
{
new Sprite
{
Anchor = Anchor.Centre,
Origin = Anchor.Centre,
RelativeSizeAxes = Axes.Both,
FillMode = FillMode.Fit,
Texture = textures.Get(@"Online/supporter-required"),
},
2021-06-24 13:45:38 +08:00
supporterRequiredText = new LinkFlowContainer
{
Anchor = Anchor.Centre,
Origin = Anchor.Centre,
AutoSizeAxes = Axes.Both,
Margin = new MarginPadding { Bottom = 10 },
},
2021-06-19 20:54:24 +08:00
}
});
}
2021-06-22 13:53:21 +08:00
public void UpdateText(List<LocalisableString> filters)
2021-06-21 15:31:47 +08:00
{
2021-06-24 13:45:38 +08:00
supporterRequiredText.Clear();
2021-06-19 20:54:24 +08:00
2021-06-24 13:45:38 +08:00
supporterRequiredText.AddText(
BeatmapsStrings.ListingSearchSupporterFilterQuoteDefault(string.Join(" and ", filters), "").ToString(),
2021-06-22 13:53:21 +08:00
t =>
{
t.Font = OsuFont.GetFont(size: 16);
t.Colour = Colour4.White;
}
2021-06-24 13:45:38 +08:00
);
2021-06-22 13:53:21 +08:00
supporterRequiredText.AddLink(BeatmapsStrings.ListingSearchSupporterFilterQuoteLinkText.ToString(), @"/store/products/supporter-tag");
2021-06-19 20:54:24 +08:00
}
}
private const double time_between_fetches = 500;
private double lastFetchDisplayedTime;
protected override void Update()
{
base.Update();
const int pagination_scroll_distance = 500;
bool shouldShowMore = panelLoadTask?.IsCompleted != false
&& Time.Current - lastFetchDisplayedTime > time_between_fetches
2021-01-18 15:48:12 +08:00
&& (ScrollFlow.ScrollableExtent > 0 && ScrollFlow.IsScrolledToEnd(pagination_scroll_distance));
if (shouldShowMore)
filterControl.FetchNextPage();
}
2020-02-19 22:40:54 +08:00
}
}