1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-23 20:07:26 +08:00
osu-lazer/osu.Game/Screens/Multi/Lounge/Components/ParticipantInfo.cs

115 lines
4.1 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
2018-12-26 20:58:14 +08:00
using Humanizer;
2018-04-13 17:19:50 +08:00
using osu.Framework.Allocation;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using osu.Game.Graphics;
2018-12-20 17:04:35 +08:00
using osu.Game.Graphics.Containers;
2018-04-13 17:19:50 +08:00
using osu.Game.Graphics.Sprites;
2018-12-20 17:04:35 +08:00
using osu.Game.Online.Chat;
2018-04-13 17:19:50 +08:00
using osu.Game.Users;
2018-11-20 15:51:59 +08:00
using osuTK;
2018-04-13 17:19:50 +08:00
2018-12-10 18:20:41 +08:00
namespace osu.Game.Screens.Multi.Lounge.Components
2018-04-13 17:19:50 +08:00
{
2019-02-05 18:00:01 +08:00
public class ParticipantInfo : MultiplayerComposite
2018-04-13 17:19:50 +08:00
{
2018-12-26 19:31:04 +08:00
public ParticipantInfo()
2018-04-13 17:19:50 +08:00
{
RelativeSizeAxes = Axes.X;
Height = 15f;
2019-02-05 18:00:01 +08:00
}
2018-04-13 17:19:50 +08:00
2019-02-05 18:00:01 +08:00
[BackgroundDependencyLoader]
private void load(OsuColour colours)
{
OsuSpriteText summary;
OsuSpriteText levelRangeHigher;
OsuSpriteText levelRangeLower;
Container flagContainer;
2018-12-20 17:04:35 +08:00
LinkFlowContainer hostText;
2019-02-05 18:00:01 +08:00
InternalChildren = new Drawable[]
2018-04-13 17:19:50 +08:00
{
new FillFlowContainer
{
AutoSizeAxes = Axes.X,
RelativeSizeAxes = Axes.Y,
Direction = FillDirection.Horizontal,
Spacing = new Vector2(5f, 0f),
Children = new Drawable[]
{
flagContainer = new Container
{
Width = 22f,
RelativeSizeAxes = Axes.Y,
},
2018-12-26 19:31:04 +08:00
/*new Container //todo: team banners
2018-04-13 17:19:50 +08:00
{
Width = 38f,
RelativeSizeAxes = Axes.Y,
CornerRadius = 2f,
Masking = true,
Children = new[]
{
new Box
{
RelativeSizeAxes = Axes.Both,
Colour = OsuColour.FromHex(@"ad387e"),
},
},
2018-12-26 19:31:04 +08:00
},*/
2018-12-20 17:04:35 +08:00
hostText = new LinkFlowContainer
2018-04-13 17:19:50 +08:00
{
Anchor = Anchor.CentreLeft,
Origin = Anchor.CentreLeft,
2018-12-20 17:04:35 +08:00
AutoSizeAxes = Axes.Both
}
2018-04-13 17:19:50 +08:00
},
},
2019-02-05 18:00:01 +08:00
new FillFlowContainer
2018-04-13 17:19:50 +08:00
{
Anchor = Anchor.CentreRight,
Origin = Anchor.CentreRight,
AutoSizeAxes = Axes.Both,
Direction = FillDirection.Horizontal,
2019-02-05 18:00:01 +08:00
Colour = colours.Gray9,
2018-04-13 17:19:50 +08:00
Children = new[]
{
2018-12-26 20:58:14 +08:00
summary = new OsuSpriteText
2018-04-13 17:19:50 +08:00
{
2018-12-26 19:31:04 +08:00
Text = "0 participants",
Font = OsuFont.GetFont(size: 14)
2018-12-26 19:31:04 +08:00
}
2018-04-13 17:19:50 +08:00
},
},
};
Host.BindValueChanged(v =>
{
2018-12-20 17:04:35 +08:00
hostText.Clear();
flagContainer.Clear();
2018-12-20 17:04:35 +08:00
if (v != null)
{
hostText.AddText("hosted by ");
hostText.AddLink(v.Username, null, LinkAction.OpenUserProfile, v.Id.ToString(), "Open profile",
s => s.Font = OsuFont.GetFont(Typeface.Exo, weight: FontWeight.Medium, italics: true));
flagContainer.Child = new DrawableFlag(v.Country) { RelativeSizeAxes = Axes.Both };
}
2019-02-05 18:00:01 +08:00
}, true);
2019-02-05 18:00:01 +08:00
ParticipantCount.BindValueChanged(v => summary.Text = $"{v:#,0}{" participant".Pluralize(v == 1)}", true);
2018-12-26 20:58:14 +08:00
2018-12-26 19:31:04 +08:00
/*Participants.BindValueChanged(v =>
{
var ranks = v.Select(u => u.Statistics.Ranks.Global);
levelRangeLower.Text = ranks.Min().ToString();
levelRangeHigher.Text = ranks.Max().ToString();
2018-12-26 19:31:04 +08:00
});*/
2018-04-13 17:19:50 +08:00
}
}
}