2019-01-24 16:43:03 +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;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
2020-11-03 18:53:35 +08:00
|
|
|
|
using System.Threading;
|
2018-11-20 15:51:59 +08:00
|
|
|
|
using osuTK;
|
|
|
|
|
using osuTK.Graphics;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
using osu.Framework.Allocation;
|
2019-02-21 18:04:31 +08:00
|
|
|
|
using osu.Framework.Bindables;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
using osu.Framework.Extensions.Color4Extensions;
|
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
|
using osu.Framework.Graphics.Containers;
|
2020-01-09 12:43:44 +08:00
|
|
|
|
using osu.Framework.Utils;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
using osu.Game.Beatmaps;
|
|
|
|
|
using osu.Game.Beatmaps.Drawables;
|
|
|
|
|
using osu.Game.Graphics;
|
|
|
|
|
using osu.Game.Graphics.Sprites;
|
|
|
|
|
using osu.Framework.Graphics.Shapes;
|
|
|
|
|
using osu.Framework.Graphics.Cursor;
|
2019-04-02 13:51:28 +08:00
|
|
|
|
using osu.Framework.Graphics.Effects;
|
2019-03-27 18:29:27 +08:00
|
|
|
|
using osu.Framework.Graphics.Sprites;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
using osu.Framework.Localisation;
|
2020-03-13 13:28:11 +08:00
|
|
|
|
using osu.Framework.Logging;
|
2021-02-25 20:51:32 +08:00
|
|
|
|
using osu.Game.Configuration;
|
2021-07-31 15:46:02 +08:00
|
|
|
|
using osu.Game.Extensions;
|
2018-05-07 10:59:17 +08:00
|
|
|
|
using osu.Game.Rulesets;
|
2019-04-08 17:32:05 +08:00
|
|
|
|
using osu.Game.Rulesets.Mods;
|
2018-05-07 10:59:17 +08:00
|
|
|
|
using osu.Game.Rulesets.UI;
|
2020-08-31 14:03:41 +08:00
|
|
|
|
using osu.Game.Screens.Ranking.Expanded;
|
2021-04-19 22:53:44 +08:00
|
|
|
|
using osu.Game.Graphics.Containers;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
|
|
namespace osu.Game.Screens.Select
|
|
|
|
|
{
|
2019-10-15 07:27:59 +08:00
|
|
|
|
public class BeatmapInfoWedge : VisibilityContainer
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2019-09-25 07:06:33 +08:00
|
|
|
|
private const float shear_width = 36.75f;
|
|
|
|
|
|
2020-01-23 19:03:52 +08:00
|
|
|
|
private static readonly Vector2 wedged_container_shear = new Vector2(shear_width / SongSelect.WEDGE_HEIGHT, 0);
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2021-02-25 21:01:53 +08:00
|
|
|
|
[Resolved]
|
|
|
|
|
private IBindable<RulesetInfo> ruleset { get; set; }
|
|
|
|
|
|
|
|
|
|
[Resolved]
|
|
|
|
|
private IBindable<IReadOnlyList<Mod>> mods { get; set; }
|
2018-05-07 10:59:17 +08:00
|
|
|
|
|
2020-10-22 00:57:48 +08:00
|
|
|
|
[Resolved]
|
2020-11-06 12:14:23 +08:00
|
|
|
|
private BeatmapDifficultyCache difficultyCache { get; set; }
|
2020-10-22 00:57:48 +08:00
|
|
|
|
|
2021-02-25 15:19:01 +08:00
|
|
|
|
private IBindable<StarDifficulty?> beatmapDifficulty;
|
2020-10-22 00:57:48 +08:00
|
|
|
|
|
2021-05-06 01:14:57 +08:00
|
|
|
|
protected Container DisplayedContent { get; private set; }
|
2021-05-06 01:14:04 +08:00
|
|
|
|
|
2021-05-06 01:14:57 +08:00
|
|
|
|
protected WedgeInfoText Info { get; private set; }
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
|
|
public BeatmapInfoWedge()
|
|
|
|
|
{
|
|
|
|
|
Shear = wedged_container_shear;
|
|
|
|
|
Masking = true;
|
|
|
|
|
BorderColour = new Color4(221, 255, 255, 255);
|
|
|
|
|
BorderThickness = 2.5f;
|
|
|
|
|
Alpha = 0;
|
|
|
|
|
EdgeEffect = new EdgeEffectParameters
|
|
|
|
|
{
|
|
|
|
|
Type = EdgeEffectType.Glow,
|
|
|
|
|
Colour = new Color4(130, 204, 255, 150),
|
|
|
|
|
Radius = 20,
|
|
|
|
|
Roundness = 15,
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|
2021-02-25 21:09:41 +08:00
|
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
|
private void load()
|
2018-05-07 10:59:17 +08:00
|
|
|
|
{
|
2021-02-25 21:09:41 +08:00
|
|
|
|
ruleset.BindValueChanged(_ => updateDisplay());
|
2018-05-07 10:59:17 +08:00
|
|
|
|
}
|
|
|
|
|
|
2018-04-13 17:19:50 +08:00
|
|
|
|
protected override void PopIn()
|
|
|
|
|
{
|
|
|
|
|
this.MoveToX(0, 800, Easing.OutQuint);
|
|
|
|
|
this.RotateTo(0, 800, Easing.OutQuint);
|
|
|
|
|
this.FadeIn(250);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override void PopOut()
|
|
|
|
|
{
|
|
|
|
|
this.MoveToX(-100, 800, Easing.In);
|
|
|
|
|
this.RotateTo(10, 800, Easing.In);
|
|
|
|
|
this.FadeOut(500, Easing.In);
|
|
|
|
|
}
|
|
|
|
|
|
2018-05-07 10:59:17 +08:00
|
|
|
|
private WorkingBeatmap beatmap;
|
|
|
|
|
|
2020-11-03 18:53:35 +08:00
|
|
|
|
private CancellationTokenSource cancellationSource;
|
|
|
|
|
|
2018-06-01 17:03:16 +08:00
|
|
|
|
public WorkingBeatmap Beatmap
|
2018-05-07 10:59:17 +08:00
|
|
|
|
{
|
2018-06-01 17:03:16 +08:00
|
|
|
|
get => beatmap;
|
|
|
|
|
set
|
|
|
|
|
{
|
|
|
|
|
if (beatmap == value) return;
|
|
|
|
|
|
|
|
|
|
beatmap = value;
|
2020-11-03 18:53:35 +08:00
|
|
|
|
cancellationSource?.Cancel();
|
|
|
|
|
cancellationSource = new CancellationTokenSource();
|
2020-10-22 00:57:48 +08:00
|
|
|
|
|
|
|
|
|
beatmapDifficulty?.UnbindAll();
|
2020-11-06 12:14:23 +08:00
|
|
|
|
beatmapDifficulty = difficultyCache.GetBindableDifficulty(beatmap.BeatmapInfo, cancellationSource.Token);
|
2020-11-04 09:21:42 +08:00
|
|
|
|
beatmapDifficulty.BindValueChanged(_ => updateDisplay());
|
2020-10-22 00:57:48 +08:00
|
|
|
|
|
2018-06-01 17:03:16 +08:00
|
|
|
|
updateDisplay();
|
|
|
|
|
}
|
2018-05-07 10:59:17 +08:00
|
|
|
|
}
|
|
|
|
|
|
2021-05-06 01:14:04 +08:00
|
|
|
|
public override bool IsPresent => base.IsPresent || DisplayedContent == null; // Visibility is updated in the LoadComponentAsync callback
|
2018-09-25 13:39:10 +08:00
|
|
|
|
|
2021-05-06 00:50:49 +08:00
|
|
|
|
private Container loadingInfo;
|
2018-05-07 10:59:17 +08:00
|
|
|
|
|
2018-06-01 17:03:16 +08:00
|
|
|
|
private void updateDisplay()
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2020-11-04 09:21:42 +08:00
|
|
|
|
Scheduler.AddOnce(perform);
|
2018-05-13 11:55:54 +08:00
|
|
|
|
|
2020-11-04 09:21:42 +08:00
|
|
|
|
void perform()
|
2018-05-13 11:55:54 +08:00
|
|
|
|
{
|
2020-11-04 09:21:42 +08:00
|
|
|
|
void removeOldInfo()
|
|
|
|
|
{
|
|
|
|
|
State.Value = beatmap == null ? Visibility.Hidden : Visibility.Visible;
|
|
|
|
|
|
2021-05-06 01:14:04 +08:00
|
|
|
|
DisplayedContent?.FadeOut(250);
|
|
|
|
|
DisplayedContent?.Expire();
|
|
|
|
|
DisplayedContent = null;
|
2020-11-04 09:21:42 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (beatmap == null)
|
|
|
|
|
{
|
|
|
|
|
removeOldInfo();
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2021-05-06 00:50:49 +08:00
|
|
|
|
LoadComponentAsync(loadingInfo = new Container
|
2020-11-04 09:21:42 +08:00
|
|
|
|
{
|
2021-05-06 00:50:49 +08:00
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
2020-11-04 09:21:42 +08:00
|
|
|
|
Shear = -Shear,
|
2021-05-06 01:14:04 +08:00
|
|
|
|
Depth = DisplayedContent?.Depth + 1 ?? 0,
|
2021-05-06 00:50:49 +08:00
|
|
|
|
Children = new Drawable[]
|
|
|
|
|
{
|
|
|
|
|
new BeatmapInfoWedgeBackground(beatmap),
|
|
|
|
|
Info = new WedgeInfoText(beatmap, ruleset.Value, mods.Value, beatmapDifficulty.Value ?? new StarDifficulty()),
|
|
|
|
|
}
|
2020-11-04 09:21:42 +08:00
|
|
|
|
}, loaded =>
|
|
|
|
|
{
|
|
|
|
|
// ensure we are the most recent loaded wedge.
|
|
|
|
|
if (loaded != loadingInfo) return;
|
|
|
|
|
|
|
|
|
|
removeOldInfo();
|
2021-05-06 01:14:04 +08:00
|
|
|
|
Add(DisplayedContent = loaded);
|
2020-11-04 09:21:42 +08:00
|
|
|
|
});
|
2018-05-13 11:55:54 +08:00
|
|
|
|
}
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
|
2020-11-03 18:53:35 +08:00
|
|
|
|
protected override void Dispose(bool isDisposing)
|
|
|
|
|
{
|
|
|
|
|
base.Dispose(isDisposing);
|
|
|
|
|
cancellationSource?.Cancel();
|
|
|
|
|
}
|
|
|
|
|
|
2021-04-20 05:41:51 +08:00
|
|
|
|
public class WedgeInfoText : Container
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
|
|
|
|
public OsuSpriteText VersionLabel { get; private set; }
|
|
|
|
|
public OsuSpriteText TitleLabel { get; private set; }
|
|
|
|
|
public OsuSpriteText ArtistLabel { get; private set; }
|
2018-09-13 16:18:20 +08:00
|
|
|
|
public BeatmapSetOnlineStatusPill StatusPill { get; private set; }
|
2018-04-13 17:19:50 +08:00
|
|
|
|
public FillFlowContainer MapperContainer { get; private set; }
|
2018-06-01 17:03:16 +08:00
|
|
|
|
|
2018-09-19 13:07:46 +08:00
|
|
|
|
private ILocalisedBindableString titleBinding;
|
|
|
|
|
private ILocalisedBindableString artistBinding;
|
2021-02-25 22:36:02 +08:00
|
|
|
|
private FillFlowContainer infoLabelContainer;
|
2021-02-25 20:51:32 +08:00
|
|
|
|
private Container bpmLabelContainer;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2018-06-01 17:03:16 +08:00
|
|
|
|
private readonly WorkingBeatmap beatmap;
|
2018-05-11 13:10:53 +08:00
|
|
|
|
private readonly RulesetInfo ruleset;
|
2021-02-25 20:48:02 +08:00
|
|
|
|
private readonly IReadOnlyList<Mod> mods;
|
2020-10-22 00:57:48 +08:00
|
|
|
|
private readonly StarDifficulty starDifficulty;
|
2018-05-07 10:59:17 +08:00
|
|
|
|
|
2021-02-25 20:51:32 +08:00
|
|
|
|
private ModSettingChangeTracker settingChangeTracker;
|
|
|
|
|
|
2021-05-06 00:15:59 +08:00
|
|
|
|
public WedgeInfoText(WorkingBeatmap beatmap, RulesetInfo userRuleset, IReadOnlyList<Mod> mods, StarDifficulty difficulty)
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2018-06-01 17:03:16 +08:00
|
|
|
|
this.beatmap = beatmap;
|
|
|
|
|
ruleset = userRuleset ?? beatmap.BeatmapInfo.Ruleset;
|
2021-02-25 20:48:02 +08:00
|
|
|
|
this.mods = mods;
|
2020-10-22 00:57:48 +08:00
|
|
|
|
starDifficulty = difficulty;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
|
2018-05-11 13:13:52 +08:00
|
|
|
|
[BackgroundDependencyLoader]
|
2018-09-19 13:07:46 +08:00
|
|
|
|
private void load(LocalisationManager localisation)
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2018-06-01 17:03:16 +08:00
|
|
|
|
var beatmapInfo = beatmap.BeatmapInfo;
|
|
|
|
|
var metadata = beatmapInfo.Metadata ?? beatmap.BeatmapSetInfo?.Metadata ?? new BeatmapMetadata();
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
|
|
RelativeSizeAxes = Axes.Both;
|
|
|
|
|
|
2021-02-25 13:12:59 +08:00
|
|
|
|
titleBinding = localisation.GetLocalisedString(new RomanisableString(metadata.TitleUnicode, metadata.Title));
|
|
|
|
|
artistBinding = localisation.GetLocalisedString(new RomanisableString(metadata.ArtistUnicode, metadata.Artist));
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
|
|
Children = new Drawable[]
|
|
|
|
|
{
|
2020-10-22 00:57:48 +08:00
|
|
|
|
new DifficultyColourBar(starDifficulty)
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.Y,
|
|
|
|
|
Width = 20,
|
|
|
|
|
},
|
|
|
|
|
new FillFlowContainer
|
|
|
|
|
{
|
2018-09-13 16:18:20 +08:00
|
|
|
|
Name = "Topleft-aligned metadata",
|
2018-04-13 17:19:50 +08:00
|
|
|
|
Anchor = Anchor.TopLeft,
|
|
|
|
|
Origin = Anchor.TopLeft,
|
|
|
|
|
Direction = FillDirection.Vertical,
|
2019-09-25 07:28:40 +08:00
|
|
|
|
Padding = new MarginPadding { Top = 10, Left = 25, Right = shear_width * 2.5f },
|
2019-09-25 07:06:33 +08:00
|
|
|
|
AutoSizeAxes = Axes.Y,
|
|
|
|
|
RelativeSizeAxes = Axes.X,
|
2018-04-13 17:19:50 +08:00
|
|
|
|
Children = new Drawable[]
|
|
|
|
|
{
|
|
|
|
|
VersionLabel = new OsuSpriteText
|
|
|
|
|
{
|
|
|
|
|
Text = beatmapInfo.Version,
|
2019-02-20 15:52:36 +08:00
|
|
|
|
Font = OsuFont.GetFont(size: 24, italics: true),
|
2019-09-25 07:06:33 +08:00
|
|
|
|
RelativeSizeAxes = Axes.X,
|
|
|
|
|
Truncate = true,
|
2018-04-13 17:19:50 +08:00
|
|
|
|
},
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
new FillFlowContainer
|
2018-09-13 16:18:20 +08:00
|
|
|
|
{
|
|
|
|
|
Name = "Topright-aligned metadata",
|
|
|
|
|
Anchor = Anchor.TopRight,
|
|
|
|
|
Origin = Anchor.TopRight,
|
|
|
|
|
Direction = FillDirection.Vertical,
|
2019-09-25 07:28:40 +08:00
|
|
|
|
Padding = new MarginPadding { Top = 14, Right = shear_width / 2 },
|
2018-09-13 16:18:20 +08:00
|
|
|
|
AutoSizeAxes = Axes.Both,
|
2020-09-01 01:31:47 +08:00
|
|
|
|
Shear = wedged_container_shear,
|
2020-08-31 17:05:42 +08:00
|
|
|
|
Children = new[]
|
2018-09-13 16:18:20 +08:00
|
|
|
|
{
|
2020-10-22 01:05:14 +08:00
|
|
|
|
createStarRatingDisplay(starDifficulty).With(display =>
|
2020-08-31 14:03:41 +08:00
|
|
|
|
{
|
2020-09-01 01:23:19 +08:00
|
|
|
|
display.Anchor = Anchor.TopRight;
|
|
|
|
|
display.Origin = Anchor.TopRight;
|
2020-09-01 01:31:47 +08:00
|
|
|
|
display.Shear = -wedged_container_shear;
|
2020-08-31 17:05:42 +08:00
|
|
|
|
}),
|
2018-09-20 11:35:07 +08:00
|
|
|
|
StatusPill = new BeatmapSetOnlineStatusPill
|
2018-09-13 16:18:20 +08:00
|
|
|
|
{
|
2020-09-01 01:23:19 +08:00
|
|
|
|
Anchor = Anchor.TopRight,
|
|
|
|
|
Origin = Anchor.TopRight,
|
2020-09-01 01:31:47 +08:00
|
|
|
|
Shear = -wedged_container_shear,
|
2018-09-20 11:35:07 +08:00
|
|
|
|
TextSize = 11,
|
|
|
|
|
TextPadding = new MarginPadding { Horizontal = 8, Vertical = 2 },
|
2018-09-13 16:18:20 +08:00
|
|
|
|
Status = beatmapInfo.Status,
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
new FillFlowContainer
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
|
|
|
|
Name = "Centre-aligned metadata",
|
|
|
|
|
Anchor = Anchor.CentreLeft,
|
|
|
|
|
Origin = Anchor.TopLeft,
|
2019-09-25 07:28:40 +08:00
|
|
|
|
Y = -7,
|
2018-04-13 17:19:50 +08:00
|
|
|
|
Direction = FillDirection.Vertical,
|
2019-09-25 07:28:40 +08:00
|
|
|
|
Padding = new MarginPadding { Left = 25, Right = shear_width },
|
2019-09-25 07:06:33 +08:00
|
|
|
|
AutoSizeAxes = Axes.Y,
|
|
|
|
|
RelativeSizeAxes = Axes.X,
|
2018-04-13 17:19:50 +08:00
|
|
|
|
Children = new Drawable[]
|
|
|
|
|
{
|
|
|
|
|
TitleLabel = new OsuSpriteText
|
|
|
|
|
{
|
2019-02-20 15:52:36 +08:00
|
|
|
|
Font = OsuFont.GetFont(size: 28, italics: true),
|
2019-09-25 07:06:33 +08:00
|
|
|
|
RelativeSizeAxes = Axes.X,
|
|
|
|
|
Truncate = true,
|
2018-04-13 17:19:50 +08:00
|
|
|
|
},
|
|
|
|
|
ArtistLabel = new OsuSpriteText
|
|
|
|
|
{
|
2019-02-20 15:52:36 +08:00
|
|
|
|
Font = OsuFont.GetFont(size: 17, italics: true),
|
2019-09-25 07:06:33 +08:00
|
|
|
|
RelativeSizeAxes = Axes.X,
|
|
|
|
|
Truncate = true,
|
2018-04-13 17:19:50 +08:00
|
|
|
|
},
|
|
|
|
|
MapperContainer = new FillFlowContainer
|
|
|
|
|
{
|
|
|
|
|
Margin = new MarginPadding { Top = 10 },
|
|
|
|
|
Direction = FillDirection.Horizontal,
|
|
|
|
|
AutoSizeAxes = Axes.Both,
|
2021-04-20 01:24:46 +08:00
|
|
|
|
Child = getMapper(metadata),
|
2018-04-13 17:19:50 +08:00
|
|
|
|
},
|
2021-02-25 22:36:02 +08:00
|
|
|
|
infoLabelContainer = new FillFlowContainer
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
|
|
|
|
Margin = new MarginPadding { Top = 20 },
|
|
|
|
|
Spacing = new Vector2(20, 0),
|
|
|
|
|
AutoSizeAxes = Axes.Both,
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
};
|
2018-09-19 13:57:32 +08:00
|
|
|
|
|
2019-02-22 19:13:38 +08:00
|
|
|
|
titleBinding.BindValueChanged(_ => setMetadata(metadata.Source));
|
|
|
|
|
artistBinding.BindValueChanged(_ => setMetadata(metadata.Source), true);
|
2018-09-13 19:49:57 +08:00
|
|
|
|
|
|
|
|
|
// no difficulty means it can't have a status to show
|
|
|
|
|
if (beatmapInfo.Version == null)
|
|
|
|
|
StatusPill.Hide();
|
2021-02-25 20:51:32 +08:00
|
|
|
|
|
2021-02-25 22:36:02 +08:00
|
|
|
|
addInfoLabels();
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
|
2020-10-22 01:05:14 +08:00
|
|
|
|
private static Drawable createStarRatingDisplay(StarDifficulty difficulty) => difficulty.Stars > 0
|
|
|
|
|
? new StarRatingDisplay(difficulty)
|
2020-08-31 17:05:42 +08:00
|
|
|
|
{
|
|
|
|
|
Margin = new MarginPadding { Bottom = 5 }
|
|
|
|
|
}
|
|
|
|
|
: Empty();
|
|
|
|
|
|
2018-04-13 17:19:50 +08:00
|
|
|
|
private void setMetadata(string source)
|
|
|
|
|
{
|
|
|
|
|
ArtistLabel.Text = artistBinding.Value;
|
|
|
|
|
TitleLabel.Text = string.IsNullOrEmpty(source) ? titleBinding.Value : source + " — " + titleBinding.Value;
|
|
|
|
|
}
|
|
|
|
|
|
2021-02-25 22:36:02 +08:00
|
|
|
|
private void addInfoLabels()
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2021-02-25 22:36:02 +08:00
|
|
|
|
if (beatmap.Beatmap?.HitObjects?.Any() != true)
|
|
|
|
|
return;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2021-02-25 22:36:02 +08:00
|
|
|
|
infoLabelContainer.Children = new Drawable[]
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2021-02-25 22:36:02 +08:00
|
|
|
|
new InfoLabel(new BeatmapStatistic
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
|
|
|
|
Name = "Length",
|
2020-09-04 14:01:32 +08:00
|
|
|
|
CreateIcon = () => new BeatmapStatisticIcon(BeatmapStatisticsIconType.Length),
|
2021-07-31 15:46:02 +08:00
|
|
|
|
Content = beatmap.BeatmapInfo.Length.ToFormattedDuration().ToString(),
|
2021-02-25 22:36:02 +08:00
|
|
|
|
}),
|
|
|
|
|
bpmLabelContainer = new Container
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2021-02-25 22:36:02 +08:00
|
|
|
|
AutoSizeAxes = Axes.Both,
|
|
|
|
|
},
|
|
|
|
|
new FillFlowContainer
|
2018-05-07 10:59:17 +08:00
|
|
|
|
{
|
2021-02-25 22:36:02 +08:00
|
|
|
|
AutoSizeAxes = Axes.Both,
|
|
|
|
|
Spacing = new Vector2(20, 0),
|
|
|
|
|
Children = getRulesetInfoLabels()
|
|
|
|
|
}
|
|
|
|
|
};
|
2020-03-13 13:28:11 +08:00
|
|
|
|
|
2021-02-25 22:36:02 +08:00
|
|
|
|
settingChangeTracker = new ModSettingChangeTracker(mods);
|
|
|
|
|
settingChangeTracker.SettingChanged += _ => refreshBPMLabel();
|
2020-03-13 13:28:11 +08:00
|
|
|
|
|
2021-02-25 22:36:02 +08:00
|
|
|
|
refreshBPMLabel();
|
|
|
|
|
}
|
|
|
|
|
|
2021-02-25 20:51:32 +08:00
|
|
|
|
private InfoLabel[] getRulesetInfoLabels()
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2021-02-25 20:51:32 +08:00
|
|
|
|
try
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2021-02-25 20:51:32 +08:00
|
|
|
|
IBeatmap playableBeatmap;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2018-05-07 10:59:17 +08:00
|
|
|
|
try
|
|
|
|
|
{
|
2021-02-25 20:51:32 +08:00
|
|
|
|
// Try to get the beatmap with the user's ruleset
|
|
|
|
|
playableBeatmap = beatmap.GetPlayableBeatmap(ruleset, Array.Empty<Mod>());
|
2018-05-07 10:59:17 +08:00
|
|
|
|
}
|
2021-02-25 20:51:32 +08:00
|
|
|
|
catch (BeatmapInvalidForRulesetException)
|
2018-05-07 10:59:17 +08:00
|
|
|
|
{
|
2021-02-25 20:51:32 +08:00
|
|
|
|
// Can't be converted to the user's ruleset, so use the beatmap's own ruleset
|
|
|
|
|
playableBeatmap = beatmap.GetPlayableBeatmap(beatmap.BeatmapInfo.Ruleset, Array.Empty<Mod>());
|
2018-05-07 10:59:17 +08:00
|
|
|
|
}
|
2021-02-25 20:51:32 +08:00
|
|
|
|
|
|
|
|
|
return playableBeatmap.GetStatistics().Select(s => new InfoLabel(s)).ToArray();
|
|
|
|
|
}
|
|
|
|
|
catch (Exception e)
|
|
|
|
|
{
|
|
|
|
|
Logger.Error(e, "Could not load beatmap successfully!");
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
|
2021-02-25 20:51:32 +08:00
|
|
|
|
return Array.Empty<InfoLabel>();
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
|
2021-02-25 22:36:02 +08:00
|
|
|
|
private void refreshBPMLabel()
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2021-02-25 20:51:32 +08:00
|
|
|
|
var b = beatmap.Beatmap;
|
|
|
|
|
if (b == null)
|
|
|
|
|
return;
|
|
|
|
|
|
2021-02-25 16:00:42 +08:00
|
|
|
|
// this doesn't consider mods which apply variable rates, yet.
|
|
|
|
|
double rate = 1;
|
2021-02-25 20:48:02 +08:00
|
|
|
|
foreach (var mod in mods.OfType<IApplicableToRate>())
|
2021-02-25 16:00:42 +08:00
|
|
|
|
rate = mod.ApplyToRate(0, rate);
|
|
|
|
|
|
2021-02-25 20:51:32 +08:00
|
|
|
|
double bpmMax = b.ControlPointInfo.BPMMaximum * rate;
|
|
|
|
|
double bpmMin = b.ControlPointInfo.BPMMinimum * rate;
|
|
|
|
|
double mostCommonBPM = 60000 / b.GetMostCommonBeatLength() * rate;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2021-02-25 20:51:32 +08:00
|
|
|
|
string labelText = Precision.AlmostEquals(bpmMin, bpmMax)
|
|
|
|
|
? $"{bpmMin:0}"
|
|
|
|
|
: $"{bpmMin:0}-{bpmMax:0} (mostly {mostCommonBPM:0})";
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2021-02-25 20:51:32 +08:00
|
|
|
|
bpmLabelContainer.Child = new InfoLabel(new BeatmapStatistic
|
|
|
|
|
{
|
|
|
|
|
Name = "BPM",
|
|
|
|
|
CreateIcon = () => new BeatmapStatisticIcon(BeatmapStatisticsIconType.Bpm),
|
|
|
|
|
Content = labelText
|
|
|
|
|
});
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
|
2021-04-20 01:24:46 +08:00
|
|
|
|
private Drawable getMapper(BeatmapMetadata metadata)
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2021-04-19 22:53:44 +08:00
|
|
|
|
if (metadata.Author == null)
|
2021-04-20 01:24:46 +08:00
|
|
|
|
return Empty();
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2021-04-19 22:53:44 +08:00
|
|
|
|
return new LinkFlowContainer(s =>
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2021-04-19 22:53:44 +08:00
|
|
|
|
s.Font = OsuFont.GetFont(weight: FontWeight.Bold, size: 15);
|
|
|
|
|
}).With(d =>
|
|
|
|
|
{
|
|
|
|
|
d.AutoSizeAxes = Axes.Both;
|
|
|
|
|
d.AddText("mapped by ");
|
|
|
|
|
d.AddUserLink(metadata.Author);
|
|
|
|
|
});
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
|
2021-02-25 20:51:32 +08:00
|
|
|
|
protected override void Dispose(bool isDisposing)
|
|
|
|
|
{
|
|
|
|
|
base.Dispose(isDisposing);
|
|
|
|
|
settingChangeTracker?.Dispose();
|
|
|
|
|
}
|
|
|
|
|
|
2018-04-13 17:19:50 +08:00
|
|
|
|
public class InfoLabel : Container, IHasTooltip
|
|
|
|
|
{
|
2021-06-26 01:10:04 +08:00
|
|
|
|
public LocalisableString TooltipText { get; }
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
|
|
public InfoLabel(BeatmapStatistic statistic)
|
|
|
|
|
{
|
|
|
|
|
TooltipText = statistic.Name;
|
|
|
|
|
AutoSizeAxes = Axes.Both;
|
|
|
|
|
|
|
|
|
|
Children = new Drawable[]
|
|
|
|
|
{
|
|
|
|
|
new Container
|
|
|
|
|
{
|
|
|
|
|
Anchor = Anchor.CentreLeft,
|
|
|
|
|
Origin = Anchor.CentreLeft,
|
|
|
|
|
Size = new Vector2(20),
|
|
|
|
|
Children = new[]
|
|
|
|
|
{
|
|
|
|
|
new SpriteIcon
|
|
|
|
|
{
|
|
|
|
|
Anchor = Anchor.Centre,
|
|
|
|
|
Origin = Anchor.Centre,
|
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
2020-03-11 09:18:41 +08:00
|
|
|
|
Colour = Color4Extensions.FromHex(@"441288"),
|
2019-04-02 18:55:24 +08:00
|
|
|
|
Icon = FontAwesome.Solid.Square,
|
2018-04-13 17:19:50 +08:00
|
|
|
|
Rotation = 45,
|
|
|
|
|
},
|
|
|
|
|
new SpriteIcon
|
|
|
|
|
{
|
|
|
|
|
Anchor = Anchor.Centre,
|
|
|
|
|
Origin = Anchor.Centre,
|
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
2020-03-11 09:18:41 +08:00
|
|
|
|
Colour = Color4Extensions.FromHex(@"f7dd55"),
|
2020-09-03 16:51:54 +08:00
|
|
|
|
Icon = FontAwesome.Regular.Circle,
|
2020-09-04 11:55:28 +08:00
|
|
|
|
Size = new Vector2(0.8f)
|
2018-04-13 17:19:50 +08:00
|
|
|
|
},
|
2020-09-03 16:51:54 +08:00
|
|
|
|
statistic.CreateIcon().With(i =>
|
|
|
|
|
{
|
|
|
|
|
i.Anchor = Anchor.Centre;
|
|
|
|
|
i.Origin = Anchor.Centre;
|
|
|
|
|
i.RelativeSizeAxes = Axes.Both;
|
|
|
|
|
i.Colour = Color4Extensions.FromHex(@"f7dd55");
|
2020-09-04 12:05:39 +08:00
|
|
|
|
i.Size = new Vector2(0.64f);
|
2020-09-03 16:51:54 +08:00
|
|
|
|
}),
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
new OsuSpriteText
|
|
|
|
|
{
|
|
|
|
|
Anchor = Anchor.CentreLeft,
|
|
|
|
|
Origin = Anchor.CentreLeft,
|
|
|
|
|
Colour = new Color4(255, 221, 85, 255),
|
2019-02-12 12:04:46 +08:00
|
|
|
|
Font = OsuFont.GetFont(weight: FontWeight.Bold, size: 17),
|
2018-04-13 17:19:50 +08:00
|
|
|
|
Margin = new MarginPadding { Left = 30 },
|
|
|
|
|
Text = statistic.Content,
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2019-08-17 14:16:24 +08:00
|
|
|
|
private class DifficultyColourBar : Container
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2020-10-22 00:57:48 +08:00
|
|
|
|
private readonly StarDifficulty difficulty;
|
2019-08-17 14:16:24 +08:00
|
|
|
|
|
2020-10-22 00:57:48 +08:00
|
|
|
|
public DifficultyColourBar(StarDifficulty difficulty)
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2020-10-22 00:57:48 +08:00
|
|
|
|
this.difficulty = difficulty;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[BackgroundDependencyLoader]
|
2019-08-17 14:16:24 +08:00
|
|
|
|
private void load(OsuColour colours)
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
|
|
|
|
const float full_opacity_ratio = 0.7f;
|
|
|
|
|
|
2021-08-03 19:17:02 +08:00
|
|
|
|
var difficultyColour = colours.ForStarDifficulty(difficulty.Stars);
|
2019-08-17 14:16:24 +08:00
|
|
|
|
|
2018-04-13 17:19:50 +08:00
|
|
|
|
Children = new Drawable[]
|
|
|
|
|
{
|
|
|
|
|
new Box
|
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
2019-08-17 14:16:24 +08:00
|
|
|
|
Colour = difficultyColour,
|
2018-04-13 17:19:50 +08:00
|
|
|
|
Width = full_opacity_ratio,
|
|
|
|
|
},
|
|
|
|
|
new Box
|
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
|
RelativePositionAxes = Axes.Both,
|
2019-08-17 14:16:24 +08:00
|
|
|
|
Colour = difficultyColour,
|
2018-04-13 17:19:50 +08:00
|
|
|
|
Alpha = 0.5f,
|
|
|
|
|
X = full_opacity_ratio,
|
|
|
|
|
Width = 1 - full_opacity_ratio,
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|