1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 09:27:34 +08:00
osu-lazer/osu.Game/Online/Leaderboards/LeaderboardScore.cs

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

439 lines
19 KiB
C#
Raw Normal View History

2022-02-20 03:47:30 +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
2022-06-17 15:37:17 +08:00
#nullable disable
2022-02-17 06:18:14 +08:00
using System;
using System.Collections.Generic;
2018-11-28 15:33:42 +08:00
using System.Linq;
using osu.Framework.Allocation;
2017-08-14 01:54:07 +08:00
using osu.Framework.Extensions.Color4Extensions;
2017-03-04 15:37:34 +08:00
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
2018-06-04 09:26:30 +08:00
using osu.Framework.Graphics.Cursor;
2019-04-02 13:51:28 +08:00
using osu.Framework.Graphics.Effects;
using osu.Framework.Graphics.Shapes;
using osu.Framework.Graphics.Sprites;
using osu.Framework.Graphics.UserInterface;
2018-10-02 11:02:47 +08:00
using osu.Framework.Input.Events;
using osu.Framework.Localisation;
using osu.Framework.Platform;
using osu.Game.Database;
using osu.Game.Extensions;
2017-03-04 15:37:34 +08:00
using osu.Game.Graphics;
2017-08-14 01:54:07 +08:00
using osu.Game.Graphics.Containers;
2017-03-04 15:37:34 +08:00
using osu.Game.Graphics.Sprites;
using osu.Game.Graphics.UserInterface;
using osu.Game.Overlays;
2017-08-14 01:54:07 +08:00
using osu.Game.Rulesets.UI;
using osu.Game.Screens.Select;
2018-11-28 15:12:57 +08:00
using osu.Game.Scoring;
using osu.Game.Users.Drawables;
using osuTK;
using osuTK.Graphics;
using osu.Game.Online.API;
using osu.Game.Resources.Localisation.Web;
2020-12-19 22:02:56 +08:00
using osu.Game.Utils;
2018-04-13 17:19:50 +08:00
namespace osu.Game.Online.Leaderboards
2017-03-04 15:37:34 +08:00
{
public partial class LeaderboardScore : OsuClickableContainer, IHasContextMenu, IHasCustomTooltip<ScoreInfo>
{
2018-12-22 14:20:35 +08:00
public const float HEIGHT = 60;
public readonly ScoreInfo Score;
2017-03-04 15:37:34 +08:00
private const float corner_radius = 5;
2017-03-19 15:34:29 +08:00
private const float edge_margin = 5;
private const float background_alpha = 0.25f;
private const float rank_width = 35;
2018-04-13 17:19:50 +08:00
protected Container RankContainer { get; private set; }
2020-02-20 13:51:25 +08:00
private readonly int? rank;
private readonly bool isOnlineScope;
private Box background;
private Container content;
2017-11-23 19:23:47 +08:00
private Drawable avatar;
private Drawable scoreRank;
private OsuSpriteText nameLabel;
public GlowingSpriteText ScoreText { get; private set; }
2022-02-17 17:12:35 +08:00
private FillFlowContainer flagBadgeAndDateContainer;
private FillFlowContainer<ModIcon> modsContainer;
2018-04-13 17:19:50 +08:00
private List<ScoreComponentLabel> statisticsLabels;
2020-02-13 18:04:23 +08:00
[Resolved(CanBeNull = true)]
private IDialogOverlay dialogOverlay { get; set; }
[Resolved(CanBeNull = true)]
private SongSelect songSelect { get; set; }
[Resolved]
private Storage storage { get; set; }
public ITooltip<ScoreInfo> GetCustomTooltip() => new LeaderboardScoreTooltip();
public virtual ScoreInfo TooltipContent => Score;
public LeaderboardScore(ScoreInfo score, int? rank, bool isOnlineScope = true)
2017-03-04 15:37:34 +08:00
{
2021-09-07 16:45:21 +08:00
Score = score;
this.rank = rank;
this.isOnlineScope = isOnlineScope;
2018-04-13 17:19:50 +08:00
2017-03-04 15:37:34 +08:00
RelativeSizeAxes = Axes.X;
2018-12-22 14:20:35 +08:00
Height = HEIGHT;
}
2018-04-13 17:19:50 +08:00
[BackgroundDependencyLoader]
2020-08-28 18:16:46 +08:00
private void load(IAPIProvider api, OsuColour colour, ScoreManager scoreManager)
{
var user = Score.User;
statisticsLabels = GetStatistics(Score).Select(s => new ScoreComponentLabel(s)).ToList();
2020-12-26 20:54:10 +08:00
ClickableAvatar innerAvatar;
2019-03-17 12:43:23 +08:00
2017-03-04 15:37:34 +08:00
Children = new Drawable[]
{
new RankLabel(rank)
2017-03-04 15:37:34 +08:00
{
RelativeSizeAxes = Axes.Y,
2017-03-18 05:29:55 +08:00
Width = rank_width,
2017-03-04 15:37:34 +08:00
},
content = new Container
2017-03-04 15:37:34 +08:00
{
RelativeSizeAxes = Axes.Both,
2022-02-17 17:12:35 +08:00
Padding = new MarginPadding { Left = rank_width },
2017-03-04 15:37:34 +08:00
Children = new Drawable[]
{
new Container
{
RelativeSizeAxes = Axes.Both,
CornerRadius = corner_radius,
Masking = true,
Children = new[]
{
background = new Box
{
RelativeSizeAxes = Axes.Both,
Colour = user.OnlineID == api.LocalUser.Value.Id && isOnlineScope ? colour.Green : Color4.Black,
Alpha = background_alpha,
2017-03-04 15:37:34 +08:00
},
},
},
new Container
{
RelativeSizeAxes = Axes.Both,
Padding = new MarginPadding(edge_margin),
2017-11-23 19:23:47 +08:00
Children = new[]
2017-03-04 15:37:34 +08:00
{
2017-04-02 15:17:13 +08:00
avatar = new DelayedLoadWrapper(
2020-12-26 20:54:10 +08:00
innerAvatar = new ClickableAvatar(user)
2017-03-19 16:29:10 +08:00
{
2017-04-02 14:56:12 +08:00
RelativeSizeAxes = Axes.Both,
CornerRadius = corner_radius,
Masking = true,
2017-06-12 11:48:47 +08:00
EdgeEffect = new EdgeEffectParameters
2017-03-28 13:24:21 +08:00
{
2017-04-02 14:56:12 +08:00
Type = EdgeEffectType.Shadow,
Radius = 1,
Colour = Color4.Black.Opacity(0.2f),
2017-03-28 13:24:21 +08:00
},
2017-04-02 14:56:12 +08:00
})
{
2017-04-04 08:47:52 +08:00
RelativeSizeAxes = Axes.None,
2018-12-22 14:20:35 +08:00
Size = new Vector2(HEIGHT - edge_margin * 2, HEIGHT - edge_margin * 2),
2017-03-04 15:37:34 +08:00
},
new Container
{
RelativeSizeAxes = Axes.Y,
AutoSizeAxes = Axes.X,
2018-12-22 14:20:35 +08:00
Position = new Vector2(HEIGHT - edge_margin, 0f),
2017-03-04 15:37:34 +08:00
Children = new Drawable[]
{
nameLabel = new OsuSpriteText
2017-03-04 15:37:34 +08:00
{
Text = user.Username,
Font = OsuFont.GetFont(size: 23, weight: FontWeight.Bold, italics: true)
2017-03-04 15:37:34 +08:00
},
new FillFlowContainer
{
Anchor = Anchor.BottomLeft,
Origin = Anchor.BottomLeft,
2017-03-04 15:37:34 +08:00
AutoSizeAxes = Axes.Both,
2017-03-05 10:38:01 +08:00
Direction = FillDirection.Horizontal,
2017-03-04 15:37:34 +08:00
Spacing = new Vector2(10f, 0f),
Children = new Drawable[]
{
2022-02-17 17:12:35 +08:00
flagBadgeAndDateContainer = new FillFlowContainer
2017-03-04 15:37:34 +08:00
{
Anchor = Anchor.CentreLeft,
Origin = Anchor.CentreLeft,
RelativeSizeAxes = Axes.Y,
2022-02-17 17:12:35 +08:00
Direction = FillDirection.Horizontal,
Spacing = new Vector2(5f, 0f),
Width = 87f,
2017-03-04 15:37:34 +08:00
Masking = true,
Children = new Drawable[]
{
2022-07-18 13:40:34 +08:00
new UpdateableFlag(user.CountryCode)
{
Anchor = Anchor.CentreLeft,
Origin = Anchor.CentreLeft,
Size = new Vector2(28, 20),
},
2022-02-17 17:12:35 +08:00
new DateLabel(Score.Date)
{
Anchor = Anchor.CentreLeft,
Origin = Anchor.CentreLeft,
2022-02-17 17:12:35 +08:00
},
2017-03-04 15:37:34 +08:00
},
},
new FillFlowContainer
{
Origin = Anchor.CentreLeft,
Anchor = Anchor.CentreLeft,
2017-03-04 15:37:34 +08:00
AutoSizeAxes = Axes.Both,
2017-03-05 10:38:01 +08:00
Direction = FillDirection.Horizontal,
2018-06-04 09:22:44 +08:00
Margin = new MarginPadding { Left = edge_margin },
Children = statisticsLabels
2017-03-04 15:37:34 +08:00
},
},
},
},
},
2017-03-18 05:16:59 +08:00
new FillFlowContainer
2017-03-04 15:37:34 +08:00
{
2017-03-18 05:16:59 +08:00
AutoSizeAxes = Axes.Both,
2017-03-04 15:37:34 +08:00
Anchor = Anchor.TopRight,
Origin = Anchor.TopRight,
2017-03-18 05:16:59 +08:00
Direction = FillDirection.Horizontal,
Spacing = new Vector2(5f, 0f),
Children = new Drawable[]
{
ScoreText = new GlowingSpriteText
{
TextColour = Color4.White,
GlowColour = Color4Extensions.FromHex(@"83ccfa"),
Current = scoreManager.GetBindableTotalScoreString(Score),
Font = OsuFont.Numeric.With(size: 23),
},
RankContainer = new Container
2017-03-18 05:16:59 +08:00
{
Size = new Vector2(40f, 20f),
Children = new[]
{
scoreRank = new UpdateableRank(Score.Rank)
2017-03-18 05:16:59 +08:00
{
Anchor = Anchor.Centre,
Origin = Anchor.Centre,
Size = new Vector2(40f)
2017-03-18 05:16:59 +08:00
},
},
},
},
2017-03-04 15:37:34 +08:00
},
2017-08-14 01:54:07 +08:00
modsContainer = new FillFlowContainer<ModIcon>
2017-03-04 15:37:34 +08:00
{
Anchor = Anchor.BottomRight,
Origin = Anchor.BottomRight,
AutoSizeAxes = Axes.Both,
2017-03-05 10:38:01 +08:00
Direction = FillDirection.Horizontal,
ChildrenEnumerable = Score.Mods.Select(mod => new ModIcon(mod) { Scale = new Vector2(0.375f) })
2017-03-04 15:37:34 +08:00
},
},
},
},
},
};
2019-03-17 12:43:23 +08:00
innerAvatar.OnLoadComplete += d => d.FadeInFromZero(200);
}
2018-04-13 17:19:50 +08:00
public override void Show()
{
2022-02-17 17:12:35 +08:00
foreach (var d in new[] { avatar, nameLabel, ScoreText, scoreRank, flagBadgeAndDateContainer, modsContainer }.Concat(statisticsLabels))
d.FadeOut();
2018-04-13 17:19:50 +08:00
Alpha = 0;
2018-04-13 17:19:50 +08:00
content.MoveToY(75);
avatar.MoveToX(75);
nameLabel.MoveToX(150);
2018-04-13 17:19:50 +08:00
this.FadeIn(200);
content.MoveToY(0, 800, Easing.OutQuint);
2018-04-13 17:19:50 +08:00
2021-07-05 23:52:39 +08:00
using (BeginDelayedSequence(100))
{
avatar.FadeIn(300, Easing.OutQuint);
nameLabel.FadeIn(350, Easing.OutQuint);
2018-04-13 17:19:50 +08:00
avatar.MoveToX(0, 300, Easing.OutQuint);
nameLabel.MoveToX(0, 350, Easing.OutQuint);
2018-04-13 17:19:50 +08:00
2021-07-05 23:52:39 +08:00
using (BeginDelayedSequence(250))
{
ScoreText.FadeIn(200);
scoreRank.FadeIn(200);
2018-04-13 17:19:50 +08:00
2021-07-05 23:52:39 +08:00
using (BeginDelayedSequence(50))
{
2022-02-17 17:12:35 +08:00
var drawables = new Drawable[] { flagBadgeAndDateContainer, modsContainer }.Concat(statisticsLabels).ToArray();
for (int i = 0; i < drawables.Length; i++)
drawables[i].FadeIn(100 + i * 50);
}
}
}
}
2018-04-13 17:19:50 +08:00
2018-12-22 14:23:32 +08:00
protected virtual IEnumerable<LeaderboardScoreStatistic> GetStatistics(ScoreInfo model) => new[]
{
new LeaderboardScoreStatistic(FontAwesome.Solid.Link, BeatmapsetsStrings.ShowScoreboardHeadersCombo, model.MaxCombo.ToString()),
new LeaderboardScoreStatistic(FontAwesome.Solid.Crosshairs, BeatmapsetsStrings.ShowScoreboardHeadersAccuracy, model.DisplayAccuracy)
2018-12-22 14:23:32 +08:00
};
2018-10-02 11:02:47 +08:00
protected override bool OnHover(HoverEvent e)
2017-03-18 06:45:51 +08:00
{
2017-07-23 02:50:25 +08:00
background.FadeTo(0.5f, 300, Easing.OutQuint);
2018-10-02 11:02:47 +08:00
return base.OnHover(e);
2017-03-18 06:45:51 +08:00
}
2018-04-13 17:19:50 +08:00
2018-10-02 11:02:47 +08:00
protected override void OnHoverLost(HoverLostEvent e)
2017-03-18 06:45:51 +08:00
{
2017-07-23 02:50:25 +08:00
background.FadeTo(background_alpha, 200, Easing.OutQuint);
2018-10-02 11:02:47 +08:00
base.OnHoverLost(e);
2017-03-18 06:45:51 +08:00
}
2018-04-13 17:19:50 +08:00
2018-06-04 09:26:30 +08:00
private partial class ScoreComponentLabel : Container, IHasTooltip
2017-03-04 15:37:34 +08:00
{
2018-06-04 09:22:44 +08:00
private const float icon_size = 20;
private readonly FillFlowContainer content;
2018-06-04 09:26:30 +08:00
public override bool Contains(Vector2 screenSpacePos) => content.Contains(screenSpacePos);
2018-06-04 09:22:44 +08:00
public LocalisableString TooltipText { get; }
2018-06-04 09:26:30 +08:00
2018-12-22 14:20:35 +08:00
public ScoreComponentLabel(LeaderboardScoreStatistic statistic)
2017-03-04 15:37:34 +08:00
{
2019-11-12 17:45:42 +08:00
TooltipText = statistic.Name;
AutoSizeAxes = Axes.Both;
2018-04-13 17:19:50 +08:00
2018-06-04 09:26:30 +08:00
Child = content = new FillFlowContainer
2017-03-04 15:37:34 +08:00
{
2018-06-04 09:22:44 +08:00
AutoSizeAxes = Axes.Both,
Direction = FillDirection.Horizontal,
Padding = new MarginPadding { Right = 10 },
2018-06-04 09:22:44 +08:00
Children = new Drawable[]
2017-03-04 15:37:34 +08:00
{
2018-06-04 09:22:44 +08:00
new Container
{
Anchor = Anchor.CentreLeft,
Origin = Anchor.CentreLeft,
AutoSizeAxes = Axes.Both,
Children = new[]
{
new SpriteIcon
{
Anchor = Anchor.Centre,
Origin = Anchor.Centre,
Size = new Vector2(icon_size),
Rotation = 45,
Colour = Color4Extensions.FromHex(@"3087ac"),
2019-04-02 18:55:24 +08:00
Icon = FontAwesome.Solid.Square,
2018-06-04 09:22:44 +08:00
Shadow = true,
},
new SpriteIcon
{
Anchor = Anchor.Centre,
Origin = Anchor.Centre,
Size = new Vector2(icon_size - 6),
Colour = Color4Extensions.FromHex(@"a4edff"),
2018-12-22 14:20:35 +08:00
Icon = statistic.Icon,
2018-06-04 09:22:44 +08:00
},
},
},
new GlowingSpriteText
2018-06-04 09:22:44 +08:00
{
Anchor = Anchor.CentreLeft,
Origin = Anchor.CentreLeft,
TextColour = Color4.White,
GlowColour = Color4Extensions.FromHex(@"83ccfa"),
Text = statistic.Value,
Font = OsuFont.GetFont(size: 17, weight: FontWeight.Bold),
2018-06-04 09:22:44 +08:00
},
2017-03-04 15:37:34 +08:00
},
};
}
}
private partial class RankLabel : Container, IHasTooltip
{
public RankLabel(int? rank)
{
if (rank >= 1000)
TooltipText = $"#{rank:N0}";
Child = new OsuSpriteText
{
Anchor = Anchor.Centre,
Origin = Anchor.Centre,
Font = OsuFont.GetFont(size: 20, italics: true),
2020-12-19 22:02:56 +08:00
Text = rank == null ? "-" : rank.Value.FormatRank()
};
}
public LocalisableString TooltipText { get; }
2017-03-04 15:37:34 +08:00
}
2018-12-22 14:20:35 +08:00
2022-02-17 06:18:14 +08:00
private partial class DateLabel : DrawableDate
{
public DateLabel(DateTimeOffset date)
2022-02-17 17:12:35 +08:00
: base(date)
2022-02-17 06:18:14 +08:00
{
2022-02-17 17:12:35 +08:00
Font = OsuFont.GetFont(size: 17, weight: FontWeight.Bold, italics: true);
2022-02-17 06:18:14 +08:00
}
protected override string Format() => Date.ToShortRelativeTime(TimeSpan.FromSeconds(30));
2022-02-17 06:18:14 +08:00
}
2018-12-22 14:20:35 +08:00
public class LeaderboardScoreStatistic
{
public IconUsage Icon;
2021-07-24 04:37:08 +08:00
public LocalisableString Value;
public LocalisableString Name;
2018-12-22 14:20:35 +08:00
public LeaderboardScoreStatistic(IconUsage icon, LocalisableString name, LocalisableString value)
2018-12-22 14:20:35 +08:00
{
Icon = icon;
Name = name;
Value = value;
}
}
public MenuItem[] ContextMenuItems
{
2019-12-19 14:41:07 +08:00
get
{
2019-12-19 14:41:07 +08:00
List<MenuItem> items = new List<MenuItem>();
if (Score.Mods.Length > 0 && modsContainer.Any(s => s.IsHovered) && songSelect != null)
items.Add(new OsuMenuItem("Use these mods", MenuItemType.Highlighted, () => songSelect.Mods.Value = Score.Mods));
if (Score.Files.Count > 0)
{
items.Add(new OsuMenuItem("Export", MenuItemType.Standard, () => new LegacyScoreExporter(storage).Export(Score)));
items.Add(new OsuMenuItem(CommonStrings.ButtonsDelete, MenuItemType.Destructive, () => dialogOverlay?.Push(new LocalScoreDeleteDialog(Score))));
}
2019-12-19 14:41:07 +08:00
return items.ToArray();
}
}
2017-03-04 15:37:34 +08:00
}
}