1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-13 03:57:24 +08:00
osu-lazer/osu.Game.Tournament/Screens/Drawings/Components/GroupContainer.cs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

108 lines
2.8 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
2022-06-17 15:37:17 +08:00
#nullable disable
2017-03-08 14:50:52 +08:00
using System;
2017-02-27 14:02:38 +08:00
using System.Collections.Generic;
using System.Linq;
using System.Text;
2017-03-03 19:42:22 +08:00
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
2019-06-18 13:51:48 +08:00
using osu.Game.Tournament.Models;
2018-11-20 15:51:59 +08:00
using osuTK;
2018-04-13 17:19:50 +08:00
namespace osu.Game.Tournament.Screens.Drawings.Components
2017-02-27 14:02:38 +08:00
{
2017-03-03 19:46:07 +08:00
public class GroupContainer : Container
2017-02-27 14:02:38 +08:00
{
private readonly List<Group> groups = new List<Group>();
2018-04-13 17:19:50 +08:00
private readonly int maxTeams;
private int currentGroup;
2018-04-13 17:19:50 +08:00
2017-05-02 13:21:22 +08:00
public GroupContainer(int numGroups, int teamsPerGroup)
2017-02-27 14:02:38 +08:00
{
2017-03-03 19:42:22 +08:00
FlowContainer<Group> bottomGroups;
FlowContainer<Group> topGroups;
2018-04-13 17:19:50 +08:00
2017-02-27 22:09:26 +08:00
maxTeams = teamsPerGroup;
2018-04-13 17:19:50 +08:00
2017-02-27 14:02:38 +08:00
char nextGroupName = 'A';
2018-04-13 17:19:50 +08:00
2017-02-27 14:02:38 +08:00
Children = new[]
{
2017-03-03 19:42:22 +08:00
topGroups = new FillFlowContainer<Group>
2017-03-03 12:17:06 +08:00
{
Anchor = Anchor.TopCentre,
Origin = Anchor.TopCentre,
2018-04-13 17:19:50 +08:00
2017-03-03 12:17:06 +08:00
AutoSizeAxes = Axes.Both,
2018-04-13 17:19:50 +08:00
2017-03-03 12:17:06 +08:00
Spacing = new Vector2(7f, 0)
},
2017-03-03 19:42:22 +08:00
bottomGroups = new FillFlowContainer<Group>
2017-03-03 12:17:06 +08:00
{
Anchor = Anchor.BottomCentre,
Origin = Anchor.BottomCentre,
2018-04-13 17:19:50 +08:00
2017-03-03 12:17:06 +08:00
AutoSizeAxes = Axes.Both,
2018-04-13 17:19:50 +08:00
2017-03-03 12:17:06 +08:00
Spacing = new Vector2(7f, 0)
}
};
2018-04-13 17:19:50 +08:00
2017-02-27 14:02:38 +08:00
for (int i = 0; i < numGroups; i++)
{
Group g = new Group(nextGroupName.ToString());
2018-04-13 17:19:50 +08:00
2017-03-03 19:42:22 +08:00
groups.Add(g);
2017-02-27 14:02:38 +08:00
nextGroupName++;
2018-04-13 17:19:50 +08:00
if (i < (int)MathF.Ceiling(numGroups / 2f))
2017-02-27 14:02:38 +08:00
topGroups.Add(g);
else
bottomGroups.Add(g);
}
}
2018-04-13 17:19:50 +08:00
public void AddTeam(TournamentTeam team)
2017-02-27 14:02:38 +08:00
{
2017-03-03 19:42:22 +08:00
if (groups[currentGroup].TeamsCount == maxTeams)
return;
2018-04-13 17:19:50 +08:00
2017-05-02 13:21:22 +08:00
groups[currentGroup].AddTeam(team);
2018-04-13 17:19:50 +08:00
2017-03-03 19:42:22 +08:00
currentGroup = (currentGroup + 1) % groups.Count;
2017-02-27 14:02:38 +08:00
}
2018-04-13 17:19:50 +08:00
public bool ContainsTeam(string fullName)
{
2017-03-03 19:42:22 +08:00
return groups.Any(g => g.ContainsTeam(fullName));
}
2018-04-13 17:19:50 +08:00
public void ClearTeams()
2017-02-27 14:02:38 +08:00
{
2017-03-03 19:42:22 +08:00
foreach (Group g in groups)
g.ClearTeams();
2018-04-13 17:19:50 +08:00
currentGroup = 0;
2017-02-27 14:02:38 +08:00
}
2018-04-13 17:19:50 +08:00
2017-03-03 19:42:22 +08:00
public string GetStringRepresentation()
{
StringBuilder sb = new StringBuilder();
2018-04-13 17:19:50 +08:00
2017-03-03 19:42:22 +08:00
foreach (Group g in groups)
{
2017-03-03 19:42:22 +08:00
if (g != groups.First())
sb.AppendLine();
sb.AppendLine($"Group {g.GroupName}");
2017-03-03 19:42:22 +08:00
sb.Append(g.GetStringRepresentation());
}
2018-04-13 17:19:50 +08:00
return sb.ToString();
}
2017-02-27 14:02:38 +08:00
}
}