2017-06-06 05:45:22 +08:00
|
|
|
|
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
|
|
|
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
|
|
|
|
|
|
using System;
|
|
|
|
|
using osu.Game.Rulesets.Osu.Objects;
|
|
|
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Osu.OsuDifficulty.Preprocessing
|
|
|
|
|
{
|
2017-06-07 00:59:46 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// A wrapper around <see cref="OsuHitObject"/> extending it with additional data required for difficulty calculation.
|
|
|
|
|
/// </summary>
|
2017-06-06 05:45:22 +08:00
|
|
|
|
public class OsuDifficultyHitObject
|
|
|
|
|
{
|
2017-06-06 21:39:37 +08:00
|
|
|
|
/// <summary>
|
2017-06-07 00:59:46 +08:00
|
|
|
|
/// The <see cref="OsuHitObject"/> this <see cref="OsuDifficultyHitObject"/> refers to.
|
2017-06-06 21:39:37 +08:00
|
|
|
|
/// </summary>
|
2017-06-06 05:45:22 +08:00
|
|
|
|
public OsuHitObject BaseObject { get; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
2017-06-07 00:59:46 +08:00
|
|
|
|
/// Normalized distance from the <see cref="OsuHitObject.StackedPosition"/> of the previous <see cref="OsuDifficultyHitObject"/>.
|
2017-06-06 05:45:22 +08:00
|
|
|
|
/// </summary>
|
|
|
|
|
public double Distance { get; private set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
2017-06-07 00:59:46 +08:00
|
|
|
|
/// Milliseconds elapsed since the StartTime of the previous <see cref="OsuDifficultyHitObject"/>.
|
2017-06-06 05:45:22 +08:00
|
|
|
|
/// </summary>
|
2017-06-06 21:39:37 +08:00
|
|
|
|
public double DeltaTime { get; private set; }
|
2017-06-06 05:45:22 +08:00
|
|
|
|
|
2017-06-06 21:39:37 +08:00
|
|
|
|
/// <summary>
|
2017-06-07 01:09:26 +08:00
|
|
|
|
/// Number of milliseconds until the <see cref="OsuDifficultyHitObject"/> has to be hit.
|
2017-06-06 21:39:37 +08:00
|
|
|
|
/// </summary>
|
|
|
|
|
public double TimeUntilHit { get; set; }
|
2017-06-06 05:45:22 +08:00
|
|
|
|
|
|
|
|
|
private const int normalized_radius = 52;
|
|
|
|
|
|
2017-06-06 07:08:34 +08:00
|
|
|
|
private readonly OsuHitObject[] t;
|
2017-06-06 05:45:22 +08:00
|
|
|
|
|
2017-06-06 21:39:37 +08:00
|
|
|
|
/// <summary>
|
2017-06-07 00:59:46 +08:00
|
|
|
|
/// Initializes the object calculating extra data required for difficulty calculation.
|
2017-06-06 21:39:37 +08:00
|
|
|
|
/// </summary>
|
2017-06-06 05:45:22 +08:00
|
|
|
|
public OsuDifficultyHitObject(OsuHitObject[] triangle)
|
|
|
|
|
{
|
|
|
|
|
t = triangle;
|
|
|
|
|
BaseObject = t[0];
|
|
|
|
|
setDistances();
|
|
|
|
|
setTimingValues();
|
|
|
|
|
// Calculate angle here
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void setDistances()
|
|
|
|
|
{
|
|
|
|
|
// We will scale distances by this factor, so we can assume a uniform CircleSize among beatmaps.
|
|
|
|
|
double scalingFactor = normalized_radius / BaseObject.Radius;
|
|
|
|
|
if (BaseObject.Radius < 30)
|
|
|
|
|
{
|
|
|
|
|
double smallCircleBonus = Math.Min(30 - BaseObject.Radius, 5) / 50;
|
|
|
|
|
scalingFactor *= 1 + smallCircleBonus;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Distance = (t[0].StackedPosition - t[1].StackedPosition).Length * scalingFactor;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void setTimingValues()
|
|
|
|
|
{
|
|
|
|
|
// Every timing inverval is hard capped at the equivalent of 375 BPM streaming speed as a safety measure.
|
2017-06-06 21:39:37 +08:00
|
|
|
|
DeltaTime = Math.Max(40, t[0].StartTime - t[1].StartTime);
|
|
|
|
|
TimeUntilHit = 450; // BaseObject.PreEmpt;
|
2017-06-06 05:45:22 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|