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

43 lines
1.2 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;
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
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()
2019-06-30 00:28:40 +08:00
{
2019-06-30 20:58:30 +08:00
InternalChild = comboBreakSample = new SkinnableSound(new SampleInfo("combobreak"));
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, true);
}
private void onComboChange(ValueChangedEvent<int> combo)
{
if (combo.NewValue == 0 && combo.OldValue > 20)
comboBreakSample?.Play();
2019-06-30 00:28:40 +08:00
}
}
2019-06-30 20:58:30 +08:00
}