mirror of
https://github.com/ppy/osu.git
synced 2024-11-17 17:22:54 +08:00
58 lines
1.9 KiB
C#
58 lines
1.9 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.Game.Rulesets.UI;
|
||
|
using osu.Game.Rulesets.UI.Scrolling;
|
||
|
using osu.Game.Skinning;
|
||
|
|
||
|
namespace osu.Game.Rulesets.Mania.UI.Components
|
||
|
{
|
||
|
public class HitObjectArea : SkinReloadableDrawable
|
||
|
{
|
||
|
protected readonly IBindable<ScrollingDirection> Direction = new Bindable<ScrollingDirection>();
|
||
|
|
||
|
[Resolved(CanBeNull = true)]
|
||
|
private ManiaStage stage { get; set; }
|
||
|
|
||
|
public HitObjectArea(HitObjectContainer hitObjectContainer)
|
||
|
{
|
||
|
InternalChildren = new[]
|
||
|
{
|
||
|
hitObjectContainer,
|
||
|
};
|
||
|
}
|
||
|
|
||
|
[BackgroundDependencyLoader]
|
||
|
private void load(IScrollingInfo scrollingInfo)
|
||
|
{
|
||
|
Direction.BindTo(scrollingInfo.Direction);
|
||
|
Direction.BindValueChanged(onDirectionChanged, true);
|
||
|
}
|
||
|
|
||
|
protected override void SkinChanged(ISkinSource skin, bool allowFallback)
|
||
|
{
|
||
|
base.SkinChanged(skin, allowFallback);
|
||
|
UpdateHitPosition();
|
||
|
}
|
||
|
|
||
|
private void onDirectionChanged(ValueChangedEvent<ScrollingDirection> direction)
|
||
|
{
|
||
|
UpdateHitPosition();
|
||
|
}
|
||
|
|
||
|
protected virtual void UpdateHitPosition()
|
||
|
{
|
||
|
float hitPosition = CurrentSkin.GetConfig<LegacyManiaSkinConfigurationLookup, float>(
|
||
|
new LegacyManiaSkinConfigurationLookup(stage?.Columns.Count ?? 4, LegacyManiaSkinConfigurationLookups.HitPosition))?.Value
|
||
|
?? ManiaStage.HIT_TARGET_POSITION;
|
||
|
|
||
|
Padding = Direction.Value == ScrollingDirection.Up
|
||
|
? new MarginPadding { Top = hitPosition }
|
||
|
: new MarginPadding { Bottom = hitPosition };
|
||
|
}
|
||
|
}
|
||
|
}
|