osu/osu.Game/Screens/Play/ComboEffects.cs

60 lines
1.9 KiB
C#
Raw Normal View History

2019-06-29 16:28:40 +00: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.
using osu.Framework.Allocation;
using osu.Framework.Bindables;
using osu.Framework.Graphics.Containers;
2019-06-30 12:58:30 +00:00
using osu.Game.Audio;
using osu.Game.Configuration;
2019-06-29 16:28:40 +00:00
using osu.Game.Rulesets.Scoring;
using osu.Game.Skinning;
namespace osu.Game.Screens.Play
{
public class ComboEffects : CompositeDrawable
{
2019-06-30 12:58:30 +00:00
private readonly ScoreProcessor processor;
private SkinnableSound comboBreakSample;
2019-06-29 16:28:40 +00:00
private Bindable<bool> alwaysPlay;
private bool firstTime = true;
2019-06-29 16:28:40 +00:00
public ComboEffects(ScoreProcessor processor)
{
2019-06-30 12:58:30 +00:00
this.processor = processor;
2019-06-29 16:28:40 +00:00
}
2019-06-30 12:58:30 +00:00
[BackgroundDependencyLoader]
private void load(OsuConfigManager config)
2019-06-29 16:28:40 +00:00
{
InternalChild = comboBreakSample = new SkinnableSound(new SampleInfo("Gameplay/combobreak"));
alwaysPlay = config.GetBindable<bool>(OsuSetting.AlwaysPlayFirstComboBreak);
2019-06-29 16:28:40 +00:00
}
2019-06-30 12:58:30 +00:00
protected override void LoadComplete()
2019-06-29 16:28:40 +00:00
{
2019-06-30 12:58:30 +00:00
base.LoadComplete();
processor.Combo.BindValueChanged(onComboChange);
2019-06-30 12:58:30 +00:00
}
[Resolved(canBeNull: true)]
private ISamplePlaybackDisabler samplePlaybackDisabler { get; set; }
2019-06-30 12:58:30 +00:00
private void onComboChange(ValueChangedEvent<int> combo)
{
2020-07-14 11:15:29 +00:00
if (combo.NewValue == 0 && (combo.OldValue > 20 || (alwaysPlay.Value && firstTime)))
{
firstTime = false;
// combo break isn't a pausable sound itself as we want to let it play out.
// we still need to disable during seeks, though.
if (samplePlaybackDisabler?.SamplePlaybackDisabled.Value == true)
return;
comboBreakSample?.Play();
}
2019-06-29 16:28:40 +00:00
}
}
2019-06-30 12:58:30 +00:00
}