1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 16:47:24 +08:00
osu-lazer/osu.Game/Graphics/Containers/BeatSyncedContainer.cs

73 lines
2.7 KiB
C#
Raw Normal View History

2017-05-19 09:19:00 +08:00
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
2017-05-17 14:18:56 +08:00
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
using osu.Framework.Allocation;
2017-05-23 15:11:46 +08:00
using osu.Framework.Audio.Track;
using osu.Framework.Configuration;
using osu.Framework.Graphics.Containers;
using osu.Game.Beatmaps;
using osu.Game.Beatmaps.ControlPoints;
namespace osu.Game.Graphics.Containers
{
public class BeatSyncedContainer : Container
{
2017-05-24 00:44:47 +08:00
protected readonly Bindable<WorkingBeatmap> Beatmap = new Bindable<WorkingBeatmap>();
2017-05-19 09:19:00 +08:00
private int lastBeat;
private TimingControlPoint lastTimingPoint;
2017-05-23 11:29:43 +08:00
/// <summary>
2017-05-24 00:17:09 +08:00
/// The amount of time before a beat we should fire <see cref="OnNewBeat(int, TimingControlPoint, EffectControlPoint, TrackAmplitudes)"/>.
2017-05-23 11:29:43 +08:00
/// This allows for adding easing to animations that may be synchronised to the beat.
/// </summary>
protected double EarlyActivationMilliseconds;
/// <summary>
/// The time in milliseconds until the next beat.
/// </summary>
public double TimeUntilNextBeat { get; private set; }
protected override void Update()
{
2017-05-24 00:44:47 +08:00
if (Beatmap.Value?.Track == null)
2017-05-22 15:56:40 +08:00
return;
2017-05-24 00:44:47 +08:00
double currentTrackTime = Beatmap.Value.Track.CurrentTime + EarlyActivationMilliseconds;
2017-05-23 11:29:43 +08:00
2017-05-24 00:44:47 +08:00
TimingControlPoint timingPoint = Beatmap.Value.Beatmap.ControlPointInfo.TimingPointAt(currentTrackTime);
EffectControlPoint effectPoint = Beatmap.Value.Beatmap.ControlPointInfo.EffectPointAt(currentTrackTime);
2017-05-22 15:56:40 +08:00
if (timingPoint.BeatLength == 0)
2017-05-22 19:02:02 +08:00
return;
2017-05-23 15:11:46 +08:00
int beatIndex = (int)((currentTrackTime - timingPoint.Time) / timingPoint.BeatLength);
2017-05-22 15:59:44 +08:00
// The beats before the start of the first control point are off by 1, this should do the trick
if (currentTrackTime < timingPoint.Time)
2017-05-23 15:11:46 +08:00
beatIndex--;
2017-05-22 15:56:40 +08:00
TimeUntilNextBeat = (timingPoint.Time - currentTrackTime) % timingPoint.BeatLength;
2017-05-23 15:11:46 +08:00
if (timingPoint == lastTimingPoint && beatIndex == lastBeat)
return;
using (BeginDelayedSequence(TimeUntilNextBeat, true))
2017-05-24 00:44:47 +08:00
OnNewBeat(beatIndex, timingPoint, effectPoint, Beatmap.Value.Track.CurrentAmplitudes);
2017-05-23 15:11:46 +08:00
lastBeat = beatIndex;
lastTimingPoint = timingPoint;
}
[BackgroundDependencyLoader]
private void load(OsuGameBase game)
{
2017-05-24 00:44:47 +08:00
Beatmap.BindTo(game.Beatmap);
}
2017-05-22 19:06:37 +08:00
2017-05-23 15:11:46 +08:00
protected virtual void OnNewBeat(int beatIndex, TimingControlPoint timingPoint, EffectControlPoint effectPoint, TrackAmplitudes amplitudes)
2017-05-22 19:06:37 +08:00
{
}
}
}