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-13 15:40:33 +00:00
using osu.Framework.Allocation ;
using osu.Framework.Graphics ;
2021-12-04 14:33:02 +00:00
using osu.Game.Online.API ;
2018-10-13 15:40:33 +00:00
using osu.Game.Online.API.Requests ;
using osu.Game.Online.API.Requests.Responses ;
2021-12-04 14:33:02 +00:00
using osu.Game.Tests.Visual ;
2018-10-13 15:40:33 +00:00
using osu.Game.Tournament.Components ;
2022-06-17 22:34:09 +00:00
using osu.Game.Tournament.Models ;
2018-10-13 15:40:33 +00:00
2019-06-18 06:28:36 +00:00
namespace osu.Game.Tournament.Tests.Components
2018-10-13 15:40:33 +00:00
{
2020-06-24 08:03:22 +00:00
public partial class TestSceneTournamentBeatmapPanel : TournamentTestScene
2018-10-13 15:40:33 +00:00
{
2021-12-04 14:33:02 +00:00
/// <remarks>
/// Warning: the below API instance is actually the online API, rather than the dummy API provided by the test.
/// It cannot be trivially replaced because setting <see cref="OsuTestScene.UseOnlineAPI"/> to <see langword="true"/> causes <see cref="OsuTestScene.API"/> to no longer be usable.
/// </remarks>
[Resolved]
private IAPIProvider api { get ; set ; } = null ! ;
2018-10-13 15:40:33 +00:00
[BackgroundDependencyLoader]
private void load ( )
{
2021-10-27 08:22:23 +00:00
var req = new GetBeatmapRequest ( new APIBeatmap { OnlineID = 1091460 } ) ;
2018-10-13 15:40:33 +00:00
req . Success + = success ;
2021-12-04 14:33:02 +00:00
api . Queue ( req ) ;
2018-10-13 15:40:33 +00:00
}
2021-10-27 08:22:23 +00:00
private void success ( APIBeatmap beatmap )
2018-10-13 15:40:33 +00:00
{
2022-06-17 22:34:09 +00:00
Add ( new TournamentBeatmapPanel ( new TournamentBeatmap ( beatmap ) )
2018-10-13 15:40:33 +00:00
{
Anchor = Anchor . Centre ,
Origin = Anchor . Centre
} ) ;
}
}
}