1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-23 12:07:25 +08:00
osu-lazer/osu.Game/Screens/Ranking/Expanded/ExpandedPanelTopContent.cs

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

85 lines
2.7 KiB
C#
Raw Normal View History

2020-03-17 15:59:34 +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
2020-03-17 16:01:38 +08:00
using osu.Framework.Allocation;
2022-07-22 18:06:31 +08:00
using osu.Framework.Audio;
using osu.Framework.Audio.Sample;
2020-03-17 16:01:38 +08:00
using osu.Framework.Graphics;
2020-03-17 15:59:34 +08:00
using osu.Framework.Graphics.Containers;
2020-03-17 16:01:38 +08:00
using osu.Game.Graphics;
using osu.Game.Graphics.Sprites;
using osu.Game.Online.API.Requests.Responses;
2020-03-17 16:01:38 +08:00
using osu.Game.Users.Drawables;
using osuTK;
2020-03-17 15:59:34 +08:00
namespace osu.Game.Screens.Ranking.Expanded
{
2020-03-17 16:35:14 +08:00
/// <summary>
/// The content that appears in the middle section of the <see cref="ScorePanel"/>.
/// </summary>
2020-03-17 15:59:34 +08:00
public class ExpandedPanelTopContent : CompositeDrawable
{
private readonly APIUser user;
2020-03-17 16:01:38 +08:00
2022-07-22 18:06:31 +08:00
private Sample appearanceSample;
private readonly bool playAppearanceSound;
2020-03-17 16:35:14 +08:00
/// <summary>
/// Creates a new <see cref="ExpandedPanelTopContent"/>.
/// </summary>
/// <param name="user">The <see cref="APIUser"/> to display.</param>
2022-07-22 18:06:31 +08:00
/// <param name="playAppearanceSound">Whether the appearance sample should play</param>
public ExpandedPanelTopContent(APIUser user, bool playAppearanceSound = false)
2020-03-17 15:59:34 +08:00
{
2020-03-17 16:01:38 +08:00
this.user = user;
2022-07-22 18:06:31 +08:00
this.playAppearanceSound = playAppearanceSound;
2020-03-17 16:01:38 +08:00
Anchor = Anchor.TopCentre;
Origin = Anchor.Centre;
AutoSizeAxes = Axes.Both;
}
[BackgroundDependencyLoader]
2022-07-22 18:06:31 +08:00
private void load(AudioManager audio)
2020-03-17 16:01:38 +08:00
{
2022-07-22 18:06:31 +08:00
appearanceSample = audio.Samples.Get(@"Results/score-panel-top-appear");
2020-03-17 16:01:38 +08:00
InternalChild = new FillFlowContainer
{
AutoSizeAxes = Axes.Both,
Direction = FillDirection.Vertical,
Children = new Drawable[]
{
new UpdateableAvatar(user)
{
Anchor = Anchor.TopCentre,
Origin = Anchor.TopCentre,
Size = new Vector2(80),
CornerRadius = 20,
CornerExponent = 2.5f,
Masking = true,
},
new OsuSpriteText
{
Anchor = Anchor.TopCentre,
Origin = Anchor.TopCentre,
Text = user.Username,
Font = OsuFont.Torus.With(size: 16, weight: FontWeight.SemiBold)
}
}
};
2020-03-17 15:59:34 +08:00
}
2022-07-22 18:06:31 +08:00
protected override void LoadComplete()
{
base.LoadComplete();
if (playAppearanceSound)
appearanceSample?.Play();
}
2020-03-17 15:59:34 +08:00
}
}