mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 19:57:24 +08:00
414e704d37
Co-Authored-By: Bartłomiej Dach <dach.bartlomiej@gmail.com>
67 lines
2.6 KiB
C#
67 lines
2.6 KiB
C#
// 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;
|
|
using osu.Framework.Graphics;
|
|
using osu.Framework.Graphics.Containers;
|
|
using osu.Game.Graphics;
|
|
using osu.Game.Tournament.Models;
|
|
using osu.Game.Users;
|
|
using osuTK;
|
|
using osuTK.Graphics;
|
|
|
|
namespace osu.Game.Tournament.Components
|
|
{
|
|
public class DrawableTeamWithPlayers : CompositeDrawable
|
|
{
|
|
public DrawableTeamWithPlayers(TournamentTeam team, TeamColour colour)
|
|
{
|
|
AutoSizeAxes = Axes.Both;
|
|
|
|
InternalChildren = new Drawable[]
|
|
{
|
|
new FillFlowContainer
|
|
{
|
|
AutoSizeAxes = Axes.Both,
|
|
Direction = FillDirection.Vertical,
|
|
Spacing = new Vector2(30),
|
|
Children = new Drawable[]
|
|
{
|
|
new DrawableTeamTitleWithHeader(team, colour),
|
|
new FillFlowContainer
|
|
{
|
|
AutoSizeAxes = Axes.Both,
|
|
Direction = FillDirection.Horizontal,
|
|
Padding = new MarginPadding { Left = 10 },
|
|
Spacing = new Vector2(30),
|
|
Children = new Drawable[]
|
|
{
|
|
new FillFlowContainer
|
|
{
|
|
Direction = FillDirection.Vertical,
|
|
AutoSizeAxes = Axes.Both,
|
|
ChildrenEnumerable = team?.Players.Select(createPlayerText).Take(5) ?? Enumerable.Empty<Drawable>()
|
|
},
|
|
new FillFlowContainer
|
|
{
|
|
Direction = FillDirection.Vertical,
|
|
AutoSizeAxes = Axes.Both,
|
|
ChildrenEnumerable = team?.Players.Select(createPlayerText).Skip(5) ?? Enumerable.Empty<Drawable>()
|
|
},
|
|
}
|
|
},
|
|
}
|
|
},
|
|
};
|
|
|
|
TournamentSpriteText createPlayerText(User p) =>
|
|
new TournamentSpriteText
|
|
{
|
|
Text = p.Username,
|
|
Font = OsuFont.Torus.With(size: 24, weight: FontWeight.SemiBold),
|
|
Colour = Color4.White,
|
|
};
|
|
}
|
|
}
|
|
}
|