mirror of
https://github.com/ppy/osu.git
synced 2024-11-07 16:47:24 +08:00
d7c09e7dbd
# Conflicts: # osu.Game.Rulesets.Catch/Judgements/CatchDropletJudgement.cs # osu.Game.Rulesets.Catch/Judgements/CatchJudgement.cs # osu.Game.Rulesets.Mania/Scoring/ManiaScoreProcessor.cs # osu.Game.Rulesets.Osu/Replays/OsuAutoGenerator.cs # osu.Game.Rulesets.Osu/UI/Cursor/CursorTrail.cs # osu.Game.Tests/Visual/SongSelect/TestCaseBeatmapScoresContainer.cs # osu.Game/Graphics/OsuFont.cs # osu.Game/Online/API/Requests/Responses/APILegacyScoreInfo.cs # osu.Game/Overlays/Profile/Header/BadgeContainer.cs # osu.Game/Overlays/Profile/ProfileHeader.cs # osu.Game/Screens/Select/PlaySongSelect.cs # osu.Game/Skinning/LegacySkinDecoder.cs
45 lines
1.3 KiB
C#
45 lines
1.3 KiB
C#
// 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.Game.Rulesets.Judgements;
|
|
using osu.Game.Rulesets.Objects.Types;
|
|
using osu.Game.Rulesets.Scoring;
|
|
|
|
namespace osu.Game.Rulesets.Catch.Judgements
|
|
{
|
|
public class CatchJudgement : Judgement
|
|
{
|
|
public override HitResult MaxResult => HitResult.Perfect;
|
|
|
|
protected override int NumericResultFor(HitResult result)
|
|
{
|
|
switch (result)
|
|
{
|
|
default:
|
|
return 0;
|
|
|
|
case HitResult.Perfect:
|
|
return 300;
|
|
}
|
|
}
|
|
|
|
protected override double HealthIncreaseFor(HitResult result)
|
|
{
|
|
switch (result)
|
|
{
|
|
default:
|
|
return -0.02;
|
|
|
|
case HitResult.Perfect:
|
|
return 0.01;
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Whether fruit on the platter should explode or drop.
|
|
/// Note that this is only checked if the owning object is also <see cref="IHasComboInformation.LastInCombo" />
|
|
/// </summary>
|
|
public virtual bool ShouldExplodeFor(JudgementResult result) => result.IsHit;
|
|
}
|
|
}
|