2019-01-24 16:43:03 +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.
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2021-06-11 15:07:38 +08:00
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
|
using osu.Game.Beatmaps;
|
|
|
|
|
using osu.Game.Beatmaps.ControlPoints;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
using osu.Game.Rulesets.Mods;
|
2021-06-11 18:09:40 +08:00
|
|
|
|
using osu.Game.Rulesets.Objects;
|
2021-05-15 11:51:39 +08:00
|
|
|
|
using osu.Game.Rulesets.Objects.Drawables;
|
2021-06-11 18:09:40 +08:00
|
|
|
|
using osu.Game.Rulesets.Scoring;
|
2021-06-11 15:07:38 +08:00
|
|
|
|
using osu.Game.Rulesets.Taiko.Objects.Drawables;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Taiko.Mods
|
|
|
|
|
{
|
2021-06-11 15:07:38 +08:00
|
|
|
|
public class TaikoModHidden : ModHidden, IApplicableToDifficulty
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
|
|
|
|
public override string Description => @"Beats fade out before you hit them!";
|
|
|
|
|
public override double ScoreMultiplier => 1.06;
|
2021-06-11 15:07:38 +08:00
|
|
|
|
|
2021-06-16 04:32:26 +08:00
|
|
|
|
/// <summary>
|
2021-06-16 15:28:57 +08:00
|
|
|
|
/// In osu-stable, the hit position is 160, so the active playfield is essentially 160 pixels shorter
|
2021-06-16 04:32:26 +08:00
|
|
|
|
/// than the actual screen width. The normalized playfield height is 480, so on a 4:3 screen the
|
|
|
|
|
/// playfield ratio of the active area up to the hit position will actually be (640 - 160) / 480 = 1.
|
|
|
|
|
/// For custom resolutions/aspect ratios (x:y), the screen width given the normalized height becomes 480 * x / y instead,
|
|
|
|
|
/// and the playfield ratio becomes (480 * x / y - 160) / 480 = x / y - 1/3.
|
|
|
|
|
/// This constant is equal to the playfield ratio on 4:3 screens divided by the playfield ratio on 16:9 screens.
|
|
|
|
|
/// </summary>
|
2021-06-11 16:54:30 +08:00
|
|
|
|
private const double hd_sv_scale = (4.0 / 3.0 - 1.0 / 3.0) / (16.0 / 9.0 - 1.0 / 3.0);
|
2021-06-16 04:32:26 +08:00
|
|
|
|
|
2021-06-16 04:57:20 +08:00
|
|
|
|
private double originalSliderMultiplier;
|
2021-06-16 15:28:57 +08:00
|
|
|
|
|
2021-06-11 15:07:38 +08:00
|
|
|
|
private ControlPointInfo controlPointInfo;
|
|
|
|
|
|
2021-05-15 11:51:39 +08:00
|
|
|
|
protected override void ApplyIncreasedVisibilityState(DrawableHitObject hitObject, ArmedState state)
|
|
|
|
|
{
|
2021-06-11 15:07:38 +08:00
|
|
|
|
ApplyNormalVisibilityState(hitObject, state);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected double MultiplierAt(double position)
|
|
|
|
|
{
|
2021-06-16 15:24:30 +08:00
|
|
|
|
double beatLength = controlPointInfo.TimingPointAt(position).BeatLength;
|
|
|
|
|
double speedMultiplier = controlPointInfo.DifficultyPointAt(position).SpeedMultiplier;
|
|
|
|
|
|
|
|
|
|
return originalSliderMultiplier * speedMultiplier * TimingControlPoint.DEFAULT_BEAT_LENGTH / beatLength;
|
2021-05-15 11:51:39 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override void ApplyNormalVisibilityState(DrawableHitObject hitObject, ArmedState state)
|
|
|
|
|
{
|
2021-06-11 15:07:38 +08:00
|
|
|
|
switch (hitObject)
|
|
|
|
|
{
|
|
|
|
|
case DrawableDrumRollTick _:
|
|
|
|
|
case DrawableHit _:
|
2021-06-16 15:32:59 +08:00
|
|
|
|
double preempt = 10000 / MultiplierAt(hitObject.HitObject.StartTime);
|
|
|
|
|
double start = hitObject.HitObject.StartTime - preempt * 0.6;
|
|
|
|
|
double duration = preempt * 0.3;
|
2021-06-11 15:07:38 +08:00
|
|
|
|
|
2021-06-16 15:32:59 +08:00
|
|
|
|
using (hitObject.BeginAbsoluteSequence(start))
|
|
|
|
|
{
|
|
|
|
|
hitObject.FadeOut(duration);
|
2021-06-11 15:07:38 +08:00
|
|
|
|
|
2021-06-16 15:32:59 +08:00
|
|
|
|
// DrawableHitObject sets LifetimeEnd to LatestTransformEndTime if it isn't manually changed.
|
|
|
|
|
// in order for the object to not be killed before its actual end time (as the latest transform ends earlier), set lifetime end explicitly.
|
|
|
|
|
hitObject.LifetimeEnd = state == ArmedState.Idle || !hitObject.AllJudged
|
|
|
|
|
? hitObject.HitObject.GetEndTime() + hitObject.HitObject.HitWindows.WindowFor(HitResult.Miss)
|
|
|
|
|
: hitObject.HitStateUpdateTime;
|
|
|
|
|
}
|
2021-06-11 15:07:38 +08:00
|
|
|
|
|
2021-06-16 15:32:59 +08:00
|
|
|
|
break;
|
2021-06-11 15:07:38 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void ReadFromDifficulty(BeatmapDifficulty difficulty)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void ApplyToDifficulty(BeatmapDifficulty difficulty)
|
|
|
|
|
{
|
2021-06-16 15:28:57 +08:00
|
|
|
|
// needs to be read after all processing has been run (TaikoBeatmapConverter applies an adjustment which would otherwise be omitted).
|
2021-06-16 04:57:20 +08:00
|
|
|
|
originalSliderMultiplier = difficulty.SliderMultiplier;
|
2021-06-16 05:00:09 +08:00
|
|
|
|
|
2021-06-16 15:28:57 +08:00
|
|
|
|
// osu-stable has an added playfield cover that essentially forces a 4:3 playfield ratio, by cutting off all objects past that size.
|
|
|
|
|
// This is not yet implemented; instead a playfield adjustment container is present which maintains a 16:9 ratio.
|
|
|
|
|
// For now, increase the slider multiplier proportionally so that the notes stay on the screen for the same amount of time as on stable.
|
|
|
|
|
// Note that this means that the notes will scroll faster as they have a longer distance to travel on the screen in that same amount of time.
|
2021-06-11 15:07:38 +08:00
|
|
|
|
difficulty.SliderMultiplier /= hd_sv_scale;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public override void ApplyToBeatmap(IBeatmap beatmap)
|
|
|
|
|
{
|
|
|
|
|
controlPointInfo = beatmap.ControlPointInfo;
|
2021-05-15 11:51:39 +08:00
|
|
|
|
}
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
}
|