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

394 lines
17 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 17:19:50 +08:00
using System.Collections.Generic;
2018-11-28 15:33:42 +08:00
using System.Linq;
2018-04-13 17:19:50 +08:00
using osu.Framework.Allocation;
using osu.Framework.Extensions.Color4Extensions;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
2018-06-04 09:26:30 +08:00
using osu.Framework.Graphics.Cursor;
2018-04-13 17:19:50 +08:00
using osu.Framework.Graphics.Shapes;
using osu.Framework.Graphics.Sprites;
2018-10-02 11:02:47 +08:00
using osu.Framework.Input.Events;
2018-04-13 17:19:50 +08:00
using osu.Game.Graphics;
using osu.Game.Graphics.Containers;
using osu.Game.Graphics.Sprites;
using osu.Game.Rulesets.UI;
2018-11-28 15:12:57 +08:00
using osu.Game.Scoring;
2018-04-13 17:19:50 +08:00
using osu.Game.Users;
using osuTK;
using osuTK.Graphics;
2018-04-13 17:19:50 +08:00
namespace osu.Game.Online.Leaderboards
2018-04-13 17:19:50 +08:00
{
2018-12-22 14:20:35 +08:00
public class LeaderboardScore : OsuClickableContainer
{
2018-04-13 17:19:50 +08:00
public readonly int RankPosition;
2018-12-22 14:20:35 +08:00
public const float HEIGHT = 60;
2018-04-13 17:19:50 +08:00
private const float corner_radius = 5;
private const float edge_margin = 5;
private const float background_alpha = 0.25f;
private const float rank_width = 30;
protected Container RankContainer { get; private set; }
2018-12-22 14:20:35 +08:00
private readonly ScoreInfo score;
2018-04-13 17:19:50 +08:00
private Box background;
private Container content;
private Drawable avatar;
private Drawable scoreRank;
2018-04-13 17:19:50 +08:00
private OsuSpriteText nameLabel;
private GlowingSpriteText scoreLabel;
private Container flagBadgeContainer;
private FillFlowContainer<ModIcon> modsContainer;
private List<ScoreComponentLabel> statisticsLabels;
2018-12-22 14:20:35 +08:00
public LeaderboardScore(ScoreInfo score, int rank)
2018-04-13 17:19:50 +08:00
{
this.score = score;
2018-04-13 17:19:50 +08:00
RankPosition = rank;
RelativeSizeAxes = Axes.X;
2018-12-22 14:20:35 +08:00
Height = HEIGHT;
2018-04-13 17:19:50 +08:00
}
[BackgroundDependencyLoader]
private void load()
{
2018-12-22 14:20:35 +08:00
var user = score.User;
2018-12-22 14:20:35 +08:00
statisticsLabels = GetStatistics(score).Select(s => new ScoreComponentLabel(s)).ToList();
2019-03-17 12:43:23 +08:00
Avatar innerAvatar;
2018-04-13 17:19:50 +08:00
Children = new Drawable[]
{
new Container
{
RelativeSizeAxes = Axes.Y,
Width = rank_width,
Children = new[]
{
new OsuSpriteText
{
2018-12-27 14:30:02 +08:00
Anchor = Anchor.Centre,
Origin = Anchor.Centre,
2019-02-20 15:52:36 +08:00
Font = OsuFont.GetFont(size: 22, italics: true),
2018-04-13 17:19:50 +08:00
Text = RankPosition.ToString(),
},
},
},
content = new Container
{
RelativeSizeAxes = Axes.Both,
Padding = new MarginPadding { Left = rank_width, },
Children = new Drawable[]
{
new Container
{
RelativeSizeAxes = Axes.Both,
CornerRadius = corner_radius,
Masking = true,
Children = new[]
{
background = new Box
{
RelativeSizeAxes = Axes.Both,
Colour = Color4.Black,
Alpha = background_alpha,
},
},
},
new Container
{
RelativeSizeAxes = Axes.Both,
Padding = new MarginPadding(edge_margin),
Children = new[]
{
avatar = new DelayedLoadWrapper(
2019-03-17 12:43:23 +08:00
innerAvatar = new Avatar(user)
2018-04-13 17:19:50 +08:00
{
RelativeSizeAxes = Axes.Both,
CornerRadius = corner_radius,
Masking = true,
EdgeEffect = new EdgeEffectParameters
{
Type = EdgeEffectType.Shadow,
Radius = 1,
Colour = Color4.Black.Opacity(0.2f),
},
})
{
RelativeSizeAxes = Axes.None,
2018-12-22 14:20:35 +08:00
Size = new Vector2(HEIGHT - edge_margin * 2, HEIGHT - edge_margin * 2),
2018-04-13 17:19:50 +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),
2018-04-13 17:19:50 +08:00
Children = new Drawable[]
{
nameLabel = new OsuSpriteText
{
Text = user.Username,
Font = OsuFont.GetFont(size: 23, weight: FontWeight.Bold, italics: true)
2018-04-13 17:19:50 +08:00
},
new FillFlowContainer
{
Origin = Anchor.BottomLeft,
Anchor = Anchor.BottomLeft,
AutoSizeAxes = Axes.Both,
Direction = FillDirection.Horizontal,
Spacing = new Vector2(10f, 0f),
Children = new Drawable[]
{
flagBadgeContainer = new Container
{
2018-06-04 09:22:44 +08:00
Origin = Anchor.BottomLeft,
Anchor = Anchor.BottomLeft,
2018-04-13 17:19:50 +08:00
Size = new Vector2(87f, 20f),
Masking = true,
Children = new Drawable[]
{
new DrawableFlag(user.Country)
2018-04-13 17:19:50 +08:00
{
Width = 30,
RelativeSizeAxes = Axes.Y,
},
},
},
new FillFlowContainer
{
2018-06-04 09:22:44 +08:00
Origin = Anchor.BottomLeft,
Anchor = Anchor.BottomLeft,
2018-04-13 17:19:50 +08:00
AutoSizeAxes = Axes.Both,
Direction = FillDirection.Horizontal,
Spacing = new Vector2(10f, 0f),
2018-06-04 09:22:44 +08:00
Margin = new MarginPadding { Left = edge_margin },
Children = statisticsLabels
2018-04-13 17:19:50 +08:00
},
},
},
},
},
new FillFlowContainer
{
AutoSizeAxes = Axes.Both,
Anchor = Anchor.TopRight,
Origin = Anchor.TopRight,
Direction = FillDirection.Horizontal,
Spacing = new Vector2(5f, 0f),
Children = new Drawable[]
{
scoreLabel = new GlowingSpriteText(score.TotalScore.ToString(@"N0"), OsuFont.Numeric.With(size: 23), Color4.White, OsuColour.FromHex(@"83ccfa")),
RankContainer = new Container
2018-04-13 17:19:50 +08:00
{
Size = new Vector2(40f, 20f),
Children = new[]
{
2018-12-22 14:20:35 +08:00
scoreRank = new DrawableRank(score.Rank)
2018-04-13 17:19:50 +08:00
{
Anchor = Anchor.Centre,
Origin = Anchor.Centre,
Size = new Vector2(40f)
2018-04-13 17:19:50 +08:00
},
},
},
},
},
modsContainer = new FillFlowContainer<ModIcon>
{
Anchor = Anchor.BottomRight,
Origin = Anchor.BottomRight,
AutoSizeAxes = Axes.Both,
Direction = FillDirection.Horizontal,
2018-12-22 14:20:35 +08:00
ChildrenEnumerable = score.Mods.Select(mod => new ModIcon(mod) { Scale = new Vector2(0.375f) })
2018-04-13 17:19:50 +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()
{
foreach (var d in new[] { avatar, nameLabel, scoreLabel, scoreRank, flagBadgeContainer, modsContainer }.Concat(statisticsLabels))
2018-04-13 17:19:50 +08:00
d.FadeOut();
Alpha = 0;
content.MoveToY(75);
avatar.MoveToX(75);
nameLabel.MoveToX(150);
this.FadeIn(200);
content.MoveToY(0, 800, Easing.OutQuint);
using (BeginDelayedSequence(100, true))
{
avatar.FadeIn(300, Easing.OutQuint);
nameLabel.FadeIn(350, Easing.OutQuint);
avatar.MoveToX(0, 300, Easing.OutQuint);
nameLabel.MoveToX(0, 350, Easing.OutQuint);
using (BeginDelayedSequence(250, true))
{
scoreLabel.FadeIn(200);
scoreRank.FadeIn(200);
using (BeginDelayedSequence(50, true))
{
var drawables = new Drawable[] { flagBadgeContainer, modsContainer }.Concat(statisticsLabels).ToArray();
2018-04-13 17:19:50 +08:00
for (int i = 0; i < drawables.Length; i++)
drawables[i].FadeIn(100 + i * 50);
}
}
}
}
2018-12-22 14:23:32 +08:00
protected virtual IEnumerable<LeaderboardScoreStatistic> GetStatistics(ScoreInfo model) => new[]
{
new LeaderboardScoreStatistic(FontAwesome.Link, "Max Combo", model.MaxCombo.ToString()),
new LeaderboardScoreStatistic(FontAwesome.Crosshairs, "Accuracy", string.Format(model.Accuracy % 1 == 0 ? @"{0:P0}" : @"{0:P2}", model.Accuracy))
2018-12-22 14:23:32 +08:00
};
2018-10-02 11:02:47 +08:00
protected override bool OnHover(HoverEvent e)
2018-04-13 17:19:50 +08:00
{
background.FadeTo(0.5f, 300, Easing.OutQuint);
2018-10-02 11:02:47 +08:00
return base.OnHover(e);
2018-04-13 17:19:50 +08:00
}
2018-10-02 11:02:47 +08:00
protected override void OnHoverLost(HoverLostEvent e)
2018-04-13 17:19:50 +08:00
{
background.FadeTo(background_alpha, 200, Easing.OutQuint);
2018-10-02 11:02:47 +08:00
base.OnHoverLost(e);
2018-04-13 17:19:50 +08:00
}
private class GlowingSpriteText : Container
{
public GlowingSpriteText(string text, FontUsage font, Color4 textColour, Color4 glowColour)
2018-04-13 17:19:50 +08:00
{
AutoSizeAxes = Axes.Both;
Children = new Drawable[]
{
new BufferedContainer
{
Anchor = Anchor.Centre,
Origin = Anchor.Centre,
BlurSigma = new Vector2(4),
CacheDrawnFrameBuffer = true,
RelativeSizeAxes = Axes.Both,
Blending = BlendingMode.Additive,
Size = new Vector2(3f),
Children = new[]
{
new OsuSpriteText
{
Anchor = Anchor.Centre,
Origin = Anchor.Centre,
Font = font.With(fixedWidth: true),
2018-04-13 17:19:50 +08:00
Text = text,
Colour = glowColour,
Shadow = false,
},
},
},
new OsuSpriteText
{
Anchor = Anchor.Centre,
Origin = Anchor.Centre,
Font = font.With(fixedWidth: true),
2018-04-13 17:19:50 +08:00
Text = text,
Colour = textColour,
Shadow = false,
},
};
}
}
2018-06-04 09:26:30 +08:00
private class ScoreComponentLabel : Container, IHasTooltip
2018-04-13 17:19:50 +08:00
{
2018-06-04 09:22:44 +08:00
private const float icon_size = 20;
2018-06-04 09:26:30 +08:00
private readonly string name;
2018-06-04 09:22:44 +08:00
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
2018-06-04 09:26:30 +08:00
public string TooltipText => name;
2018-12-22 14:20:35 +08:00
public ScoreComponentLabel(LeaderboardScoreStatistic statistic)
2018-04-13 17:19:50 +08:00
{
2018-12-22 14:20:35 +08:00
name = 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
2018-04-13 17:19:50 +08:00
{
2018-06-04 09:22:44 +08:00
AutoSizeAxes = Axes.Both,
Direction = FillDirection.Horizontal,
Children = new Drawable[]
2018-04-13 17:19:50 +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 = OsuColour.FromHex(@"3087ac"),
Icon = FontAwesome.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 = OsuColour.FromHex(@"a4edff"),
2018-12-22 14:20:35 +08:00
Icon = statistic.Icon,
2018-06-04 09:22:44 +08:00
},
},
},
new GlowingSpriteText(statistic.Value, OsuFont.GetFont(size: 17, weight: FontWeight.Bold), Color4.White, OsuColour.FromHex(@"83ccfa"))
2018-06-04 09:22:44 +08:00
{
Anchor = Anchor.CentreLeft,
Origin = Anchor.CentreLeft,
},
2018-04-13 17:19:50 +08:00
},
};
}
}
2018-12-22 14:20:35 +08:00
public class LeaderboardScoreStatistic
{
public IconUsage Icon;
2018-12-22 14:20:35 +08:00
public string Value;
public string Name;
public LeaderboardScoreStatistic(IconUsage icon, string name, string value)
2018-12-22 14:20:35 +08:00
{
Icon = icon;
Name = name;
Value = value;
}
}
2018-04-13 17:19:50 +08:00
}
}