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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

37 lines
1.3 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-04-13 17:19:50 +08:00
using osu.Framework.Audio;
2019-12-09 19:40:38 +08:00
using osu.Framework.Bindables;
using osu.Framework.Graphics.Sprites;
2018-04-13 17:19:50 +08:00
2017-05-31 00:49:06 +08:00
namespace osu.Game.Rulesets.Mods
{
public abstract class ModDaycore : ModHalfTime
{
public override string Name => "Daycore";
public override string Acronym => "DC";
2020-01-14 21:23:09 +08:00
public override IconUsage? Icon => null;
public override string Description => "Whoaaaaa...";
2018-04-13 17:19:50 +08:00
2019-12-09 19:40:38 +08:00
private readonly BindableNumber<double> tempoAdjust = new BindableDouble(1);
private readonly BindableNumber<double> freqAdjust = new BindableDouble(1);
2019-12-12 14:25:37 +08:00
protected ModDaycore()
2017-05-31 00:49:06 +08:00
{
2019-12-09 19:40:38 +08:00
SpeedChange.BindValueChanged(val =>
{
freqAdjust.Value = SpeedChange.Default;
tempoAdjust.Value = val.NewValue / SpeedChange.Default;
}, true);
2017-05-31 00:49:06 +08:00
}
2019-12-11 18:43:32 +08:00
public override void ApplyToTrack(IAdjustableAudioComponent track)
2019-12-11 18:43:32 +08:00
{
// base.ApplyToTrack() intentionally not called (different tempo adjustment is applied)
2020-08-12 00:41:21 +08:00
track.AddAdjustment(AdjustableProperty.Frequency, freqAdjust);
track.AddAdjustment(AdjustableProperty.Tempo, tempoAdjust);
2019-12-11 18:43:32 +08:00
}
2017-05-31 00:49:06 +08:00
}
2018-01-05 19:21:19 +08:00
}