1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-23 06:07:25 +08:00
osu-lazer/osu.Game/Screens/Play/ComboEffects.cs

51 lines
1.5 KiB
C#
Raw Normal View History

2019-06-30 00:28:40 +08: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 20:58:30 +08:00
using osu.Game.Audio;
using osu.Game.Configuration;
2019-06-30 00:28:40 +08:00
using osu.Game.Rulesets.Scoring;
using osu.Game.Skinning;
namespace osu.Game.Screens.Play
{
public class ComboEffects : CompositeDrawable
{
2019-06-30 20:58:30 +08:00
private readonly ScoreProcessor processor;
private SkinnableSound comboBreakSample;
2019-06-30 00:28:40 +08:00
private Bindable<bool> alwaysPlay;
private bool firstTime = true;
2019-06-30 00:28:40 +08:00
public ComboEffects(ScoreProcessor processor)
{
2019-06-30 20:58:30 +08:00
this.processor = processor;
2019-06-30 00:28:40 +08:00
}
2019-06-30 20:58:30 +08:00
[BackgroundDependencyLoader]
private void load(OsuConfigManager config)
2019-06-30 00:28:40 +08:00
{
2019-06-30 20:58:30 +08:00
InternalChild = comboBreakSample = new SkinnableSound(new SampleInfo("combobreak"));
alwaysPlay = config.GetBindable<bool>(OsuSetting.AlwaysPlayFirstComboBreak);
2019-06-30 00:28:40 +08:00
}
2019-06-30 20:58:30 +08:00
protected override void LoadComplete()
2019-06-30 00:28:40 +08:00
{
2019-06-30 20:58:30 +08:00
base.LoadComplete();
processor.Combo.BindValueChanged(onComboChange);
2019-06-30 20:58:30 +08:00
}
private void onComboChange(ValueChangedEvent<int> combo)
{
2020-07-14 19:15:29 +08:00
if (combo.NewValue == 0 && (combo.OldValue > 20 || (alwaysPlay.Value && firstTime)))
{
2019-06-30 20:58:30 +08:00
comboBreakSample?.Play();
firstTime = false;
}
2019-06-30 00:28:40 +08:00
}
}
2019-06-30 20:58:30 +08:00
}