mirror of
https://github.com/ppy/osu.git
synced 2024-11-12 03:17:45 +08:00
55 lines
1.8 KiB
C#
55 lines
1.8 KiB
C#
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
using osu.Framework.Graphics;
|
|
using osu.Framework.Graphics.Containers;
|
|
using osu.Game.Graphics.Containers;
|
|
using osu.Game.Online.Chat;
|
|
using osu.Game.Online.Multiplayer;
|
|
using osu.Game.Users;
|
|
using osuTK;
|
|
|
|
namespace osu.Game.Screens.Multi.Match.Components
|
|
{
|
|
public class HostInfo : CompositeDrawable
|
|
{
|
|
public HostInfo(Room room)
|
|
{
|
|
AutoSizeAxes = Axes.X;
|
|
Height = 50;
|
|
|
|
LinkFlowContainer linkContainer;
|
|
|
|
InternalChild = new FillFlowContainer
|
|
{
|
|
AutoSizeAxes = Axes.Both,
|
|
Direction = FillDirection.Horizontal,
|
|
Spacing = new Vector2(5, 0),
|
|
Children = new Drawable[]
|
|
{
|
|
new UpdateableAvatar
|
|
{
|
|
Size = new Vector2(50),
|
|
User = room.Host.Value
|
|
},
|
|
new FillFlowContainer
|
|
{
|
|
Anchor = Anchor.CentreLeft,
|
|
Origin = Anchor.CentreLeft,
|
|
AutoSizeAxes = Axes.Both,
|
|
Direction = FillDirection.Vertical,
|
|
Child = linkContainer = new LinkFlowContainer { AutoSizeAxes = Axes.Both }
|
|
}
|
|
}
|
|
};
|
|
|
|
if (room.Host.Value != null)
|
|
{
|
|
linkContainer.AddText("hosted by");
|
|
linkContainer.NewLine();
|
|
linkContainer.AddLink(room.Host.Value.Username, null, LinkAction.OpenUserProfile, room.Host.Value.Id.ToString(), "View Profile", s => s.Font = "Exo2.0-BoldItalic");
|
|
}
|
|
}
|
|
}
|
|
}
|