mirror of
https://github.com/ppy/osu.git
synced 2024-11-07 00:27:26 +08:00
ca555a6a52
Removed parameter "index"; all these cases should use extension instead
99 lines
3.4 KiB
C#
99 lines
3.4 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 osu.Framework.Allocation;
|
|
using osu.Framework.Bindables;
|
|
using osu.Framework.Graphics;
|
|
using osu.Framework.Graphics.Containers;
|
|
using osu.Framework.Graphics.Sprites;
|
|
using osu.Framework.Graphics.Textures;
|
|
using osu.Game.Rulesets.UI.Scrolling;
|
|
using osu.Game.Skinning;
|
|
using osuTK;
|
|
|
|
namespace osu.Game.Rulesets.Mania.Skinning
|
|
{
|
|
public class LegacyNotePiece : LegacyManiaColumnElement
|
|
{
|
|
private readonly IBindable<ScrollingDirection> direction = new Bindable<ScrollingDirection>();
|
|
|
|
private Container directionContainer;
|
|
private Sprite noteSprite;
|
|
|
|
private float? minimumColumnWidth;
|
|
|
|
public LegacyNotePiece()
|
|
{
|
|
RelativeSizeAxes = Axes.X;
|
|
AutoSizeAxes = Axes.Y;
|
|
}
|
|
|
|
[BackgroundDependencyLoader]
|
|
private void load(ISkinSource skin, IScrollingInfo scrollingInfo)
|
|
{
|
|
minimumColumnWidth = skin.GetConfig<ManiaSkinConfigurationLookup, float>(new ManiaSkinConfigurationLookup(LegacyManiaSkinConfigurationLookups.MinimumColumnWidth))?.Value;
|
|
|
|
InternalChild = directionContainer = new Container
|
|
{
|
|
Origin = Anchor.BottomCentre,
|
|
RelativeSizeAxes = Axes.X,
|
|
AutoSizeAxes = Axes.Y,
|
|
Child = noteSprite = new Sprite { Texture = GetTexture(skin) }
|
|
};
|
|
|
|
direction.BindTo(scrollingInfo.Direction);
|
|
direction.BindValueChanged(OnDirectionChanged, true);
|
|
}
|
|
|
|
protected override void Update()
|
|
{
|
|
base.Update();
|
|
|
|
if (noteSprite.Texture != null)
|
|
{
|
|
// The height is scaled to the minimum column width, if provided.
|
|
float minimumWidth = minimumColumnWidth ?? DrawWidth;
|
|
|
|
noteSprite.Scale = Vector2.Divide(new Vector2(DrawWidth, minimumWidth), noteSprite.Texture.DisplayWidth);
|
|
}
|
|
}
|
|
|
|
protected virtual void OnDirectionChanged(ValueChangedEvent<ScrollingDirection> direction)
|
|
{
|
|
if (direction.NewValue == ScrollingDirection.Up)
|
|
{
|
|
directionContainer.Anchor = Anchor.TopCentre;
|
|
directionContainer.Scale = new Vector2(1, -1);
|
|
}
|
|
else
|
|
{
|
|
directionContainer.Anchor = Anchor.BottomCentre;
|
|
directionContainer.Scale = Vector2.One;
|
|
}
|
|
}
|
|
|
|
protected virtual Texture GetTexture(ISkinSource skin) => GetTextureFromLookup(skin, LegacyManiaSkinConfigurationLookups.NoteImage);
|
|
|
|
protected Texture GetTextureFromLookup(ISkin skin, LegacyManiaSkinConfigurationLookups lookup)
|
|
{
|
|
string suffix = string.Empty;
|
|
|
|
switch (lookup)
|
|
{
|
|
case LegacyManiaSkinConfigurationLookups.HoldNoteHeadImage:
|
|
suffix = "H";
|
|
break;
|
|
|
|
case LegacyManiaSkinConfigurationLookups.HoldNoteTailImage:
|
|
suffix = "T";
|
|
break;
|
|
}
|
|
|
|
string noteImage = GetColumnSkinConfig<string>(skin, lookup)?.Value
|
|
?? $"mania-note{FallbackColumnIndex}{suffix}";
|
|
|
|
return skin.GetTexture(noteImage);
|
|
}
|
|
}
|
|
}
|