2018-10-25 17:16:25 +08:00
|
|
|
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
|
|
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
|
|
|
|
using osu.Game.Rulesets.Osu.Edit.Masks.HitCircleMasks.Components;
|
|
|
|
using osu.Game.Rulesets.Osu.Objects;
|
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Osu.Edit.Masks.SliderMasks.Components
|
|
|
|
{
|
2018-10-26 12:51:03 +08:00
|
|
|
public class SliderCirclePiece : HitCirclePiece
|
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;
|
|
|
|
}
|
|
|
|
|
|
|
|
protected override void UpdatePosition()
|
|
|
|
{
|
|
|
|
switch (position)
|
|
|
|
{
|
|
|
|
case SliderPosition.Start:
|
|
|
|
Position = slider.StackedPosition + slider.Curve.PositionAt(0);
|
|
|
|
break;
|
|
|
|
case SliderPosition.End:
|
|
|
|
Position = slider.StackedPosition + slider.Curve.PositionAt(1);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|