2017-05-11 08:41:00 +00:00
|
|
|
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
|
|
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
|
|
|
|
using System;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
using System.Linq;
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
using osu.Framework.Graphics.Containers;
|
|
|
|
using OpenTK;
|
2017-05-12 13:23:32 +00:00
|
|
|
using osu.Game.Beatmaps.Timing;
|
2017-05-11 08:41:00 +00:00
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Mania.Timing
|
2017-05-11 07:09:48 +00:00
|
|
|
{
|
|
|
|
/// <summary>
|
2017-05-11 08:41:00 +00:00
|
|
|
/// A container in which the Y-relative coordinate space is spanned by a length of time.
|
|
|
|
/// <para>
|
2017-05-12 13:23:32 +00:00
|
|
|
/// This container contains <see cref="ControlPoint"/>s which scroll inside this container.
|
|
|
|
/// Drawables added to this container are moved inside the relevant <see cref="ControlPoint"/>,
|
|
|
|
/// and as such, will scroll along with the <see cref="ControlPoint"/>s.
|
2017-05-11 07:09:48 +00:00
|
|
|
/// </para>
|
|
|
|
/// </summary>
|
|
|
|
public class TimeRelativeContainer : Container<Drawable>
|
2017-05-11 08:41:00 +00:00
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// The amount of time which the height of this container spans.
|
|
|
|
/// </summary>
|
|
|
|
public double TimeSpan
|
|
|
|
{
|
|
|
|
get { return RelativeCoordinateSpace.Y; }
|
|
|
|
set { RelativeCoordinateSpace = new Vector2(1, (float)value); }
|
|
|
|
}
|
|
|
|
|
2017-05-11 10:57:24 +00:00
|
|
|
private readonly List<DrawableTimingSection> drawableTimingSections;
|
|
|
|
|
2017-05-12 13:23:32 +00:00
|
|
|
public TimeRelativeContainer(IEnumerable<ControlPoint> timingChanges)
|
2017-05-11 07:09:48 +00:00
|
|
|
{
|
2017-05-12 13:23:32 +00:00
|
|
|
drawableTimingSections = timingChanges.Select(t => new DrawableTimingSection(t)).ToList();
|
2017-05-11 10:57:24 +00:00
|
|
|
|
|
|
|
Children = drawableTimingSections;
|
2017-05-11 07:09:48 +00:00
|
|
|
}
|
|
|
|
|
2017-05-11 08:41:00 +00:00
|
|
|
/// <summary>
|
|
|
|
/// Adds a drawable to this container. Note that the drawable added must have a
|
|
|
|
/// Y-position as a time relative to this container.
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="drawable">The drawable to add.</param>
|
|
|
|
public override void Add(Drawable drawable)
|
2017-05-11 07:09:48 +00:00
|
|
|
{
|
|
|
|
// Always add timing sections to ourselves
|
2017-05-11 08:41:00 +00:00
|
|
|
if (drawable is DrawableTimingSection)
|
|
|
|
{
|
2017-05-11 07:09:48 +00:00
|
|
|
base.Add(drawable);
|
2017-05-11 08:41:00 +00:00
|
|
|
return;
|
2017-05-11 07:09:48 +00:00
|
|
|
}
|
2017-05-11 08:41:00 +00:00
|
|
|
|
2017-05-11 11:04:45 +00:00
|
|
|
var section = drawableTimingSections.LastOrDefault(t => t.CanContain(drawable)) ?? drawableTimingSections.FirstOrDefault();
|
2017-05-11 08:41:00 +00:00
|
|
|
|
|
|
|
if (section == null)
|
2017-05-11 07:09:48 +00:00
|
|
|
throw new Exception("Could not find suitable timing section to add object to.");
|
2017-05-11 08:41:00 +00:00
|
|
|
|
|
|
|
section.Add(drawable);
|
2017-05-11 07:09:48 +00:00
|
|
|
}
|
|
|
|
|
2017-05-11 08:41:00 +00:00
|
|
|
/// <summary>
|
2017-05-11 07:09:48 +00:00
|
|
|
/// A container that contains drawables within the time span of a timing section.
|
|
|
|
/// <para>
|
2017-05-11 10:57:24 +00:00
|
|
|
/// The content of this container will scroll relative to the current time.
|
2017-05-11 08:41:00 +00:00
|
|
|
/// </para>
|
|
|
|
/// </summary>
|
2017-05-11 07:09:48 +00:00
|
|
|
private class DrawableTimingSection : Container
|
|
|
|
{
|
2017-05-12 13:23:32 +00:00
|
|
|
private readonly ControlPoint timingChange;
|
2017-05-11 07:09:48 +00:00
|
|
|
|
2017-05-16 08:03:43 +00:00
|
|
|
protected override Container<Drawable> Content => content;
|
|
|
|
private readonly Container content;
|
|
|
|
|
2017-05-11 10:57:24 +00:00
|
|
|
/// <summary>
|
|
|
|
/// Creates a drawable timing section. The height of this container will be proportional
|
|
|
|
/// to the beat length of the timing section and the timespan of its parent at all times.
|
|
|
|
/// <para>
|
|
|
|
/// This is so that, e.g. a beat length of 500ms results in this container being twice as high as its parent,
|
|
|
|
/// which means that the content container will scroll at twice the normal rate.
|
|
|
|
/// </para>
|
|
|
|
/// </summary>
|
2017-05-12 13:23:32 +00:00
|
|
|
/// <param name="timingChange">The timing change to create the drawable timing section for.</param>
|
|
|
|
public DrawableTimingSection(ControlPoint timingChange)
|
2017-05-11 07:09:48 +00:00
|
|
|
{
|
2017-05-12 13:23:32 +00:00
|
|
|
this.timingChange = timingChange;
|
2017-05-11 07:09:48 +00:00
|
|
|
|
|
|
|
Anchor = Anchor.BottomCentre;
|
|
|
|
Origin = Anchor.BottomCentre;
|
|
|
|
|
|
|
|
RelativeSizeAxes = Axes.Both;
|
|
|
|
|
2017-05-16 08:03:43 +00:00
|
|
|
AddInternal(content = new AutoTimeRelativeContainer
|
|
|
|
{
|
|
|
|
Anchor = Anchor.BottomCentre,
|
|
|
|
Origin = Anchor.BottomCentre,
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
RelativePositionAxes = Axes.Both,
|
|
|
|
Y = -(float)timingChange.Time
|
|
|
|
});
|
2017-05-11 07:09:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
protected override void Update()
|
|
|
|
{
|
2017-05-11 10:57:24 +00:00
|
|
|
var parent = (TimeRelativeContainer)Parent;
|
|
|
|
|
|
|
|
// Adjust our height to account for the speed changes
|
2017-05-12 13:23:32 +00:00
|
|
|
Height = (float)(parent.TimeSpan * 1000 / timingChange.BeatLength / timingChange.SpeedMultiplier);
|
2017-05-11 10:57:24 +00:00
|
|
|
RelativeCoordinateSpace = new Vector2(1, (float)parent.TimeSpan);
|
|
|
|
|
|
|
|
// Scroll the content
|
2017-05-16 08:03:43 +00:00
|
|
|
content.Y = (float)(Time.Current - timingChange.Time);
|
2017-05-11 07:09:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public override void Add(Drawable drawable)
|
|
|
|
{
|
|
|
|
// The previously relatively-positioned drawable will now become relative to us, but since the drawable has no knowledge of us,
|
|
|
|
// we need to offset it back by our position so that it becomes correctly relatively-positioned to us
|
|
|
|
// This can be removed if hit objects were stored such that either their StartTime or their "beat offset" was relative to the timing section
|
|
|
|
// they belonged to, but this requires a radical change to the beatmap format which we're not ready to do just yet
|
2017-05-12 13:23:32 +00:00
|
|
|
drawable.Y += (float)timingChange.Time;
|
2017-05-11 08:41:00 +00:00
|
|
|
|
|
|
|
base.Add(drawable);
|
2017-05-11 07:09:48 +00:00
|
|
|
}
|
2017-05-11 10:57:24 +00:00
|
|
|
|
2017-05-11 13:01:37 +00:00
|
|
|
/// <summary>
|
|
|
|
/// Whether this timing section can contain a drawable. A timing section can contain a drawable if the drawable
|
|
|
|
/// can be placed within the timing section's bounds (in this case, from the start of the timing section up to infinity).
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="drawable">The drawable to check.</param>
|
2017-05-16 08:03:43 +00:00
|
|
|
public bool CanContain(Drawable drawable) => content.Y >= drawable.Y;
|
|
|
|
|
|
|
|
private class AutoTimeRelativeContainer : Container
|
|
|
|
{
|
|
|
|
public override bool Invalidate(Invalidation invalidation = Invalidation.All, Drawable source = null, bool shallPropagate = true)
|
|
|
|
{
|
|
|
|
float height = 0;
|
|
|
|
|
|
|
|
foreach (Drawable child in Children)
|
|
|
|
{
|
|
|
|
// Todo: This is wrong, it won't work for absolute-y-sized children
|
|
|
|
float childEndPos = -child.Y + child.Height;
|
|
|
|
if (childEndPos > height)
|
|
|
|
height = childEndPos;
|
|
|
|
}
|
|
|
|
|
|
|
|
Height = height;
|
|
|
|
RelativeCoordinateSpace = new Vector2(1, height);
|
|
|
|
|
|
|
|
return base.Invalidate(invalidation, source, shallPropagate);
|
|
|
|
}
|
|
|
|
}
|
2017-05-11 08:41:00 +00:00
|
|
|
}
|
|
|
|
}
|
2017-05-11 07:09:48 +00:00
|
|
|
}
|