1
0
mirror of https://github.com/ppy/osu.git synced 2024-10-01 23:37:30 +08:00
osu-lazer/osu.Game.Rulesets.Osu/Judgements/OsuJudgement.cs

49 lines
1.2 KiB
C#
Raw Normal View History

// 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 osu.Game.Rulesets.Judgements;
using osu.Game.Rulesets.Scoring;
namespace osu.Game.Rulesets.Osu.Judgements
{
public class OsuJudgement : Judgement
{
public override HitResult MaxResult => HitResult.Great;
protected override int NumericResultFor(HitResult result)
{
switch (result)
{
default:
return 0;
2019-04-01 11:44:46 +08:00
2018-04-13 17:19:50 +08:00
case HitResult.Meh:
return 50;
2019-04-01 11:44:46 +08:00
2018-04-13 17:19:50 +08:00
case HitResult.Good:
return 100;
2019-04-01 11:44:46 +08:00
2018-04-13 17:19:50 +08:00
case HitResult.Great:
return 300;
}
}
2019-04-22 16:24:42 +08:00
protected override double HealthIncreaseFor(HitResult result)
{
switch (result)
{
case HitResult.Miss:
return -0.02;
2019-04-22 16:24:42 +08:00
case HitResult.Meh:
case HitResult.Good:
case HitResult.Great:
return 0.01;
2019-04-22 16:24:42 +08:00
default:
return 0;
}
}
2018-04-13 17:19:50 +08:00
}
}