2019-02-02 16:11:25 +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.
|
|
|
|
|
2022-06-17 15:37:17 +08:00
|
|
|
#nullable disable
|
|
|
|
|
2019-04-08 17:32:05 +08:00
|
|
|
using System.Collections.Generic;
|
2019-02-02 16:11:25 +08:00
|
|
|
using osu.Framework.Allocation;
|
2019-02-21 18:04:31 +08:00
|
|
|
using osu.Framework.Bindables;
|
2019-02-02 16:11:25 +08:00
|
|
|
using osu.Game.Beatmaps;
|
|
|
|
using osu.Game.Rulesets;
|
2019-04-08 17:32:05 +08:00
|
|
|
using osu.Game.Rulesets.Mods;
|
2019-02-02 16:11:25 +08:00
|
|
|
|
|
|
|
namespace osu.Game.Screens
|
|
|
|
{
|
|
|
|
public class OsuScreenDependencies : DependencyContainer
|
|
|
|
{
|
|
|
|
public Bindable<WorkingBeatmap> Beatmap { get; }
|
|
|
|
|
|
|
|
public Bindable<RulesetInfo> Ruleset { get; }
|
|
|
|
|
2019-04-10 16:13:12 +08:00
|
|
|
public Bindable<IReadOnlyList<Mod>> Mods { get; }
|
2019-04-08 17:32:05 +08:00
|
|
|
|
2019-02-02 16:11:25 +08:00
|
|
|
public OsuScreenDependencies(bool requireLease, IReadOnlyDependencyContainer parent)
|
|
|
|
: base(parent)
|
|
|
|
{
|
|
|
|
if (requireLease)
|
|
|
|
{
|
|
|
|
Beatmap = parent.Get<LeasedBindable<WorkingBeatmap>>()?.GetBoundCopy();
|
2019-04-01 11:16:05 +08:00
|
|
|
|
2019-02-02 16:11:25 +08:00
|
|
|
if (Beatmap == null)
|
2019-12-13 19:05:54 +08:00
|
|
|
{
|
2019-02-14 16:14:58 +08:00
|
|
|
Cache(Beatmap = parent.Get<Bindable<WorkingBeatmap>>().BeginLease(false));
|
2019-12-13 19:05:54 +08:00
|
|
|
CacheAs(Beatmap);
|
|
|
|
}
|
2019-02-02 16:11:25 +08:00
|
|
|
|
|
|
|
Ruleset = parent.Get<LeasedBindable<RulesetInfo>>()?.GetBoundCopy();
|
2019-04-01 11:16:05 +08:00
|
|
|
|
2019-02-02 16:11:25 +08:00
|
|
|
if (Ruleset == null)
|
2019-12-13 19:05:54 +08:00
|
|
|
{
|
2019-02-02 16:11:25 +08:00
|
|
|
Cache(Ruleset = parent.Get<Bindable<RulesetInfo>>().BeginLease(true));
|
2019-12-13 19:05:54 +08:00
|
|
|
CacheAs(Ruleset);
|
|
|
|
}
|
2019-04-08 17:32:05 +08:00
|
|
|
|
2019-04-10 16:13:12 +08:00
|
|
|
Mods = parent.Get<LeasedBindable<IReadOnlyList<Mod>>>()?.GetBoundCopy();
|
2019-12-13 19:05:54 +08:00
|
|
|
|
2019-04-10 11:03:57 +08:00
|
|
|
if (Mods == null)
|
2019-12-13 19:05:54 +08:00
|
|
|
{
|
2019-04-10 16:13:12 +08:00
|
|
|
Cache(Mods = parent.Get<Bindable<IReadOnlyList<Mod>>>().BeginLease(true));
|
2019-12-13 19:05:54 +08:00
|
|
|
CacheAs(Mods);
|
|
|
|
}
|
2019-02-02 16:11:25 +08:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
Beatmap = (parent.Get<LeasedBindable<WorkingBeatmap>>() ?? parent.Get<Bindable<WorkingBeatmap>>()).GetBoundCopy();
|
|
|
|
Ruleset = (parent.Get<LeasedBindable<RulesetInfo>>() ?? parent.Get<Bindable<RulesetInfo>>()).GetBoundCopy();
|
2019-04-10 16:13:12 +08:00
|
|
|
Mods = (parent.Get<LeasedBindable<IReadOnlyList<Mod>>>() ?? parent.Get<Bindable<IReadOnlyList<Mod>>>()).GetBoundCopy();
|
2019-02-02 16:11:25 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-02-14 16:14:58 +08:00
|
|
|
}
|