1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 14:07:25 +08:00
osu-lazer/osu.Game/Screens/Select/BeatmapDetails.cs

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

279 lines
10 KiB
C#
Raw Normal View History

2019-02-26 15:10:06 +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.
2018-04-13 17:19:50 +08:00
using System.Linq;
2017-03-26 06:33:03 +08:00
using osu.Framework.Allocation;
2017-03-25 06:02:24 +08:00
using osu.Framework.Graphics;
2017-03-26 06:33:03 +08:00
using osu.Framework.Graphics.Containers;
using osu.Framework.Graphics.Shapes;
2017-07-26 12:22:46 +08:00
using osu.Game.Beatmaps;
using osu.Game.Graphics;
using osu.Game.Graphics.Containers;
using osu.Game.Graphics.Sprites;
using osu.Game.Graphics.UserInterface;
using osu.Game.Online;
using osu.Game.Online.API;
2019-06-13 15:57:19 +08:00
using osu.Game.Online.API.Requests;
2021-07-02 17:09:16 +08:00
using osu.Game.Overlays.BeatmapSet;
using osu.Game.Resources.Localisation.Web;
using osu.Game.Screens.Select.Details;
using osuTK;
2018-04-13 17:19:50 +08:00
namespace osu.Game.Screens.Select
2017-03-25 06:02:24 +08:00
{
public partial class BeatmapDetails : Container
2017-03-25 06:02:24 +08:00
{
private const float spacing = 10;
private const float transition_duration = 250;
2018-04-13 17:19:50 +08:00
private readonly UserRatings ratingsDisplay;
private readonly MetadataSection description, source, tags;
private readonly Container failRetryContainer;
private readonly FailRetryGraph failRetryGraph;
private readonly LoadingLayer loading;
2018-04-13 17:19:50 +08:00
2020-02-14 21:14:00 +08:00
[Resolved]
2022-07-15 11:52:06 +08:00
private IAPIProvider api { get; set; } = null!;
2018-04-13 17:19:50 +08:00
2022-07-15 11:52:06 +08:00
[Resolved]
private SongSelect? songSelect { get; set; }
2022-07-15 11:52:06 +08:00
private IBeatmapInfo? beatmapInfo;
2022-07-15 11:52:06 +08:00
private APIFailTimes? failTimes;
2022-07-15 11:52:06 +08:00
private int[]? ratings;
2022-07-15 11:52:06 +08:00
public IBeatmapInfo? BeatmapInfo
2017-03-25 06:02:24 +08:00
{
2021-10-02 23:55:29 +08:00
get => beatmapInfo;
2017-03-25 06:02:24 +08:00
set
{
2021-10-02 23:55:29 +08:00
if (value == beatmapInfo) return;
2021-10-02 23:55:29 +08:00
beatmapInfo = value;
2018-04-13 17:19:50 +08:00
var onlineInfo = beatmapInfo as IBeatmapOnlineInfo;
2022-07-15 11:52:06 +08:00
var onlineSetInfo = beatmapInfo?.BeatmapSet as IBeatmapSetOnlineInfo;
failTimes = onlineInfo?.FailTimes;
ratings = onlineSetInfo?.Ratings;
Scheduler.AddOnce(updateStatistics);
2017-04-24 18:17:11 +08:00
}
2017-03-29 02:18:56 +08:00
}
2018-04-13 17:19:50 +08:00
public BeatmapDetails()
2017-03-25 06:02:24 +08:00
{
2023-12-19 18:18:36 +08:00
CornerRadius = 10;
Masking = true;
2017-03-26 06:33:03 +08:00
Children = new Drawable[]
2017-03-25 06:02:24 +08:00
{
2017-03-26 06:33:03 +08:00
new Box
{
RelativeSizeAxes = Axes.Both,
2023-12-20 11:42:06 +08:00
Colour = Colour4.Black.Opacity(0.3f),
2017-03-26 06:33:03 +08:00
},
new GridContainer
2017-03-25 06:02:24 +08:00
{
RelativeSizeAxes = Axes.Both,
Padding = new MarginPadding { Horizontal = spacing },
RowDimensions = new[]
2017-03-26 06:33:03 +08:00
{
new Dimension(GridSizeMode.AutoSize),
new Dimension()
},
Content = new[]
{
new Drawable[]
2017-03-26 06:33:03 +08:00
{
new FillFlowContainer
2017-03-26 06:33:03 +08:00
{
RelativeSizeAxes = Axes.X,
AutoSizeAxes = Axes.Y,
Direction = FillDirection.Horizontal,
Children = new Drawable[]
2017-03-26 06:33:03 +08:00
{
new FillFlowContainer
{
RelativeSizeAxes = Axes.X,
AutoSizeAxes = Axes.Y,
Width = 0.5f,
Spacing = new Vector2(spacing),
Padding = new MarginPadding { Right = spacing / 2 },
Children = new[]
{
new DetailBox().WithChild(new OnlineViewContainer(string.Empty)
{
RelativeSizeAxes = Axes.X,
Height = 134,
Padding = new MarginPadding { Horizontal = spacing, Top = spacing },
Child = ratingsDisplay = new UserRatings
{
RelativeSizeAxes = Axes.Both,
},
}),
},
},
new OsuScrollContainer
2017-04-12 16:52:24 +08:00
{
RelativeSizeAxes = Axes.X,
Height = 250,
Width = 0.5f,
ScrollbarVisible = false,
Padding = new MarginPadding { Left = spacing / 2 },
Child = new FillFlowContainer
{
RelativeSizeAxes = Axes.X,
AutoSizeAxes = Axes.Y,
LayoutDuration = transition_duration,
LayoutEasing = Easing.OutQuad,
Children = new[]
{
description = new MetadataSectionDescription(query => songSelect?.Search(query)),
source = new MetadataSectionSource(query => songSelect?.Search(query)),
tags = new MetadataSectionTags(query => songSelect?.Search(query)),
},
2017-03-29 02:18:56 +08:00
},
},
},
},
2017-03-29 02:18:56 +08:00
},
new Drawable[]
{
failRetryContainer = new OnlineViewContainer("Sign in to view more details")
{
RelativeSizeAxes = Axes.Both,
Children = new Drawable[]
{
new OsuSpriteText
{
Text = BeatmapsetsStrings.ShowInfoPointsOfFailure,
Font = OsuFont.GetFont(weight: FontWeight.Bold, size: 14),
},
failRetryGraph = new FailRetryGraph
{
RelativeSizeAxes = Axes.Both,
Padding = new MarginPadding { Top = 14 + spacing / 2 },
},
},
},
}
}
},
loading = new LoadingLayer(true)
2017-03-25 06:02:24 +08:00
};
}
2018-04-13 17:19:50 +08:00
private void updateStatistics()
{
2022-12-24 03:11:15 +08:00
description.Metadata = BeatmapInfo?.DifficultyName ?? string.Empty;
source.Metadata = BeatmapInfo?.Metadata.Source ?? string.Empty;
tags.Metadata = BeatmapInfo?.Metadata.Tags ?? string.Empty;
// failTimes may have been previously fetched
if (ratings != null && failTimes != null)
{
2019-06-15 13:45:51 +08:00
updateMetrics();
return;
}
2018-04-13 17:19:50 +08:00
// for now, let's early abort if an OnlineID is not present (should have been populated at import time).
if (BeatmapInfo == null || BeatmapInfo.OnlineID <= 0 || api.State.Value == APIState.Offline)
{
2019-06-15 13:45:51 +08:00
updateMetrics();
return;
}
2021-10-02 23:55:29 +08:00
var requestedBeatmap = BeatmapInfo;
2019-06-15 13:45:51 +08:00
var lookup = new GetBeatmapRequest(requestedBeatmap);
2019-06-15 13:45:51 +08:00
lookup.Success += res =>
{
Schedule(() =>
{
2021-10-02 23:55:29 +08:00
if (beatmapInfo != requestedBeatmap)
2020-05-05 09:31:11 +08:00
// the beatmap has been changed since we started the lookup.
return;
2018-04-13 17:19:50 +08:00
ratings = res.BeatmapSet?.Ratings;
failTimes = res.FailTimes;
2019-06-13 15:57:19 +08:00
2019-06-15 13:45:51 +08:00
updateMetrics();
});
};
2022-06-24 20:25:23 +08:00
lookup.Failure += _ =>
2019-06-15 13:45:51 +08:00
{
Schedule(() =>
{
2021-10-02 23:55:29 +08:00
if (beatmapInfo != requestedBeatmap)
2020-05-05 09:31:11 +08:00
// the beatmap has been changed since we started the lookup.
2019-06-15 13:45:51 +08:00
return;
2019-06-15 13:45:51 +08:00
updateMetrics();
});
};
2018-04-13 17:19:50 +08:00
2019-06-15 13:45:51 +08:00
api.Queue(lookup);
loading.Show();
2017-03-26 06:33:03 +08:00
}
2018-04-13 17:19:50 +08:00
2019-06-15 13:45:51 +08:00
private void updateMetrics()
2017-03-26 06:33:03 +08:00
{
bool hasMetrics = (failTimes?.Retries?.Any() ?? false) || (failTimes?.Fails?.Any() ?? false);
2018-04-13 17:19:50 +08:00
if (ratings?.Any() ?? false)
2017-03-26 06:33:03 +08:00
{
ratingsDisplay.Ratings = ratings;
ratingsDisplay.FadeIn(transition_duration);
}
else
{
// loading or just has no data server-side.
ratingsDisplay.Ratings = new int[10];
ratingsDisplay.FadeTo(0.25f, transition_duration);
}
2018-04-13 17:19:50 +08:00
if (hasMetrics)
2017-03-26 06:33:03 +08:00
{
failRetryGraph.FailTimes = failTimes;
failRetryContainer.FadeIn(transition_duration);
}
else
{
failRetryGraph.FailTimes = new APIFailTimes
2017-03-26 06:33:03 +08:00
{
Fails = new int[100],
Retries = new int[100],
};
2017-03-26 06:33:03 +08:00
}
2018-04-13 17:19:50 +08:00
loading.Hide();
}
2018-04-13 17:19:50 +08:00
private partial class DetailBox : Container
{
private readonly Container content;
protected override Container<Drawable> Content => content;
2018-04-13 17:19:50 +08:00
public DetailBox()
2017-03-26 06:33:03 +08:00
{
2017-04-10 22:42:23 +08:00
RelativeSizeAxes = Axes.X;
AutoSizeAxes = Axes.Y;
2018-04-13 17:19:50 +08:00
InternalChildren = new Drawable[]
2017-03-26 06:33:03 +08:00
{
content = new Container
2017-03-26 06:33:03 +08:00
{
RelativeSizeAxes = Axes.X,
AutoSizeAxes = Axes.Y,
2017-03-26 06:33:03 +08:00
},
};
}
2017-03-25 06:02:24 +08:00
}
2020-01-30 12:30:25 +08:00
}
}