Add BeatmapLookupCache as another dependency

This commit is contained in:
Dan Balasescu 2022-02-15 21:05:05 +09:00
parent c48a0dc993
commit 2675bb87ff
3 changed files with 11 additions and 0 deletions

View File

@ -2,6 +2,7 @@
// See the LICENCE file in the repository root for full licence text.
using osu.Framework.Bindables;
using osu.Game.Database;
using osu.Game.Online.Rooms;
using osu.Game.Screens.OnlinePlay;
@ -36,5 +37,10 @@ namespace osu.Game.Tests.Visual.OnlinePlay
/// The cached <see cref="UserLookupCache"/>.
/// </summary>
TestUserLookupCache UserLookupCache { get; }
/// <summary>
/// The cached <see cref="BeatmapLookupCache"/>.
/// </summary>
BeatmapLookupCache BeatmapLookupCache { get; }
}
}

View File

@ -7,6 +7,7 @@ using osu.Framework.Allocation;
using osu.Framework.Bindables;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using osu.Game.Database;
using osu.Game.Online.API;
using osu.Game.Online.Rooms;
using osu.Game.Screens.OnlinePlay;
@ -23,6 +24,7 @@ namespace osu.Game.Tests.Visual.OnlinePlay
public OngoingOperationTracker OngoingOperationTracker => OnlinePlayDependencies?.OngoingOperationTracker;
public OnlinePlayBeatmapAvailabilityTracker AvailabilityTracker => OnlinePlayDependencies?.AvailabilityTracker;
public TestUserLookupCache UserLookupCache => OnlinePlayDependencies?.UserLookupCache;
public BeatmapLookupCache BeatmapLookupCache => OnlinePlayDependencies?.BeatmapLookupCache;
/// <summary>
/// All dependencies required for online play components and screens.

View File

@ -24,6 +24,7 @@ namespace osu.Game.Tests.Visual.OnlinePlay
public OnlinePlayBeatmapAvailabilityTracker AvailabilityTracker { get; }
public TestRoomRequestsHandler RequestsHandler { get; }
public TestUserLookupCache UserLookupCache { get; }
public BeatmapLookupCache BeatmapLookupCache { get; }
/// <summary>
/// All cached dependencies which are also <see cref="Drawable"/> components.
@ -41,6 +42,7 @@ namespace osu.Game.Tests.Visual.OnlinePlay
AvailabilityTracker = new OnlinePlayBeatmapAvailabilityTracker();
RoomManager = CreateRoomManager();
UserLookupCache = new TestUserLookupCache();
BeatmapLookupCache = new BeatmapLookupCache();
dependencies = new DependencyContainer(new CachedModelDependencyContainer<Room>(null) { Model = { BindTarget = SelectedRoom } });
@ -51,6 +53,7 @@ namespace osu.Game.Tests.Visual.OnlinePlay
CacheAs(AvailabilityTracker);
CacheAs(new OverlayColourProvider(OverlayColourScheme.Plum));
CacheAs<UserLookupCache>(UserLookupCache);
CacheAs(BeatmapLookupCache);
}
public object Get(Type type)