2019-01-24 17:43:03 +09: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.
|
2018-04-13 18:19:50 +09:00
|
|
|
|
|
2019-12-09 19:41:31 +09:00
|
|
|
|
using osu.Framework.Audio;
|
2020-08-06 18:25:34 +09:00
|
|
|
|
using osu.Framework.Audio.Track;
|
2019-12-09 20:40:38 +09:00
|
|
|
|
using osu.Framework.Bindables;
|
2019-03-27 19:29:27 +09:00
|
|
|
|
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";
|
2018-11-30 17:16:00 +09:00
|
|
|
|
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
|
|
|
|
|
2020-08-06 18:25:34 +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
|
|
|
|
}
|
|
|
|
|
}
|