2018-10-14 17:00:28 +08:00
|
|
|
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
|
|
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
|
2018-10-14 04:19:50 +08:00
|
|
|
using System.Linq;
|
2018-10-16 14:20:12 +08:00
|
|
|
using osu.Framework.Allocation;
|
2018-11-06 19:13:04 +08:00
|
|
|
using osu.Framework.Configuration;
|
2018-10-18 01:18:09 +08:00
|
|
|
using osu.Framework.Graphics;
|
2018-11-06 19:13:04 +08:00
|
|
|
using osu.Game.Tournament.Screens.Ladder.Components;
|
2018-10-14 04:19:50 +08:00
|
|
|
using osu.Game.Tournament.Screens.TeamIntro;
|
|
|
|
|
|
|
|
namespace osu.Game.Tournament.Tests
|
|
|
|
{
|
|
|
|
public class TestCaseTeamIntro : LadderTestCase
|
|
|
|
{
|
2018-11-06 19:13:04 +08:00
|
|
|
[Cached]
|
|
|
|
private readonly Bindable<MatchPairing> currentMatch = new Bindable<MatchPairing>();
|
|
|
|
|
2018-10-16 14:20:12 +08:00
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
private void load()
|
2018-10-14 04:19:50 +08:00
|
|
|
{
|
2018-11-06 19:13:04 +08:00
|
|
|
var pairing = new MatchPairing();
|
|
|
|
pairing.Team1.Value = Ladder.Teams.FirstOrDefault(t => t.Acronym == "USA");
|
|
|
|
pairing.Team2.Value = Ladder.Teams.FirstOrDefault(t => t.Acronym == "JPN");
|
|
|
|
pairing.Grouping.Value = Ladder.Groupings.FirstOrDefault(g => g.Name == "Finals");
|
|
|
|
currentMatch.Value = pairing;
|
2018-10-14 04:19:50 +08:00
|
|
|
|
2018-11-06 19:18:11 +08:00
|
|
|
Add(new TeamIntroScreen
|
2018-10-18 01:18:09 +08:00
|
|
|
{
|
|
|
|
FillMode = FillMode.Fit,
|
|
|
|
FillAspectRatio = 16 / 9f
|
|
|
|
});
|
2018-10-14 04:19:50 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|