2019-03-04 04:24:19 +00:00
|
|
|
|
// 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-10-14 09:00:28 +00:00
|
|
|
|
|
2018-10-13 20:19:50 +00:00
|
|
|
|
using System.Linq;
|
2018-10-16 06:20:12 +00:00
|
|
|
|
using osu.Framework.Allocation;
|
2018-10-17 17:18:09 +00:00
|
|
|
|
using osu.Framework.Graphics;
|
2019-06-18 05:51:48 +00:00
|
|
|
|
using osu.Game.Tournament.Models;
|
2018-10-13 20:19:50 +00:00
|
|
|
|
using osu.Game.Tournament.Screens.TeamIntro;
|
|
|
|
|
|
2019-06-18 06:28:36 +00:00
|
|
|
|
namespace osu.Game.Tournament.Tests.Screens
|
2018-10-13 20:19:50 +00:00
|
|
|
|
{
|
2023-07-24 09:22:32 +00:00
|
|
|
|
public partial class TestSceneTeamIntroScreen : TournamentScreenTestScene
|
2018-10-13 20:19:50 +00:00
|
|
|
|
{
|
2018-11-06 11:13:04 +00:00
|
|
|
|
[Cached]
|
2019-11-08 10:35:55 +00:00
|
|
|
|
private readonly LadderInfo ladder = new LadderInfo();
|
2018-11-06 11:13:04 +00:00
|
|
|
|
|
2018-10-16 06:20:12 +00:00
|
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
|
private void load()
|
2018-10-13 20:19:50 +00:00
|
|
|
|
{
|
2021-06-01 05:33:21 +00:00
|
|
|
|
ladder.CurrentMatch.Value = new TournamentMatch
|
|
|
|
|
{
|
|
|
|
|
Team1 = { Value = Ladder.Teams.FirstOrDefault(t => t.Acronym.Value == "USA") },
|
|
|
|
|
Team2 = { Value = Ladder.Teams.FirstOrDefault(t => t.Acronym.Value == "JPN") },
|
|
|
|
|
Round = { Value = Ladder.Rounds.FirstOrDefault(g => g.Name.Value == "Finals") }
|
|
|
|
|
};
|
2018-10-13 20:19:50 +00:00
|
|
|
|
|
2018-11-06 11:18:11 +00:00
|
|
|
|
Add(new TeamIntroScreen
|
2018-10-17 17:18:09 +00:00
|
|
|
|
{
|
|
|
|
|
FillMode = FillMode.Fit,
|
|
|
|
|
FillAspectRatio = 16 / 9f
|
|
|
|
|
});
|
2018-10-13 20:19:50 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|