2021-06-25 12:02:19 +08: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.
|
|
|
|
|
|
|
|
using System;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
using osu.Framework.Allocation;
|
|
|
|
using osu.Framework.Bindables;
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
using osu.Game.Online.Rooms;
|
2021-08-12 19:08:14 +08:00
|
|
|
using osu.Game.Overlays;
|
2021-06-25 12:02:19 +08:00
|
|
|
using osu.Game.Screens.OnlinePlay;
|
|
|
|
|
|
|
|
namespace osu.Game.Tests.Visual.OnlinePlay
|
|
|
|
{
|
|
|
|
/// <summary>
|
2021-06-25 17:07:47 +08:00
|
|
|
/// Contains the basic dependencies of online play test scenes.
|
2021-06-25 12:02:19 +08:00
|
|
|
/// </summary>
|
2021-06-25 19:15:30 +08:00
|
|
|
public class OnlinePlayTestSceneDependencies : IReadOnlyDependencyContainer, IOnlinePlayTestSceneDependencies
|
2021-06-25 12:02:19 +08:00
|
|
|
{
|
|
|
|
public Bindable<Room> SelectedRoom { get; }
|
|
|
|
public IRoomManager RoomManager { get; }
|
|
|
|
public OngoingOperationTracker OngoingOperationTracker { get; }
|
|
|
|
public OnlinePlayBeatmapAvailabilityTracker AvailabilityTracker { get; }
|
2021-10-27 15:10:22 +08:00
|
|
|
public TestRoomRequestsHandler RequestsHandler { get; }
|
2021-06-25 12:02:19 +08:00
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// All cached dependencies which are also <see cref="Drawable"/> components.
|
|
|
|
/// </summary>
|
|
|
|
public IReadOnlyList<Drawable> DrawableComponents => drawableComponents;
|
|
|
|
|
|
|
|
private readonly List<Drawable> drawableComponents = new List<Drawable>();
|
|
|
|
private readonly DependencyContainer dependencies;
|
|
|
|
|
2021-06-25 19:11:38 +08:00
|
|
|
public OnlinePlayTestSceneDependencies()
|
2021-06-25 12:02:19 +08:00
|
|
|
{
|
|
|
|
SelectedRoom = new Bindable<Room>();
|
2021-10-28 13:29:49 +08:00
|
|
|
RequestsHandler = new TestRoomRequestsHandler();
|
2021-06-25 12:02:19 +08:00
|
|
|
OngoingOperationTracker = new OngoingOperationTracker();
|
|
|
|
AvailabilityTracker = new OnlinePlayBeatmapAvailabilityTracker();
|
2021-10-28 13:29:49 +08:00
|
|
|
RoomManager = CreateRoomManager();
|
2021-06-25 12:02:19 +08:00
|
|
|
|
|
|
|
dependencies = new DependencyContainer(new CachedModelDependencyContainer<Room>(null) { Model = { BindTarget = SelectedRoom } });
|
|
|
|
|
2021-10-27 15:10:22 +08:00
|
|
|
CacheAs(RequestsHandler);
|
2021-06-25 12:02:19 +08:00
|
|
|
CacheAs(SelectedRoom);
|
|
|
|
CacheAs(RoomManager);
|
|
|
|
CacheAs(OngoingOperationTracker);
|
|
|
|
CacheAs(AvailabilityTracker);
|
2021-08-12 19:08:14 +08:00
|
|
|
CacheAs(new OverlayColourProvider(OverlayColourScheme.Plum));
|
2021-06-25 12:02:19 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
public object Get(Type type)
|
|
|
|
=> dependencies.Get(type);
|
|
|
|
|
|
|
|
public object Get(Type type, CacheInfo info)
|
|
|
|
=> dependencies.Get(type, info);
|
|
|
|
|
|
|
|
public void Inject<T>(T instance)
|
|
|
|
where T : class
|
|
|
|
=> dependencies.Inject(instance);
|
|
|
|
|
|
|
|
protected void Cache(object instance)
|
|
|
|
{
|
|
|
|
dependencies.Cache(instance);
|
|
|
|
if (instance is Drawable drawable)
|
|
|
|
drawableComponents.Add(drawable);
|
|
|
|
}
|
|
|
|
|
|
|
|
protected void CacheAs<T>(T instance)
|
|
|
|
where T : class
|
|
|
|
{
|
|
|
|
dependencies.CacheAs(instance);
|
|
|
|
if (instance is Drawable drawable)
|
|
|
|
drawableComponents.Add(drawable);
|
|
|
|
}
|
|
|
|
|
2021-10-27 15:10:22 +08:00
|
|
|
protected virtual IRoomManager CreateRoomManager() => new TestRoomManager();
|
2021-06-25 12:02:19 +08:00
|
|
|
}
|
|
|
|
}
|