1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 11:27:24 +08:00
osu-lazer/osu.Game/Storyboards/Drawables/DrawableStoryboardSample.cs

74 lines
2.8 KiB
C#
Raw Normal View History

// 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-06-28 12:43:56 +08:00
2020-06-16 21:54:50 +08:00
using System.Collections.Generic;
using System.Linq;
2018-06-28 12:43:56 +08:00
using osu.Framework.Allocation;
2019-02-21 18:04:31 +08:00
using osu.Framework.Bindables;
2020-06-16 21:54:50 +08:00
using osu.Game.Rulesets.Mods;
using osu.Game.Skinning;
2018-06-28 12:43:56 +08:00
namespace osu.Game.Storyboards.Drawables
{
public class DrawableStoryboardSample : PausableSkinnableSound
2018-06-28 12:43:56 +08:00
{
/// <summary>
/// The amount of time allowable beyond the start time of the sample, for the sample to start.
/// </summary>
private const double allowable_late_start = 100;
private readonly StoryboardSampleInfo sampleInfo;
2020-06-19 04:46:32 +08:00
2018-06-28 12:43:56 +08:00
public override bool RemoveWhenNotAlive => false;
public DrawableStoryboardSample(StoryboardSampleInfo sampleInfo)
: base(sampleInfo)
2018-06-28 12:43:56 +08:00
{
this.sampleInfo = sampleInfo;
LifetimeStart = sampleInfo.StartTime;
2018-06-28 12:43:56 +08:00
}
[Resolved]
private IBindable<IReadOnlyList<Mod>> mods { get; set; }
2018-06-28 12:43:56 +08:00
protected override void SkinChanged(ISkinSource skin, bool allowFallback)
{
base.SkinChanged(skin, allowFallback);
2020-06-16 21:54:50 +08:00
2020-06-20 02:15:14 +08:00
foreach (var mod in mods.Value.OfType<IApplicableToSample>())
{
foreach (var sample in SamplesContainer)
mod.ApplyToSample(sample);
}
2018-06-28 12:43:56 +08:00
}
protected override void Update()
{
base.Update();
if (Time.Current < sampleInfo.StartTime)
2018-06-28 12:43:56 +08:00
{
// We've rewound before the start time of the sample
Stop();
2018-06-28 12:43:56 +08:00
// In the case that the user fast-forwards to a point far beyond the start time of the sample,
// we want to be able to fall into the if-conditional below (therefore we must not have a life time end)
LifetimeStart = sampleInfo.StartTime;
2018-06-28 12:43:56 +08:00
LifetimeEnd = double.MaxValue;
}
else if (Time.Current - Time.Elapsed <= sampleInfo.StartTime)
2018-06-28 12:43:56 +08:00
{
// We've passed the start time of the sample. We only play the sample if we're within an allowable range
// from the sample's start, to reduce layering if we've been fast-forwarded far into the future
if (!RequestedPlaying && Time.Current - sampleInfo.StartTime < allowable_late_start)
Play();
2018-06-28 12:43:56 +08:00
// In the case that the user rewinds to a point far behind the start time of the sample,
// we want to be able to fall into the if-conditional above (therefore we must not have a life time start)
LifetimeStart = double.MinValue;
LifetimeEnd = sampleInfo.StartTime;
2018-06-28 12:43:56 +08:00
}
}
}
}