2019-08-21 02:17:27 +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.
|
|
|
|
|
|
|
|
using osu.Framework.Audio;
|
|
|
|
using osu.Framework.Bindables;
|
|
|
|
using osu.Game.Rulesets.Osu.Judgements;
|
|
|
|
using osu.Game.Rulesets.Scoring;
|
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Osu.Objects.Drawables
|
|
|
|
{
|
|
|
|
public class DrawableSpinnerTick : DrawableOsuHitObject
|
|
|
|
{
|
|
|
|
private readonly BindableDouble bonusSampleVolume = new BindableDouble();
|
|
|
|
|
|
|
|
private bool hasBonusPoints;
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Whether this judgement has a bonus of 1,000 points additional to the numeric result.
|
2019-12-25 10:34:12 +08:00
|
|
|
/// Set when a spin occured after the spinner has completed.
|
2019-08-21 02:17:27 +08:00
|
|
|
/// </summary>
|
|
|
|
public bool HasBonusPoints
|
|
|
|
{
|
|
|
|
get => hasBonusPoints;
|
|
|
|
internal set
|
|
|
|
{
|
|
|
|
hasBonusPoints = value;
|
|
|
|
|
|
|
|
bonusSampleVolume.Value = value ? 1 : 0;
|
|
|
|
((OsuSpinnerTickJudgement)Result.Judgement).HasBonusPoints = value;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public override bool DisplayResult => false;
|
|
|
|
|
|
|
|
public DrawableSpinnerTick(SpinnerTick spinnerTick)
|
|
|
|
: base(spinnerTick)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
protected override void LoadComplete()
|
|
|
|
{
|
|
|
|
base.LoadComplete();
|
|
|
|
|
|
|
|
Samples.AddAdjustment(AdjustableProperty.Volume, bonusSampleVolume);
|
|
|
|
}
|
|
|
|
|
2019-12-25 10:34:12 +08:00
|
|
|
/// <summary>
|
|
|
|
/// Apply a judgement result.
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="hit">Whether to apply a <see cref="HitResult.Great"/> result, <see cref="HitResult.Miss"/> otherwise.</param>
|
|
|
|
internal void TriggerResult(bool hit)
|
2019-10-14 05:39:20 +08:00
|
|
|
{
|
|
|
|
HitObject.StartTime = Time.Current;
|
2019-12-25 10:34:12 +08:00
|
|
|
ApplyResult(r => r.Type = hit ? HitResult.Great : HitResult.Miss);
|
2019-10-14 05:39:20 +08:00
|
|
|
}
|
2019-08-21 02:17:27 +08:00
|
|
|
}
|
|
|
|
}
|