1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-06 23:37:20 +08:00

38 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 18:19:50 +09:00
using osu.Framework.Audio;
using osu.Framework.Audio.Track;
2019-12-09 20:40:38 +09:00
using osu.Framework.Bindables;
using osu.Framework.Graphics.Sprites;
2018-04-13 18:19:50 +09: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;
2018-04-13 18:19:50 +09:00
public override string Description => "Whoaaaaa...";
2019-12-09 20:40:38 +09:00
private readonly BindableNumber<double> tempoAdjust = new BindableDouble(1);
private readonly BindableNumber<double> freqAdjust = new BindableDouble(1);
2019-12-12 15:25:37 +09:00
protected ModDaycore()
2018-04-13 18:19:50 +09:00
{
2019-12-09 20:40:38 +09:00
SpeedChange.BindValueChanged(val =>
{
freqAdjust.Value = SpeedChange.Default;
tempoAdjust.Value = val.NewValue / SpeedChange.Default;
}, true);
2018-04-13 18:19:50 +09:00
}
2019-12-11 19:43:32 +09:00
public override void ApplyToTrack(ITrack track)
2019-12-11 19:43:32 +09:00
{
// base.ApplyToTrack() intentionally not called (different tempo adjustment is applied)
2020-08-12 01:41:21 +09:00
track.AddAdjustment(AdjustableProperty.Frequency, freqAdjust);
track.AddAdjustment(AdjustableProperty.Tempo, tempoAdjust);
2019-12-11 19:43:32 +09:00
}
2018-04-13 18:19:50 +09:00
}
}