mirror of
https://github.com/osukey/osukey.git
synced 2025-05-25 07:27:19 +09:00
34 lines
1.0 KiB
C#
34 lines
1.0 KiB
C#
// 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.Collections.Generic;
|
|
using osu.Framework.Allocation;
|
|
using osu.Framework.Bindables;
|
|
using osu.Game.Rulesets.Mods;
|
|
using osu.Game.Scoring;
|
|
|
|
namespace osu.Game.Screens.Play
|
|
{
|
|
public class ReplayPlayerLoader : PlayerLoader
|
|
{
|
|
private readonly Bindable<IReadOnlyList<Mod>> mods;
|
|
|
|
public ReplayPlayerLoader(Score score)
|
|
: base(() => new ReplayPlayer(score))
|
|
{
|
|
mods = new Bindable<IReadOnlyList<Mod>>(score.ScoreInfo.Mods);
|
|
}
|
|
|
|
protected override IReadOnlyDependencyContainer CreateChildDependencies(IReadOnlyDependencyContainer parent)
|
|
{
|
|
var dependencies = new DependencyContainer(base.CreateChildDependencies(parent));
|
|
dependencies.Cache(mods);
|
|
|
|
// Overwrite the global mods here for use in the mod hud.
|
|
Mods.Value = mods.Value;
|
|
|
|
return dependencies;
|
|
}
|
|
}
|
|
}
|