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.ComponentModel;
|
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Scoring
|
|
|
|
{
|
|
|
|
public enum HitResult
|
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// Indicates that the object has not been judged yet.
|
|
|
|
/// </summary>
|
|
|
|
[Description(@"")]
|
|
|
|
None,
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Indicates that the object has been judged as a miss.
|
|
|
|
/// </summary>
|
2019-09-06 14:24:00 +08:00
|
|
|
/// <remarks>
|
|
|
|
/// This miss window should determine how early a hit can be before it is considered for judgement (as opposed to being ignored as
|
|
|
|
/// "too far in the future). It should also define when a forced miss should be triggered (as a result of no user input in time).
|
|
|
|
/// </remarks>
|
2018-04-13 17:19:50 +08:00
|
|
|
[Description(@"Miss")]
|
|
|
|
Miss,
|
|
|
|
|
|
|
|
[Description(@"Meh")]
|
|
|
|
Meh,
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Optional judgement.
|
|
|
|
/// </summary>
|
|
|
|
[Description(@"OK")]
|
|
|
|
Ok,
|
|
|
|
|
|
|
|
[Description(@"Good")]
|
|
|
|
Good,
|
|
|
|
|
|
|
|
[Description(@"Great")]
|
|
|
|
Great,
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Optional judgement.
|
|
|
|
/// </summary>
|
|
|
|
[Description(@"Perfect")]
|
|
|
|
Perfect,
|
2020-04-16 17:16:08 +08:00
|
|
|
|
2020-05-04 14:55:42 +08:00
|
|
|
/// <summary>
|
|
|
|
/// Indicates small tick miss.
|
|
|
|
/// </summary>
|
2020-04-16 17:16:08 +08:00
|
|
|
SmallTickMiss,
|
2020-05-04 14:55:42 +08:00
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Indicates a small tick hit.
|
|
|
|
/// </summary>
|
|
|
|
SmallTickHit,
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Indicates a large tick miss.
|
|
|
|
/// </summary>
|
2020-04-16 17:16:08 +08:00
|
|
|
LargeTickMiss,
|
2020-05-04 14:55:42 +08:00
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Indicates a large tick hit.
|
|
|
|
/// </summary>
|
|
|
|
LargeTickHit
|
2018-04-13 17:19:50 +08:00
|
|
|
}
|
|
|
|
}
|