mirror of
https://github.com/osukey/osukey.git
synced 2025-05-03 04:37:30 +09:00
75 lines
2.5 KiB
C#
75 lines
2.5 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 System.Collections.Generic;
|
|
using System.Linq;
|
|
using osu.Framework.Graphics;
|
|
using osu.Framework.Graphics.Containers;
|
|
using osu.Game.Overlays.SearchableList;
|
|
using osu.Game.Screens.Multi.Components;
|
|
using osu.Game.Users;
|
|
using OpenTK;
|
|
|
|
namespace osu.Game.Screens.Multi.Screens.Match
|
|
{
|
|
public class Participants : Container
|
|
{
|
|
private readonly ParticipantCount count;
|
|
private readonly FillFlowContainer<UserPanel> usersFlow;
|
|
|
|
public IEnumerable<User> Users
|
|
{
|
|
set {
|
|
usersFlow.Children = value.Select(u => new UserPanel(u)
|
|
{
|
|
Anchor = Anchor.TopCentre,
|
|
Origin = Anchor.TopCentre,
|
|
Width = 300,
|
|
OnLoadComplete = d => d.FadeInFromZero(60),
|
|
}).ToList();
|
|
|
|
count.Count = value.Count();
|
|
}
|
|
}
|
|
|
|
public int? Max
|
|
{
|
|
set => count.Max = value;
|
|
}
|
|
|
|
public Participants()
|
|
{
|
|
Child = new Container
|
|
{
|
|
RelativeSizeAxes = Axes.Both,
|
|
Padding = new MarginPadding { Horizontal = SearchableListOverlay.WIDTH_PADDING },
|
|
Children = new Drawable[]
|
|
{
|
|
new ScrollContainer
|
|
{
|
|
RelativeSizeAxes = Axes.Both,
|
|
Padding = new MarginPadding { Top = 10 },
|
|
Children = new Drawable[]
|
|
{
|
|
count = new ParticipantCount
|
|
{
|
|
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 },
|
|
LayoutDuration = 200,
|
|
LayoutEasing = Easing.OutQuint,
|
|
},
|
|
},
|
|
},
|
|
},
|
|
};
|
|
}
|
|
}
|
|
}
|