1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-23 10:47:24 +08:00
osu-lazer/osu.Game/Screens/Tournament/GroupsContainer.cs

115 lines
3.0 KiB
C#
Raw Normal View History

2017-02-27 14:02:38 +08:00
using OpenTK;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace osu.Game.Screens.Tournament
{
public class GroupsContainer : Container
{
private FlowContainer<Group> topGroups;
private FlowContainer<Group> bottomGroups;
private List<Group> allGroups = new List<Group>();
2017-02-27 22:09:26 +08:00
private int maxTeams;
public GroupsContainer(int numGroups, int teamsPerGroup)
2017-02-27 14:02:38 +08:00
{
2017-02-27 22:09:26 +08:00
maxTeams = teamsPerGroup;
2017-02-27 14:02:38 +08:00
char nextGroupName = 'A';
Children = new[]
{
topGroups = new FlowContainer<Group>()
{
Anchor = Anchor.TopCentre,
Origin = Anchor.TopCentre,
AutoSizeAxes = Axes.Both,
Spacing = new Vector2(7f, 0)
},
bottomGroups = new FlowContainer<Group>()
{
Anchor = Anchor.BottomCentre,
Origin = Anchor.BottomCentre,
AutoSizeAxes = Axes.Both,
Spacing = new Vector2(7f, 0)
}
};
for (int i = 0; i < numGroups; i++)
{
Group g = new Group(nextGroupName.ToString());
allGroups.Add(g);
nextGroupName++;
if (i < (int)Math.Ceiling(numGroups / 2f))
topGroups.Add(g);
else
bottomGroups.Add(g);
}
}
public void AddTeam(Team team)
{
foreach (Group g in allGroups)
2017-02-27 14:02:38 +08:00
{
if (g.TeamsCount == maxTeams)
2017-02-27 14:02:38 +08:00
continue;
g.AddTeam(team);
2017-02-27 14:02:38 +08:00
break;
}
}
public bool ContainsTeam(string fullName)
{
return allGroups.Any(g => g.ContainsTeam(fullName));
}
2017-02-27 14:02:38 +08:00
public bool RemoveTeam(Team team)
{
foreach (Group g in allGroups)
2017-02-27 14:02:38 +08:00
{
if (g.RemoveTeam(team))
2017-02-27 14:02:38 +08:00
return true;
}
return false;
}
public void ClearTeams()
{
for (int i = 0; i < allGroups.Count; i++)
{
allGroups[i].ClearTeams();
}
}
public string ToStringRepresentation()
{
StringBuilder sb = new StringBuilder();
foreach (Group g in allGroups)
{
if (g != allGroups.First())
sb.AppendLine();
sb.AppendLine($"Group {g.GroupName}");
sb.Append(g.ToStringRepresentation());
}
return sb.ToString();
}
2017-02-27 14:02:38 +08:00
}
}