Fix up super weird and super wrong DI

This commit is contained in:
smoogipoo 2021-02-25 22:01:53 +09:00
parent b090a82b35
commit 649ce20e35
1 changed files with 8 additions and 9 deletions

View File

@ -5,7 +5,6 @@
using System.Collections.Generic;
using System.Linq;
using System.Threading;
using JetBrains.Annotations;
using osuTK;
using osuTK.Graphics;
using osu.Framework.Allocation;
@ -39,8 +38,11 @@ public class BeatmapInfoWedge : VisibilityContainer
private static readonly Vector2 wedged_container_shear = new Vector2(shear_width / SongSelect.WEDGE_HEIGHT, 0);
private readonly IBindable<RulesetInfo> ruleset = new Bindable<RulesetInfo>();
private readonly IBindable<IReadOnlyList<Mod>> mods = new Bindable<IReadOnlyList<Mod>>(Array.Empty<Mod>());
[Resolved]
private IBindable<RulesetInfo> ruleset { get; set; }
[Resolved]
private IBindable<IReadOnlyList<Mod>> mods { get; set; }
[Resolved]
private BeatmapDifficultyCache difficultyCache { get; set; }
@ -65,13 +67,10 @@ public BeatmapInfoWedge()
};
}
[BackgroundDependencyLoader(true)]
private void load([CanBeNull] Bindable<RulesetInfo> parentRuleset, [CanBeNull] Bindable<IReadOnlyList<Mod>> parentMods)
protected override void LoadComplete()
{
ruleset.BindTo(parentRuleset);
mods.BindTo(parentMods);
ruleset.ValueChanged += _ => updateDisplay();
base.LoadComplete();
ruleset.BindValueChanged(_ => updateDisplay(), true);
}
protected override void PopIn()