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
|
|
|
|
|
2022-06-17 15:37:17 +08:00
|
|
|
|
#nullable disable
|
|
|
|
|
|
2018-08-06 09:55:38 +08:00
|
|
|
|
using osu.Game.Rulesets.Objects;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
using osu.Game.Rulesets.Scoring;
|
|
|
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Judgements
|
|
|
|
|
{
|
2018-08-06 09:55:38 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// The scoring information provided by a <see cref="HitObject"/>.
|
|
|
|
|
/// </summary>
|
2018-04-13 17:19:50 +08:00
|
|
|
|
public class Judgement
|
|
|
|
|
{
|
2019-12-25 18:58:23 +08:00
|
|
|
|
/// <summary>
|
2020-09-29 13:26:12 +08:00
|
|
|
|
/// The score awarded for a small bonus.
|
2019-12-25 18:58:23 +08:00
|
|
|
|
/// </summary>
|
2020-10-01 11:13:24 +08:00
|
|
|
|
public const int SMALL_BONUS_SCORE = 10;
|
2019-12-25 18:58:23 +08:00
|
|
|
|
|
2018-04-13 17:19:50 +08:00
|
|
|
|
/// <summary>
|
2020-09-29 13:26:12 +08:00
|
|
|
|
/// The score awarded for a large bonus.
|
2018-04-13 17:19:50 +08:00
|
|
|
|
/// </summary>
|
2020-10-01 11:13:24 +08:00
|
|
|
|
public const int LARGE_BONUS_SCORE = 50;
|
2020-09-29 13:26:12 +08:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// The default health increase for a maximum judgement, as a proportion of total health.
|
|
|
|
|
/// By default, each maximum judgement restores 5% of total health.
|
|
|
|
|
/// </summary>
|
|
|
|
|
protected const double DEFAULT_MAX_HEALTH_INCREASE = 0.05;
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2020-09-29 13:26:12 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// The maximum <see cref="HitResult"/> that can be achieved.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public virtual HitResult MaxResult => HitResult.Perfect;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// The minimum <see cref="HitResult"/> that can be achieved - the inverse of <see cref="MaxResult"/>.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public HitResult MinResult
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
switch (MaxResult)
|
|
|
|
|
{
|
|
|
|
|
case HitResult.SmallBonus:
|
|
|
|
|
case HitResult.LargeBonus:
|
|
|
|
|
case HitResult.IgnoreHit:
|
|
|
|
|
return HitResult.IgnoreMiss;
|
|
|
|
|
|
|
|
|
|
case HitResult.SmallTickHit:
|
|
|
|
|
return HitResult.SmallTickMiss;
|
|
|
|
|
|
|
|
|
|
case HitResult.LargeTickHit:
|
|
|
|
|
return HitResult.LargeTickMiss;
|
|
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
return HitResult.Miss;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2018-04-13 17:19:50 +08:00
|
|
|
|
/// <summary>
|
2018-08-02 19:35:54 +08:00
|
|
|
|
/// The numeric score representation for the maximum achievable result.
|
2018-04-13 17:19:50 +08:00
|
|
|
|
/// </summary>
|
2020-10-01 11:13:24 +08:00
|
|
|
|
public int MaxNumericResult => ToNumericResult(MaxResult);
|
2018-04-13 17:19:50 +08:00
|
|
|
|
|
2019-04-22 15:51:38 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// The health increase for the maximum achievable result.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public double MaxHealthIncrease => HealthIncreaseFor(MaxResult);
|
|
|
|
|
|
2018-04-13 17:19:50 +08:00
|
|
|
|
/// <summary>
|
2018-08-02 19:35:54 +08:00
|
|
|
|
/// Retrieves the numeric score representation of a <see cref="JudgementResult"/>.
|
2018-04-13 17:19:50 +08:00
|
|
|
|
/// </summary>
|
2018-08-02 19:35:54 +08:00
|
|
|
|
/// <param name="result">The <see cref="JudgementResult"/> to find the numeric score representation for.</param>
|
|
|
|
|
/// <returns>The numeric score representation of <paramref name="result"/>.</returns>
|
2020-10-01 11:13:24 +08:00
|
|
|
|
public int NumericResultFor(JudgementResult result) => ToNumericResult(result.Type);
|
2018-12-06 16:09:42 +08:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Retrieves the numeric health increase of a <see cref="HitResult"/>.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="result">The <see cref="HitResult"/> to find the numeric health increase for.</param>
|
|
|
|
|
/// <returns>The numeric health increase of <paramref name="result"/>.</returns>
|
2019-12-25 18:58:23 +08:00
|
|
|
|
protected virtual double HealthIncreaseFor(HitResult result)
|
|
|
|
|
{
|
|
|
|
|
switch (result)
|
|
|
|
|
{
|
2020-09-29 13:26:12 +08:00
|
|
|
|
default:
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
|
|
case HitResult.SmallTickHit:
|
2020-10-03 17:10:08 +08:00
|
|
|
|
return DEFAULT_MAX_HEALTH_INCREASE * 0.5;
|
2020-09-29 13:26:12 +08:00
|
|
|
|
|
|
|
|
|
case HitResult.SmallTickMiss:
|
2020-10-03 17:10:08 +08:00
|
|
|
|
return -DEFAULT_MAX_HEALTH_INCREASE * 0.5;
|
2020-09-29 13:26:12 +08:00
|
|
|
|
|
|
|
|
|
case HitResult.LargeTickHit:
|
2020-10-03 17:10:08 +08:00
|
|
|
|
return DEFAULT_MAX_HEALTH_INCREASE;
|
2020-09-29 13:26:12 +08:00
|
|
|
|
|
|
|
|
|
case HitResult.LargeTickMiss:
|
2020-10-03 17:10:08 +08:00
|
|
|
|
return -DEFAULT_MAX_HEALTH_INCREASE;
|
2020-09-29 13:26:12 +08:00
|
|
|
|
|
2019-12-25 18:58:23 +08:00
|
|
|
|
case HitResult.Miss:
|
2022-05-19 18:55:51 +08:00
|
|
|
|
return -DEFAULT_MAX_HEALTH_INCREASE * 2;
|
2019-12-25 18:58:23 +08:00
|
|
|
|
|
|
|
|
|
case HitResult.Meh:
|
2022-05-17 14:11:22 +08:00
|
|
|
|
return DEFAULT_MAX_HEALTH_INCREASE * 0.05;
|
2019-12-25 18:58:23 +08:00
|
|
|
|
|
|
|
|
|
case HitResult.Ok:
|
2020-10-03 17:08:51 +08:00
|
|
|
|
return DEFAULT_MAX_HEALTH_INCREASE * 0.5;
|
2019-12-25 18:58:23 +08:00
|
|
|
|
|
|
|
|
|
case HitResult.Good:
|
2020-10-03 17:08:51 +08:00
|
|
|
|
return DEFAULT_MAX_HEALTH_INCREASE * 0.75;
|
2019-12-25 18:58:23 +08:00
|
|
|
|
|
|
|
|
|
case HitResult.Great:
|
2020-10-03 17:08:51 +08:00
|
|
|
|
return DEFAULT_MAX_HEALTH_INCREASE;
|
2019-12-25 18:58:23 +08:00
|
|
|
|
|
|
|
|
|
case HitResult.Perfect:
|
2020-10-03 17:08:51 +08:00
|
|
|
|
return DEFAULT_MAX_HEALTH_INCREASE * 1.05;
|
2019-12-25 18:58:23 +08:00
|
|
|
|
|
2020-09-29 13:26:12 +08:00
|
|
|
|
case HitResult.SmallBonus:
|
2020-10-03 17:10:08 +08:00
|
|
|
|
return DEFAULT_MAX_HEALTH_INCREASE * 0.5;
|
2020-09-29 13:26:12 +08:00
|
|
|
|
|
|
|
|
|
case HitResult.LargeBonus:
|
2020-10-03 17:10:08 +08:00
|
|
|
|
return DEFAULT_MAX_HEALTH_INCREASE;
|
2019-12-25 18:58:23 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
2018-12-06 16:09:42 +08:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Retrieves the numeric health increase of a <see cref="JudgementResult"/>.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="result">The <see cref="JudgementResult"/> to find the numeric health increase for.</param>
|
|
|
|
|
/// <returns>The numeric health increase of <paramref name="result"/>.</returns>
|
|
|
|
|
public double HealthIncreaseFor(JudgementResult result) => HealthIncreaseFor(result.Type);
|
2019-02-21 20:22:16 +08:00
|
|
|
|
|
2020-09-29 13:26:12 +08:00
|
|
|
|
public override string ToString() => $"MaxResult:{MaxResult} MaxScore:{MaxNumericResult}";
|
|
|
|
|
|
2020-10-01 11:13:24 +08:00
|
|
|
|
public static int ToNumericResult(HitResult result)
|
2020-09-29 13:26:12 +08:00
|
|
|
|
{
|
|
|
|
|
switch (result)
|
|
|
|
|
{
|
|
|
|
|
default:
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
|
|
case HitResult.SmallTickHit:
|
2020-10-01 11:13:24 +08:00
|
|
|
|
return 10;
|
2020-09-29 13:26:12 +08:00
|
|
|
|
|
|
|
|
|
case HitResult.LargeTickHit:
|
2020-10-01 11:13:24 +08:00
|
|
|
|
return 30;
|
2020-09-29 13:26:12 +08:00
|
|
|
|
|
|
|
|
|
case HitResult.Meh:
|
2020-10-01 11:13:24 +08:00
|
|
|
|
return 50;
|
2020-09-29 13:26:12 +08:00
|
|
|
|
|
|
|
|
|
case HitResult.Ok:
|
2020-10-01 11:13:24 +08:00
|
|
|
|
return 100;
|
2020-09-29 13:26:12 +08:00
|
|
|
|
|
|
|
|
|
case HitResult.Good:
|
2020-10-01 11:13:24 +08:00
|
|
|
|
return 200;
|
2020-09-29 13:26:12 +08:00
|
|
|
|
|
|
|
|
|
case HitResult.Great:
|
2020-10-01 11:13:24 +08:00
|
|
|
|
return 300;
|
2020-09-29 13:26:12 +08:00
|
|
|
|
|
|
|
|
|
case HitResult.Perfect:
|
2021-04-05 12:28:46 +08:00
|
|
|
|
return 315;
|
2020-09-29 13:26:12 +08:00
|
|
|
|
|
|
|
|
|
case HitResult.SmallBonus:
|
|
|
|
|
return SMALL_BONUS_SCORE;
|
|
|
|
|
|
|
|
|
|
case HitResult.LargeBonus:
|
|
|
|
|
return LARGE_BONUS_SCORE;
|
|
|
|
|
}
|
|
|
|
|
}
|
2018-04-13 17:19:50 +08:00
|
|
|
|
}
|
|
|
|
|
}
|