// 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.Audio.Sample; using osu.Framework.Graphics; using osu.Framework.Graphics.Textures; using osu.Game.Audio; using osu.Game.Skinning; using osuTK; using osuTK.Graphics; namespace osu.Game.Rulesets.Osu.Skinning { public class OsuLegacySkin : ISkin { private readonly ISkin source; private Lazy configuration; private Lazy hasHitCircle; /// /// On osu-stable, hitcircles have 5 pixels of transparent padding on each side to allow for shadows etc. /// Their hittable area is 128px, but the actual circle portion is 118px. /// We must account for some gameplay elements such as slider bodies, where this padding is not present. /// private const float legacy_circle_radius = 64 - 5; public OsuLegacySkin(ISkinSource source) { this.source = source; source.SourceChanged += sourceChanged; sourceChanged(); } private void sourceChanged() { // these need to be lazy in order to ensure they aren't called before the dependencies have been loaded into our source. configuration = new Lazy(() => { var config = new SkinConfiguration(); if (hasHitCircle.Value) config.SliderPathRadius = legacy_circle_radius; // defaults should only be applied for non-beatmap skins (which are parsed via this constructor). config.CustomColours["SliderBall"] = source.GetValue(s => s.CustomColours.TryGetValue("SliderBall", out var val) ? val : (Color4?)null) ?? new Color4(2, 170, 255, 255); return config; }); hasHitCircle = new Lazy(() => source.GetTexture("hitcircle") != null); } public Drawable GetDrawableComponent(string componentName) { switch (componentName) { case "Play/osu/sliderball": var sliderBallContent = this.GetAnimation("sliderb", true, true, ""); if (sliderBallContent != null) { var size = sliderBallContent.Size; sliderBallContent.RelativeSizeAxes = Axes.Both; sliderBallContent.Size = Vector2.One; return new LegacySliderBall(sliderBallContent) { Size = size }; } return null; case "Play/osu/hitcircle": if (hasHitCircle.Value) return new LegacyMainCirclePiece(); return null; case "Play/osu/cursor": if (source.GetTexture("cursor") != null) return new LegacyCursor(); return null; case "Play/osu/number-text": string font = GetValue(config => config.HitCircleFont); var overlap = GetValue(config => config.HitCircleOverlap); return !hasFont(font) ? null : new LegacySpriteText(this, font) { // Spacing value was reverse-engineered from the ratio of the rendered sprite size in the visual inspector vs the actual texture size Scale = new Vector2(0.96f), Spacing = new Vector2(-overlap * 0.89f, 0) }; } return null; } public Texture GetTexture(string componentName) => null; public SampleChannel GetSample(ISampleInfo sample) => null; public TValue GetValue(Func query) where TConfiguration : SkinConfiguration => configuration.Value is TConfiguration conf ? query.Invoke(conf) : default; private bool hasFont(string fontName) => GetTexture($"{fontName}-0") != null; } }