osu/osu.Game/Rulesets/Objects/Legacy/ConvertSlider.cs

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

57 lines
1.9 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 09:19:50 +00:00
2022-06-17 07:37:17 +00:00
#nullable disable
2017-04-18 07:05:58 +00:00
using osu.Game.Rulesets.Objects.Types;
2017-03-15 03:57:17 +00:00
using System.Collections.Generic;
using Newtonsoft.Json;
using osu.Game.Audio;
2017-07-26 04:22:46 +00:00
using osu.Game.Beatmaps;
using osu.Game.Beatmaps.ControlPoints;
2018-04-13 09:19:50 +00:00
namespace osu.Game.Rulesets.Objects.Legacy
{
2021-01-06 16:46:44 +00:00
internal abstract class ConvertSlider : ConvertHitObject, IHasPathWithRepeats, IHasLegacyLastTickOffset
{
/// <summary>
/// Scoring distance with a speed-adjusted beat length of 1 second.
/// </summary>
private const float base_scoring_distance = 100;
2018-04-13 09:19:50 +00:00
/// <summary>
/// <see cref="ConvertSlider"/>s don't need a curve since they're converted to ruleset-specific hitobjects.
/// </summary>
public SliderPath Path { get; set; }
2018-04-13 09:19:50 +00:00
2018-11-12 05:07:48 +00:00
public double Distance => Path.Distance;
2018-04-13 09:19:50 +00:00
public IList<IList<HitSampleInfo>> NodeSamples { get; set; }
public int RepeatCount { get; set; }
2018-04-13 09:19:50 +00:00
[JsonIgnore]
2020-05-27 03:37:44 +00:00
public double Duration
2020-02-05 08:12:26 +00:00
{
2020-05-27 03:37:44 +00:00
get => this.SpanCount() * Distance / Velocity;
2020-02-06 04:16:32 +00:00
set => throw new System.NotSupportedException($"Adjust via {nameof(RepeatCount)} instead"); // can be implemented if/when needed.
2020-02-05 08:12:26 +00:00
}
2020-05-27 03:37:44 +00:00
public double EndTime => StartTime + Duration;
2018-04-13 09:19:50 +00:00
2017-05-29 03:19:51 +00:00
public double Velocity = 1;
2018-04-13 09:19:50 +00:00
protected override void ApplyDefaultsToSelf(ControlPointInfo controlPointInfo, IBeatmapDifficultyInfo difficulty)
{
base.ApplyDefaultsToSelf(controlPointInfo, difficulty);
2018-04-13 09:19:50 +00:00
TimingControlPoint timingPoint = controlPointInfo.TimingPointAt(StartTime);
2018-04-13 09:19:50 +00:00
double scoringDistance = base_scoring_distance * difficulty.SliderMultiplier * DifficultyControlPoint.SliderVelocity;
2018-04-13 09:19:50 +00:00
Velocity = scoringDistance / timingPoint.BeatLength;
}
2018-06-13 13:20:34 +00:00
public double LegacyLastTickOffset => 36;
}
}