2018-01-11 11:39:06 +08:00
|
|
|
|
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
|
2018-01-04 18:20:43 +08:00
|
|
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
|
|
2018-01-08 10:34:37 +08:00
|
|
|
|
using osu.Framework.Allocation;
|
2018-01-05 19:56:21 +08:00
|
|
|
|
using osu.Framework.Caching;
|
2018-01-04 18:20:43 +08:00
|
|
|
|
using osu.Framework.Configuration;
|
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
|
using osu.Framework.Lists;
|
2018-01-08 10:34:37 +08:00
|
|
|
|
using osu.Game.Configuration;
|
2018-01-05 19:56:21 +08:00
|
|
|
|
using osu.Game.Rulesets.Objects.Drawables;
|
2018-01-04 18:20:43 +08:00
|
|
|
|
using osu.Game.Rulesets.Timing;
|
2018-01-07 11:47:09 +08:00
|
|
|
|
using osu.Game.Rulesets.UI.Scrolling.Algorithms;
|
2018-01-04 18:20:43 +08:00
|
|
|
|
|
2018-01-04 18:22:15 +08:00
|
|
|
|
namespace osu.Game.Rulesets.UI.Scrolling
|
2018-01-04 18:20:43 +08:00
|
|
|
|
{
|
2018-01-08 10:34:37 +08:00
|
|
|
|
public class ScrollingHitObjectContainer : HitObjectContainer
|
2018-01-04 18:20:43 +08:00
|
|
|
|
{
|
|
|
|
|
public readonly BindableDouble TimeRange = new BindableDouble
|
|
|
|
|
{
|
|
|
|
|
MinValue = 0,
|
|
|
|
|
MaxValue = double.MaxValue
|
|
|
|
|
};
|
|
|
|
|
|
2018-01-07 11:47:09 +08:00
|
|
|
|
protected readonly SortedList<MultiplierControlPoint> ControlPoints = new SortedList<MultiplierControlPoint>();
|
|
|
|
|
|
2018-01-04 18:20:43 +08:00
|
|
|
|
private readonly ScrollingDirection direction;
|
|
|
|
|
|
2018-01-07 11:47:09 +08:00
|
|
|
|
private Cached initialStateCache = new Cached();
|
2018-01-05 19:56:21 +08:00
|
|
|
|
|
2018-01-08 10:34:37 +08:00
|
|
|
|
public ScrollingHitObjectContainer(ScrollingDirection direction)
|
2018-01-04 18:20:43 +08:00
|
|
|
|
{
|
|
|
|
|
this.direction = direction;
|
|
|
|
|
|
|
|
|
|
RelativeSizeAxes = Axes.Both;
|
2018-01-05 19:56:21 +08:00
|
|
|
|
|
2018-01-07 11:47:09 +08:00
|
|
|
|
TimeRange.ValueChanged += v => initialStateCache.Invalidate();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private IScrollingAlgorithm scrollingAlgorithm;
|
|
|
|
|
|
2018-01-08 10:34:37 +08:00
|
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
|
private void load(OsuConfigManager config)
|
|
|
|
|
{
|
|
|
|
|
switch (config.Get<ScrollingAlgorithmType>(OsuSetting.ScrollingAlgorithm))
|
|
|
|
|
{
|
|
|
|
|
case ScrollingAlgorithmType.Global:
|
|
|
|
|
scrollingAlgorithm = new GlobalScrollingAlgorithm(ControlPoints);
|
|
|
|
|
break;
|
|
|
|
|
case ScrollingAlgorithmType.Local:
|
|
|
|
|
scrollingAlgorithm = new LocalScrollingAlgorithm(ControlPoints);
|
|
|
|
|
break;
|
|
|
|
|
}
|
2018-01-05 19:56:21 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public override void Add(DrawableHitObject hitObject)
|
|
|
|
|
{
|
2018-01-07 11:47:09 +08:00
|
|
|
|
initialStateCache.Invalidate();
|
2018-01-05 19:56:21 +08:00
|
|
|
|
base.Add(hitObject);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public override bool Remove(DrawableHitObject hitObject)
|
|
|
|
|
{
|
|
|
|
|
var result = base.Remove(hitObject);
|
|
|
|
|
if (result)
|
2018-01-07 11:47:09 +08:00
|
|
|
|
initialStateCache.Invalidate();
|
2018-01-05 19:56:21 +08:00
|
|
|
|
return result;
|
2018-01-04 18:20:43 +08:00
|
|
|
|
}
|
|
|
|
|
|
2018-01-05 19:56:21 +08:00
|
|
|
|
public void AddControlPoint(MultiplierControlPoint controlPoint)
|
2018-01-05 14:48:19 +08:00
|
|
|
|
{
|
2018-01-07 11:47:09 +08:00
|
|
|
|
ControlPoints.Add(controlPoint);
|
|
|
|
|
initialStateCache.Invalidate();
|
2018-01-05 19:56:21 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public bool RemoveControlPoint(MultiplierControlPoint controlPoint)
|
|
|
|
|
{
|
2018-01-07 11:47:09 +08:00
|
|
|
|
var result = ControlPoints.Remove(controlPoint);
|
2018-01-05 19:56:21 +08:00
|
|
|
|
if (result)
|
2018-01-07 11:47:09 +08:00
|
|
|
|
initialStateCache.Invalidate();
|
2018-01-05 19:56:21 +08:00
|
|
|
|
return result;
|
|
|
|
|
}
|
|
|
|
|
|
2018-01-07 10:33:59 +08:00
|
|
|
|
public override bool Invalidate(Invalidation invalidation = Invalidation.All, Drawable source = null, bool shallPropagate = true)
|
|
|
|
|
{
|
|
|
|
|
if ((invalidation & (Invalidation.RequiredParentSizeToFit | Invalidation.DrawInfo)) > 0)
|
2018-01-07 11:47:09 +08:00
|
|
|
|
initialStateCache.Invalidate();
|
2018-01-07 10:33:59 +08:00
|
|
|
|
|
|
|
|
|
return base.Invalidate(invalidation, source, shallPropagate);
|
|
|
|
|
}
|
|
|
|
|
|
2018-01-05 19:56:21 +08:00
|
|
|
|
protected override void Update()
|
|
|
|
|
{
|
|
|
|
|
base.Update();
|
|
|
|
|
|
2018-01-07 11:47:09 +08:00
|
|
|
|
if (initialStateCache.IsValid)
|
2018-01-05 19:56:21 +08:00
|
|
|
|
return;
|
|
|
|
|
|
2018-01-07 11:47:09 +08:00
|
|
|
|
scrollingAlgorithm.ComputeInitialStates(Objects, direction, TimeRange, DrawSize);
|
2018-01-05 19:56:21 +08:00
|
|
|
|
|
2018-01-07 11:47:09 +08:00
|
|
|
|
initialStateCache.Validate();
|
2018-01-05 14:48:19 +08:00
|
|
|
|
}
|
|
|
|
|
|
2018-01-04 20:45:29 +08:00
|
|
|
|
protected override void UpdateAfterChildrenLife()
|
2018-01-04 18:20:43 +08:00
|
|
|
|
{
|
2018-01-04 20:45:29 +08:00
|
|
|
|
base.UpdateAfterChildrenLife();
|
|
|
|
|
|
2018-01-05 14:48:19 +08:00
|
|
|
|
// We need to calculate this as soon as possible after lifetimes so that hitobjects
|
2018-01-04 20:45:29 +08:00
|
|
|
|
// get the final say in their positions
|
2018-01-04 18:20:43 +08:00
|
|
|
|
|
2018-01-07 11:47:09 +08:00
|
|
|
|
scrollingAlgorithm.ComputePositions(AliveObjects, direction, Time.Current, TimeRange, DrawSize);
|
2018-01-04 18:20:43 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|