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
|
|
|
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
2020-05-15 17:07:41 +08:00
|
|
|
|
using System.Threading;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
using osu.Game.Audio;
|
|
|
|
|
using osu.Game.Beatmaps;
|
|
|
|
|
using osu.Game.Beatmaps.ControlPoints;
|
2020-02-23 12:01:30 +08:00
|
|
|
|
using osu.Game.Rulesets.Judgements;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
using osu.Game.Rulesets.Objects;
|
|
|
|
|
using osu.Game.Rulesets.Objects.Types;
|
|
|
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Catch.Objects
|
|
|
|
|
{
|
2020-05-26 16:44:47 +08:00
|
|
|
|
public class JuiceStream : CatchHitObject, IHasPathWithRepeats
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Positional distance that results in a duration of one second, before any speed adjustments.
|
|
|
|
|
/// </summary>
|
|
|
|
|
private const float base_scoring_distance = 100;
|
|
|
|
|
|
2020-02-23 12:01:30 +08:00
|
|
|
|
public override Judgement CreateJudgement() => new IgnoreJudgement();
|
|
|
|
|
|
2018-04-13 17:19:50 +08:00
|
|
|
|
public int RepeatCount { get; set; }
|
|
|
|
|
|
2020-03-10 16:49:51 +08:00
|
|
|
|
public double Velocity { get; private set; }
|
|
|
|
|
public double TickDistance { get; private set; }
|
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();
|
|
|
|
|
|
2018-04-13 17:19:50 +08:00
|
|
|
|
protected override void ApplyDefaultsToSelf(ControlPointInfo controlPointInfo, BeatmapDifficulty difficulty)
|
|
|
|
|
{
|
|
|
|
|
base.ApplyDefaultsToSelf(controlPointInfo, difficulty);
|
|
|
|
|
|
|
|
|
|
TimingControlPoint timingPoint = controlPointInfo.TimingPointAt(StartTime);
|
|
|
|
|
DifficultyControlPoint difficultyPoint = controlPointInfo.DifficultyPointAt(StartTime);
|
|
|
|
|
|
|
|
|
|
double scoringDistance = base_scoring_distance * difficulty.SliderMultiplier * difficultyPoint.SpeedMultiplier;
|
|
|
|
|
|
|
|
|
|
Velocity = scoringDistance / timingPoint.BeatLength;
|
|
|
|
|
TickDistance = scoringDistance / difficulty.SliderTickRate;
|
|
|
|
|
}
|
|
|
|
|
|
2020-05-15 17:07:41 +08:00
|
|
|
|
protected override void CreateNestedHitObjects(CancellationToken cancellationToken)
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2020-05-15 17:07:41 +08:00
|
|
|
|
base.CreateNestedHitObjects(cancellationToken);
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2020-03-10 17:05:44 +08:00
|
|
|
|
var dropletSamples = Samples.Select(s => new HitSampleInfo
|
2019-01-26 15:16:49 +08:00
|
|
|
|
{
|
|
|
|
|
Bank = s.Bank,
|
|
|
|
|
Name = @"slidertick",
|
|
|
|
|
Volume = s.Volume
|
|
|
|
|
}).ToList();
|
|
|
|
|
|
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))
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2019-03-08 18:57:30 +08:00
|
|
|
|
// generate tiny droplets since the last point
|
|
|
|
|
if (lastEvent != null)
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2019-03-11 13:36:29 +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
|
|
|
|
|
{
|
2019-03-11 13:36:29 +08:00
|
|
|
|
StartTime = t + lastEvent.Value.Time,
|
2019-03-08 18:57:30 +08:00
|
|
|
|
X = X + Path.PositionAt(
|
2020-07-01 23:21:45 +08:00
|
|
|
|
lastEvent.Value.PathProgress + (t / sinceLastTick) * (e.PathProgress - lastEvent.Value.PathProgress)).X,
|
2019-03-08 18:57:30 +08:00
|
|
|
|
});
|
|
|
|
|
}
|
2019-01-26 15:14:37 +08:00
|
|
|
|
}
|
2019-03-08 18:57:30 +08:00
|
|
|
|
}
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2019-03-08 19:12:48 +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
|
2018-04-13 17:19:50 +08:00
|
|
|
|
{
|
2020-03-10 17:05:44 +08:00
|
|
|
|
Samples = dropletSamples,
|
2019-03-11 13:36:29 +08:00
|
|
|
|
StartTime = e.Time,
|
2020-07-01 23:21:45 +08:00
|
|
|
|
X = X + 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 = Samples,
|
2019-03-11 13:36:29 +08:00
|
|
|
|
StartTime = e.Time,
|
2020-07-01 23:21:45 +08:00
|
|
|
|
X = X + Path.PositionAt(e.PathProgress).X,
|
2018-04-13 17:19:50 +08:00
|
|
|
|
});
|
2019-01-21 16:53:00 +08:00
|
|
|
|
break;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-07-01 23:21:45 +08:00
|
|
|
|
public float EndX => X + this.CurvePositionAt(1).X;
|
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;
|
2020-02-06 12:16:32 +08:00
|
|
|
|
set => throw new System.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
|
|
|
|
|
2019-12-09 16:48:27 +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.ExpectedDistance.Value = null;
|
|
|
|
|
|
|
|
|
|
if (value != null)
|
|
|
|
|
{
|
2019-12-16 14:27:54 +08:00
|
|
|
|
path.ControlPoints.AddRange(value.ControlPoints.Select(c => new PathControlPoint(c.Position.Value, c.Type.Value)));
|
2019-12-06 19:53:40 +08:00
|
|
|
|
path.ExpectedDistance.Value = value.ExpectedDistance.Value;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
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
|
|
|
|
|
2019-11-08 13:04:57 +08:00
|
|
|
|
public List<IList<HitSampleInfo>> NodeSamples { get; set; } = new List<IList<HitSampleInfo>>();
|
2018-06-13 21:20:34 +08:00
|
|
|
|
|
|
|
|
|
public double? LegacyLastTickOffset { get; set; }
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
}
|