mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 10:47:28 +08:00
66 lines
2.6 KiB
C#
66 lines
2.6 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;
|
|
using osu.Framework.Extensions.Color4Extensions;
|
|
using osu.Game.Rulesets.Osu.Objects;
|
|
using osu.Game.Rulesets.Osu.Skinning.Default;
|
|
using osu.Game.Skinning;
|
|
using osu.Game.Utils;
|
|
using osuTK.Graphics;
|
|
|
|
namespace osu.Game.Rulesets.Osu.Skinning.Legacy
|
|
{
|
|
public class LegacySliderBody : PlaySliderBody
|
|
{
|
|
protected override DrawableSliderPath CreateSliderPath() => new LegacyDrawableSliderPath();
|
|
|
|
protected override Color4 GetBodyAccentColour(ISkinSource skin, Color4 hitObjectAccentColour)
|
|
{
|
|
// legacy skins use a constant value for slider track alpha, regardless of the source colour.
|
|
return base.GetBodyAccentColour(skin, hitObjectAccentColour).Opacity(0.7f);
|
|
}
|
|
|
|
private class LegacyDrawableSliderPath : DrawableSliderPath
|
|
{
|
|
private const float shadow_portion = 1 - (OsuLegacySkinTransformer.LEGACY_CIRCLE_RADIUS / OsuHitObject.OBJECT_RADIUS);
|
|
|
|
protected new float CalculatedBorderPortion
|
|
// Roughly matches osu!stable's slider border portions.
|
|
=> base.CalculatedBorderPortion * 0.77f;
|
|
|
|
protected override Color4 ColourAt(float position)
|
|
{
|
|
float realBorderPortion = shadow_portion + CalculatedBorderPortion;
|
|
float realGradientPortion = 1 - realBorderPortion;
|
|
|
|
if (position <= shadow_portion)
|
|
return new Color4(0f, 0f, 0f, 0.25f * position / shadow_portion);
|
|
|
|
if (position <= realBorderPortion)
|
|
return BorderColour;
|
|
|
|
position -= realBorderPortion;
|
|
|
|
Color4 outerColour = AccentColour.Darken(0.1f);
|
|
Color4 innerColour = lighten(AccentColour, 0.5f);
|
|
|
|
return LegacyUtils.InterpolateNonLinear(position / realGradientPortion, outerColour, innerColour, 0, 1);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Lightens a colour in a way more friendly to dark or strong colours.
|
|
/// </summary>
|
|
private static Color4 lighten(Color4 color, float amount)
|
|
{
|
|
amount *= 0.5f;
|
|
return new Color4(
|
|
Math.Min(1, color.R * (1 + 0.5f * amount) + 1 * amount),
|
|
Math.Min(1, color.G * (1 + 0.5f * amount) + 1 * amount),
|
|
Math.Min(1, color.B * (1 + 0.5f * amount) + 1 * amount),
|
|
color.A);
|
|
}
|
|
}
|
|
}
|
|
}
|