2019-01-24 16:43:03 +08:00
|
|
|
// 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.
|
2018-10-25 17:16:25 +08:00
|
|
|
|
2018-11-09 12:58:46 +08:00
|
|
|
using osu.Framework.Allocation;
|
2019-02-21 18:04:31 +08:00
|
|
|
using osu.Framework.Bindables;
|
2018-11-14 13:29:22 +08:00
|
|
|
using osu.Game.Rulesets.Objects;
|
2018-11-07 15:08:56 +08:00
|
|
|
using osu.Game.Rulesets.Osu.Edit.Blueprints.HitCircles.Components;
|
2018-10-25 17:16:25 +08:00
|
|
|
using osu.Game.Rulesets.Osu.Objects;
|
|
|
|
|
2018-11-07 15:08:56 +08:00
|
|
|
namespace osu.Game.Rulesets.Osu.Edit.Blueprints.Sliders.Components
|
2018-10-25 17:16:25 +08:00
|
|
|
{
|
2018-10-26 12:51:03 +08:00
|
|
|
public class SliderCirclePiece : HitCirclePiece
|
2018-10-25 17:16:25 +08:00
|
|
|
{
|
2018-11-14 13:29:22 +08:00
|
|
|
private readonly IBindable<SliderPath> pathBindable = new Bindable<SliderPath>();
|
2018-11-09 12:58:46 +08:00
|
|
|
|
2018-10-25 17:16:25 +08:00
|
|
|
private readonly Slider slider;
|
|
|
|
private readonly SliderPosition position;
|
|
|
|
|
2018-10-26 12:51:03 +08:00
|
|
|
public SliderCirclePiece(Slider slider, SliderPosition position)
|
2018-10-25 17:16:25 +08:00
|
|
|
: base(slider.HeadCircle)
|
|
|
|
{
|
|
|
|
this.slider = slider;
|
|
|
|
this.position = position;
|
2018-11-09 12:58:46 +08:00
|
|
|
}
|
2018-10-29 14:36:43 +08:00
|
|
|
|
2018-11-09 12:58:46 +08:00
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
private void load()
|
|
|
|
{
|
2018-11-14 13:29:22 +08:00
|
|
|
pathBindable.BindTo(slider.PathBindable);
|
|
|
|
pathBindable.BindValueChanged(_ => UpdatePosition(), true);
|
2018-10-25 17:16:25 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
protected override void UpdatePosition()
|
|
|
|
{
|
|
|
|
switch (position)
|
|
|
|
{
|
|
|
|
case SliderPosition.Start:
|
2018-11-01 02:52:24 +08:00
|
|
|
Position = slider.StackedPosition + slider.Path.PositionAt(0);
|
2018-10-25 17:16:25 +08:00
|
|
|
break;
|
|
|
|
case SliderPosition.End:
|
2018-11-01 02:52:24 +08:00
|
|
|
Position = slider.StackedPosition + slider.Path.PositionAt(1);
|
2018-10-25 17:16:25 +08:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|