1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-24 06:07:25 +08:00
osu-lazer/osu.Game/Screens/Multi/Match/Components/Participants.cs

73 lines
2.5 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.
using System.Linq;
2019-02-05 18:00:01 +08:00
using osu.Framework.Allocation;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using osu.Game.Graphics.Containers;
using osu.Game.Overlays.SearchableList;
using osu.Game.Screens.Multi.Components;
using osu.Game.Users;
2018-11-20 15:51:59 +08:00
using osuTK;
2018-12-10 18:20:41 +08:00
namespace osu.Game.Screens.Multi.Match.Components
{
2019-02-05 18:00:01 +08:00
public class Participants : MultiplayerComposite
{
2019-02-05 18:00:01 +08:00
[BackgroundDependencyLoader]
private void load()
{
2018-12-07 15:20:05 +08:00
FillFlowContainer<UserPanel> usersFlow;
InternalChild = new Container
{
RelativeSizeAxes = Axes.Both,
Padding = new MarginPadding { Horizontal = SearchableListOverlay.WIDTH_PADDING },
Children = new Drawable[]
{
new OsuScrollContainer
{
RelativeSizeAxes = Axes.Both,
Padding = new MarginPadding { Top = 10 },
Children = new Drawable[]
{
2019-02-05 18:00:01 +08:00
new ParticipantCountDisplay
{
Anchor = Anchor.TopRight,
Origin = Anchor.TopRight,
},
usersFlow = new FillFlowContainer<UserPanel>
{
RelativeSizeAxes = Axes.X,
AutoSizeAxes = Axes.Y,
Spacing = new Vector2(5),
Padding = new MarginPadding { Top = 40 },
2018-05-29 14:53:30 +08:00
LayoutDuration = 200,
LayoutEasing = Easing.OutQuint,
},
},
},
},
};
2018-12-07 15:20:05 +08:00
Participants.BindValueChanged(participants =>
2018-12-07 15:20:05 +08:00
{
2019-03-17 12:43:23 +08:00
usersFlow.Children = participants.NewValue.Select(u =>
2018-12-07 15:20:05 +08:00
{
2019-03-17 12:43:23 +08:00
var panel = new UserPanel(u)
{
Anchor = Anchor.TopCentre,
Origin = Anchor.TopCentre,
Width = 300,
};
panel.OnLoadComplete += d => d.FadeInFromZero(60);
return panel;
2018-12-07 15:20:05 +08:00
}).ToList();
}, true);
}
}
}