// Copyright (c) ppy Pty Ltd . Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. using System; using osu.Framework.Allocation; using osu.Framework.Audio.Sample; using osu.Framework.Configuration; using osu.Framework.Graphics; using osu.Framework.Graphics.Containers; using osu.Framework.Graphics.Textures; using osu.Game.Configuration; namespace osu.Game.Skinning { /// /// A container which overrides existing skin options with beatmap-local values. /// public class LocalSkinOverrideContainer : Container, ISkinSource { public event Action SourceChanged; private readonly Bindable beatmapSkins = new Bindable(); private readonly Bindable beatmapHitsounds = new Bindable(); private readonly ISkinSource source; private ISkinSource fallbackSource; public LocalSkinOverrideContainer(ISkinSource source) { this.source = source; } public Drawable GetDrawableComponent(string componentName) { Drawable sourceDrawable; if (beatmapSkins && (sourceDrawable = source.GetDrawableComponent(componentName)) != null) return sourceDrawable; return fallbackSource?.GetDrawableComponent(componentName); } public Texture GetTexture(string componentName) { Texture sourceTexture; if (beatmapSkins && (sourceTexture = source.GetTexture(componentName)) != null) return sourceTexture; return fallbackSource.GetTexture(componentName); } public SampleChannel GetSample(string sampleName) { SampleChannel sourceChannel; if (beatmapHitsounds && (sourceChannel = source.GetSample(sampleName)) != null) return sourceChannel; return fallbackSource?.GetSample(sampleName); } public TValue GetValue(Func query) where TConfiguration : SkinConfiguration { TValue val; if ((source as Skin)?.Configuration is TConfiguration conf) if (beatmapSkins && (val = query.Invoke(conf)) != null) return val; return fallbackSource == null ? default : fallbackSource.GetValue(query); } private void onSourceChanged() => SourceChanged?.Invoke(); protected override IReadOnlyDependencyContainer CreateChildDependencies(IReadOnlyDependencyContainer parent) { var dependencies = new DependencyContainer(base.CreateChildDependencies(parent)); fallbackSource = dependencies.Get(); dependencies.CacheAs(this); return dependencies; } [BackgroundDependencyLoader] private void load(OsuConfigManager config) { config.BindWith(OsuSetting.BeatmapSkins, beatmapSkins); config.BindWith(OsuSetting.BeatmapHitsounds, beatmapHitsounds); } protected override void LoadComplete() { base.LoadComplete(); if (fallbackSource != null) fallbackSource.SourceChanged += onSourceChanged; beatmapSkins.BindValueChanged(_ => onSourceChanged()); beatmapHitsounds.BindValueChanged(_ => onSourceChanged(), true); } protected override void Dispose(bool isDisposing) { base.Dispose(isDisposing); if (fallbackSource != null) fallbackSource.SourceChanged -= onSourceChanged; } } }