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-04-13 17:19:50 +08:00
|
|
|
|
|
2018-11-06 11:01:54 +08:00
|
|
|
|
using osu.Framework.Allocation;
|
2019-02-21 18:04:31 +08:00
|
|
|
|
using osu.Framework.Bindables;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
using osu.Framework.Caching;
|
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
|
using osu.Game.Rulesets.Objects.Drawables;
|
2018-10-30 17:00:55 +08:00
|
|
|
|
using osu.Game.Rulesets.Objects.Types;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.UI.Scrolling
|
|
|
|
|
{
|
|
|
|
|
public class ScrollingHitObjectContainer : HitObjectContainer
|
|
|
|
|
{
|
2018-11-07 16:24:05 +08:00
|
|
|
|
private readonly IBindable<double> timeRange = new BindableDouble();
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2018-11-06 14:46:36 +08:00
|
|
|
|
private readonly IBindable<ScrollingDirection> direction = new Bindable<ScrollingDirection>();
|
2018-10-30 17:33:24 +08:00
|
|
|
|
|
2018-11-06 14:46:36 +08:00
|
|
|
|
[Resolved]
|
|
|
|
|
private IScrollingInfo scrollingInfo { get; set; }
|
|
|
|
|
|
2019-08-09 18:12:29 +08:00
|
|
|
|
private readonly Cached initialStateCache = new Cached();
|
2018-09-20 12:17:17 +08:00
|
|
|
|
|
2018-11-06 11:01:54 +08:00
|
|
|
|
public ScrollingHitObjectContainer()
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
|
|
|
|
RelativeSizeAxes = Axes.Both;
|
2018-11-06 14:46:36 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
|
private void load()
|
|
|
|
|
{
|
|
|
|
|
direction.BindTo(scrollingInfo.Direction);
|
2018-11-07 16:24:05 +08:00
|
|
|
|
timeRange.BindTo(scrollingInfo.TimeRange);
|
|
|
|
|
|
|
|
|
|
direction.ValueChanged += _ => initialStateCache.Invalidate();
|
|
|
|
|
timeRange.ValueChanged += _ => initialStateCache.Invalidate();
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public override void Add(DrawableHitObject hitObject)
|
|
|
|
|
{
|
|
|
|
|
initialStateCache.Invalidate();
|
|
|
|
|
base.Add(hitObject);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public override bool Remove(DrawableHitObject hitObject)
|
|
|
|
|
{
|
|
|
|
|
var result = base.Remove(hitObject);
|
|
|
|
|
if (result)
|
|
|
|
|
initialStateCache.Invalidate();
|
|
|
|
|
return result;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public override bool Invalidate(Invalidation invalidation = Invalidation.All, Drawable source = null, bool shallPropagate = true)
|
|
|
|
|
{
|
|
|
|
|
if ((invalidation & (Invalidation.RequiredParentSizeToFit | Invalidation.DrawInfo)) > 0)
|
|
|
|
|
initialStateCache.Invalidate();
|
|
|
|
|
|
|
|
|
|
return base.Invalidate(invalidation, source, shallPropagate);
|
|
|
|
|
}
|
|
|
|
|
|
2018-10-30 17:33:24 +08:00
|
|
|
|
private float scrollLength;
|
|
|
|
|
|
2018-04-13 17:19:50 +08:00
|
|
|
|
protected override void Update()
|
|
|
|
|
{
|
|
|
|
|
base.Update();
|
|
|
|
|
|
2018-10-30 17:00:55 +08:00
|
|
|
|
if (!initialStateCache.IsValid)
|
|
|
|
|
{
|
2018-11-06 14:46:36 +08:00
|
|
|
|
switch (direction.Value)
|
2018-10-30 17:33:24 +08:00
|
|
|
|
{
|
|
|
|
|
case ScrollingDirection.Up:
|
|
|
|
|
case ScrollingDirection.Down:
|
|
|
|
|
scrollLength = DrawSize.Y;
|
|
|
|
|
break;
|
2019-04-01 11:44:46 +08:00
|
|
|
|
|
2018-10-30 17:33:24 +08:00
|
|
|
|
default:
|
|
|
|
|
scrollLength = DrawSize.X;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
2018-11-07 15:51:28 +08:00
|
|
|
|
scrollingInfo.Algorithm.Reset();
|
2018-10-30 17:00:55 +08:00
|
|
|
|
|
|
|
|
|
foreach (var obj in Objects)
|
|
|
|
|
computeInitialStateRecursive(obj);
|
|
|
|
|
initialStateCache.Validate();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void computeInitialStateRecursive(DrawableHitObject hitObject)
|
|
|
|
|
{
|
2018-11-07 16:24:05 +08:00
|
|
|
|
hitObject.LifetimeStart = scrollingInfo.Algorithm.GetDisplayStartTime(hitObject.HitObject.StartTime, timeRange.Value);
|
2018-10-30 17:00:55 +08:00
|
|
|
|
|
|
|
|
|
if (hitObject.HitObject is IHasEndTime endTime)
|
|
|
|
|
{
|
2018-11-06 14:46:36 +08:00
|
|
|
|
switch (direction.Value)
|
2018-10-30 17:00:55 +08:00
|
|
|
|
{
|
|
|
|
|
case ScrollingDirection.Up:
|
|
|
|
|
case ScrollingDirection.Down:
|
2018-11-07 16:24:05 +08:00
|
|
|
|
hitObject.Height = scrollingInfo.Algorithm.GetLength(hitObject.HitObject.StartTime, endTime.EndTime, timeRange.Value, scrollLength);
|
2018-10-30 17:00:55 +08:00
|
|
|
|
break;
|
2019-04-01 11:44:46 +08:00
|
|
|
|
|
2018-10-30 17:00:55 +08:00
|
|
|
|
case ScrollingDirection.Left:
|
|
|
|
|
case ScrollingDirection.Right:
|
2018-11-07 16:24:05 +08:00
|
|
|
|
hitObject.Width = scrollingInfo.Algorithm.GetLength(hitObject.HitObject.StartTime, endTime.EndTime, timeRange.Value, scrollLength);
|
2018-10-30 17:00:55 +08:00
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
foreach (var obj in hitObject.NestedHitObjects)
|
|
|
|
|
{
|
|
|
|
|
computeInitialStateRecursive(obj);
|
|
|
|
|
|
|
|
|
|
// Nested hitobjects don't need to scroll, but they do need accurate positions
|
|
|
|
|
updatePosition(obj, hitObject.HitObject.StartTime);
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override void UpdateAfterChildrenLife()
|
|
|
|
|
{
|
|
|
|
|
base.UpdateAfterChildrenLife();
|
|
|
|
|
|
2018-10-30 17:00:55 +08:00
|
|
|
|
// We need to calculate hitobject positions as soon as possible after lifetimes so that hitobjects get the final say in their positions
|
|
|
|
|
foreach (var obj in AliveObjects)
|
|
|
|
|
updatePosition(obj, Time.Current);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void updatePosition(DrawableHitObject hitObject, double currentTime)
|
|
|
|
|
{
|
2018-11-06 14:46:36 +08:00
|
|
|
|
switch (direction.Value)
|
2018-10-30 17:00:55 +08:00
|
|
|
|
{
|
|
|
|
|
case ScrollingDirection.Up:
|
2018-11-07 16:24:05 +08:00
|
|
|
|
hitObject.Y = scrollingInfo.Algorithm.PositionAt(hitObject.HitObject.StartTime, currentTime, timeRange.Value, scrollLength);
|
2018-10-30 17:00:55 +08:00
|
|
|
|
break;
|
2019-04-01 11:44:46 +08:00
|
|
|
|
|
2018-10-30 17:00:55 +08:00
|
|
|
|
case ScrollingDirection.Down:
|
2018-11-07 16:24:05 +08:00
|
|
|
|
hitObject.Y = -scrollingInfo.Algorithm.PositionAt(hitObject.HitObject.StartTime, currentTime, timeRange.Value, scrollLength);
|
2018-10-30 17:00:55 +08:00
|
|
|
|
break;
|
2019-04-01 11:44:46 +08:00
|
|
|
|
|
2018-10-30 17:00:55 +08:00
|
|
|
|
case ScrollingDirection.Left:
|
2018-11-07 16:24:05 +08:00
|
|
|
|
hitObject.X = scrollingInfo.Algorithm.PositionAt(hitObject.HitObject.StartTime, currentTime, timeRange.Value, scrollLength);
|
2018-10-30 17:00:55 +08:00
|
|
|
|
break;
|
2019-04-01 11:44:46 +08:00
|
|
|
|
|
2018-10-30 17:00:55 +08:00
|
|
|
|
case ScrollingDirection.Right:
|
2018-11-07 16:24:05 +08:00
|
|
|
|
hitObject.X = -scrollingInfo.Algorithm.PositionAt(hitObject.HitObject.StartTime, currentTime, timeRange.Value, scrollLength);
|
2018-10-30 17:00:55 +08:00
|
|
|
|
break;
|
|
|
|
|
}
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|