1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 15:27:26 +08:00
osu-lazer/osu.Game.Rulesets.Catch/Objects/JuiceStream.cs

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

155 lines
5.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 17:19:50 +08:00
using System;
2017-10-10 15:34:01 +08:00
using System.Collections.Generic;
using System.Linq;
using System.Threading;
using Newtonsoft.Json;
2017-10-10 15:34:01 +08:00
using osu.Game.Audio;
using osu.Game.Beatmaps;
using osu.Game.Beatmaps.ControlPoints;
using osu.Game.Rulesets.Catch.UI;
using osu.Game.Rulesets.Judgements;
2017-10-10 15:34:01 +08:00
using osu.Game.Rulesets.Objects;
using osu.Game.Rulesets.Objects.Types;
2018-04-13 17:19:50 +08:00
2017-10-10 15:34:01 +08:00
namespace osu.Game.Rulesets.Catch.Objects
{
public class JuiceStream : CatchHitObject, IHasPathWithRepeats
2017-10-10 15:34:01 +08:00
{
/// <summary>
2017-10-12 21:27:22 +08:00
/// Positional distance that results in a duration of one second, before any speed adjustments.
2017-10-10 15:34:01 +08:00
/// </summary>
private const float base_scoring_distance = 100;
2018-04-13 17:19:50 +08:00
public override Judgement CreateJudgement() => new IgnoreJudgement();
public int RepeatCount { get; set; }
2018-04-13 17:19:50 +08:00
[JsonIgnore]
private double velocityFactor;
[JsonIgnore]
private double tickDistanceFactor;
[JsonIgnore]
public double Velocity => velocityFactor * DifficultyControlPoint.SliderVelocity;
[JsonIgnore]
public double TickDistance => tickDistanceFactor * DifficultyControlPoint.SliderVelocity;
2018-04-13 17:19:50 +08:00
2019-03-08 18:57:30 +08:00
/// <summary>
/// The length of one span of this <see cref="JuiceStream"/>.
/// </summary>
public double SpanDuration => Duration / this.SpanCount();
protected override void ApplyDefaultsToSelf(ControlPointInfo controlPointInfo, IBeatmapDifficultyInfo difficulty)
2017-10-10 15:34:01 +08:00
{
base.ApplyDefaultsToSelf(controlPointInfo, difficulty);
2018-04-13 17:19:50 +08:00
2017-10-10 15:34:01 +08:00
TimingControlPoint timingPoint = controlPointInfo.TimingPointAt(StartTime);
2018-04-13 17:19:50 +08:00
velocityFactor = base_scoring_distance * difficulty.SliderMultiplier / timingPoint.BeatLength;
tickDistanceFactor = base_scoring_distance * difficulty.SliderMultiplier / difficulty.SliderTickRate;
2017-10-10 15:34:01 +08:00
}
2018-04-13 17:19:50 +08:00
protected override void CreateNestedHitObjects(CancellationToken cancellationToken)
2017-10-10 15:34:01 +08:00
{
base.CreateNestedHitObjects(cancellationToken);
2018-04-13 17:19:50 +08:00
2020-12-01 14:37:51 +08:00
var dropletSamples = Samples.Select(s => s.With(@"slidertick")).ToList();
2019-01-26 15:16:49 +08:00
int nodeIndex = 0;
2019-03-08 18:57:30 +08:00
SliderEventDescriptor? lastEvent = null;
2018-04-13 17:19:50 +08:00
2020-05-15 17:17:39 +08:00
foreach (var e in SliderEventGenerator.Generate(StartTime, SpanDuration, Velocity, TickDistance, Path.Distance, this.SpanCount(), LegacyLastTickOffset, cancellationToken))
{
2019-03-08 18:57:30 +08:00
// generate tiny droplets since the last point
if (lastEvent != null)
2017-10-10 15:34:01 +08:00
{
double sinceLastTick = e.Time - lastEvent.Value.Time;
2018-04-13 17:19:50 +08:00
2019-03-08 18:57:30 +08:00
if (sinceLastTick > 80)
2018-06-13 21:20:34 +08:00
{
2019-03-08 18:57:30 +08:00
double timeBetweenTiny = sinceLastTick;
while (timeBetweenTiny > 100)
timeBetweenTiny /= 2;
2018-06-13 21:20:34 +08:00
2019-03-08 18:57:30 +08:00
for (double t = timeBetweenTiny; t < sinceLastTick; t += timeBetweenTiny)
{
2020-05-15 17:17:39 +08:00
cancellationToken.ThrowIfCancellationRequested();
2019-03-08 18:57:30 +08:00
AddNested(new TinyDroplet
{
StartTime = t + lastEvent.Value.Time,
2022-09-21 23:14:02 +08:00
X = ClampToPlayfield(EffectiveX + Path.PositionAt(
lastEvent.Value.PathProgress + (t / sinceLastTick) * (e.PathProgress - lastEvent.Value.PathProgress)).X),
2019-03-08 18:57:30 +08:00
});
}
}
2019-03-08 18:57:30 +08:00
}
2018-04-13 17:19:50 +08:00
// this also includes LegacyLastTick and this is used for TinyDroplet generation above.
// this means that the final segment of TinyDroplets are increasingly mistimed where LegacyLastTickOffset is being applied.
2019-03-08 18:57:30 +08:00
lastEvent = e;
2018-04-13 17:19:50 +08:00
2019-03-08 18:57:30 +08:00
switch (e.Type)
{
case SliderEventType.Tick:
AddNested(new Droplet
{
Samples = dropletSamples,
StartTime = e.Time,
2022-09-21 23:14:02 +08:00
X = ClampToPlayfield(EffectiveX + Path.PositionAt(e.PathProgress).X),
2019-03-08 18:57:30 +08:00
});
break;
2019-04-01 11:44:46 +08:00
2019-03-08 18:57:30 +08:00
case SliderEventType.Head:
case SliderEventType.Tail:
case SliderEventType.Repeat:
AddNested(new Fruit
{
Samples = this.GetNodeSamples(nodeIndex++),
StartTime = e.Time,
2022-09-21 23:14:02 +08:00
X = ClampToPlayfield(EffectiveX + Path.PositionAt(e.PathProgress).X),
});
break;
2017-10-10 15:34:01 +08:00
}
}
}
2018-04-13 17:19:50 +08:00
2022-09-21 23:14:02 +08:00
public float EndX => ClampToPlayfield(EffectiveX + this.CurvePositionAt(1).X);
2022-09-21 23:14:02 +08:00
public float ClampToPlayfield(float value) => Math.Clamp(value, 0, CatchPlayfield.WIDTH);
2020-05-27 11:37:44 +08:00
[JsonIgnore]
2020-05-27 11:37:44 +08:00
public double Duration
2020-02-05 16:12:26 +08:00
{
2020-05-27 11:37:44 +08:00
get => this.SpanCount() * Path.Distance / Velocity;
set => throw new NotSupportedException($"Adjust via {nameof(RepeatCount)} instead"); // can be implemented if/when needed.
2020-02-05 16:12:26 +08:00
}
2018-04-13 17:19:50 +08:00
2020-05-27 11:37:44 +08:00
public double EndTime => StartTime + Duration;
2018-04-13 17:19:50 +08:00
private readonly SliderPath path = new SliderPath();
2019-12-06 19:53:40 +08:00
public SliderPath Path
{
get => path;
set
{
path.ControlPoints.Clear();
path.ControlPoints.AddRange(value.ControlPoints.Select(c => new PathControlPoint(c.Position, c.Type)));
path.ExpectedDistance.Value = value.ExpectedDistance.Value;
2019-12-06 19:53:40 +08:00
}
}
2018-04-13 17:19:50 +08:00
2018-11-12 13:07:48 +08:00
public double Distance => Path.Distance;
2018-04-13 17:19:50 +08:00
public IList<IList<HitSampleInfo>> NodeSamples { get; set; } = new List<IList<HitSampleInfo>>();
2018-06-13 21:20:34 +08:00
public double? LegacyLastTickOffset { get; set; }
2017-10-10 15:34:01 +08:00
}
}