mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 16:47:52 +08:00
114 lines
3.7 KiB
C#
114 lines
3.7 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.
|
|
|
|
#nullable disable
|
|
|
|
using osu.Framework.Bindables;
|
|
using osu.Framework.Graphics;
|
|
using osu.Game.Tests.Visual;
|
|
using osu.Game.Tournament.Components;
|
|
using osu.Game.Tournament.Models;
|
|
using osu.Game.Tournament.Screens.Drawings.Components;
|
|
using osu.Game.Tournament.Screens.Gameplay.Components;
|
|
using osu.Game.Tournament.Screens.Ladder.Components;
|
|
|
|
namespace osu.Game.Tournament.Tests.Components
|
|
{
|
|
public partial class TestSceneDrawableTournamentTeam : OsuGridTestScene
|
|
{
|
|
public TestSceneDrawableTournamentTeam()
|
|
: base(4, 3)
|
|
{
|
|
var team = new TournamentTeam
|
|
{
|
|
FlagName = { Value = "AU" },
|
|
FullName = { Value = "Australia" },
|
|
Players =
|
|
{
|
|
new TournamentUser { Username = "ASecretBox" },
|
|
new TournamentUser { Username = "Dereban" },
|
|
new TournamentUser { Username = "mReKk" },
|
|
new TournamentUser { Username = "uyghti" },
|
|
new TournamentUser { Username = "Parkes" },
|
|
new TournamentUser { Username = "Shiroha" },
|
|
new TournamentUser { Username = "Jordan The Bear" },
|
|
}
|
|
};
|
|
|
|
var match = new TournamentMatch { Team1 = { Value = team } };
|
|
|
|
int i = 0;
|
|
|
|
Cell(i++).AddRange(new Drawable[]
|
|
{
|
|
new TournamentSpriteText { Text = "DrawableTeamFlag" },
|
|
new DrawableTeamFlag(team)
|
|
{
|
|
Anchor = Anchor.Centre,
|
|
Origin = Anchor.Centre,
|
|
}
|
|
});
|
|
|
|
Cell(i++).AddRange(new Drawable[]
|
|
{
|
|
new TournamentSpriteText { Text = "DrawableTeamTitle" },
|
|
new DrawableTeamTitle(team)
|
|
{
|
|
Anchor = Anchor.Centre,
|
|
Origin = Anchor.Centre,
|
|
}
|
|
});
|
|
|
|
Cell(i++).AddRange(new Drawable[]
|
|
{
|
|
new TournamentSpriteText { Text = "DrawableTeamTitleWithHeader" },
|
|
new DrawableTeamTitleWithHeader(team, TeamColour.Red)
|
|
{
|
|
Anchor = Anchor.Centre,
|
|
Origin = Anchor.Centre,
|
|
}
|
|
});
|
|
|
|
Cell(i++).AddRange(new Drawable[]
|
|
{
|
|
new TournamentSpriteText { Text = "DrawableMatchTeam" },
|
|
new DrawableMatchTeam(team, match, false)
|
|
{
|
|
Anchor = Anchor.Centre,
|
|
Origin = Anchor.Centre,
|
|
}
|
|
});
|
|
|
|
Cell(i++).AddRange(new Drawable[]
|
|
{
|
|
new TournamentSpriteText { Text = "TeamWithPlayers" },
|
|
new DrawableTeamWithPlayers(team, TeamColour.Blue)
|
|
{
|
|
Anchor = Anchor.Centre,
|
|
Origin = Anchor.Centre,
|
|
}
|
|
});
|
|
|
|
Cell(i++).AddRange(new Drawable[]
|
|
{
|
|
new TournamentSpriteText { Text = "GroupTeam" },
|
|
new GroupTeam(team)
|
|
{
|
|
Anchor = Anchor.Centre,
|
|
Origin = Anchor.Centre,
|
|
}
|
|
});
|
|
|
|
Cell(i).AddRange(new Drawable[]
|
|
{
|
|
new TournamentSpriteText { Text = "TeamDisplay" },
|
|
new TeamDisplay(team, TeamColour.Red, new Bindable<int?>(2), 6)
|
|
{
|
|
Anchor = Anchor.Centre,
|
|
Origin = Anchor.Centre,
|
|
}
|
|
});
|
|
}
|
|
}
|
|
}
|