Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adjust classic slider mechanics to better mimic osu!stable #25732

Closed
wants to merge 3 commits into from

Conversation

smoogipoo
Copy link
Contributor

@smoogipoo smoogipoo commented Dec 12, 2023

Supersedes / closes #25594
Resolves #11769

We're not going to be changing the lazer mechanics for the time being. Even so, it's worth making the classic mod more faithfully reproduce osu!stable's mechanics.

Object No mod Classic Mod
Head Great / Ok / Meh / Miss LargeTickHit / LargeTickMiss
Tick LargeTickHit / LargeTickMiss LargeTickHit / LargeTickMiss
Repeat LargeTickHit / LargeTickMiss LargeTickHit / LargeTickMiss
Tail LargeTickHit / IgnoreMiss LargeTickHit / IgnoreMiss
Slider IgnoreHit / IgnoreMiss Great / Ok / Meh / Miss (no combo gain)

Note that this does mean the number of slider ticks between NM and CL are different, but I think this is fine. Historically, ticks haven't been displayed on the results screen, and ticks themselves are not used for any calculations.

Comment on lines +94 to +98
/// <summary>
/// Whether the given <see cref="HitResult"/> affects combo in coordination with this <see cref="Judgement"/>.
/// </summary>
/// <param name="result">The hit result.</param>
public virtual bool AffectsCombo(HitResult result) => result.AffectsCombo();
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Uh... when I proposed this flag months ago you brought up that this has implications on other components that rely on MaximumStatistics to compute max combo. So... how are they going to be addressed?

Because as far as I can see

public static int GetMaximumAchievableCombo(this ScoreInfo score) => score.MaximumStatistics.Where(kvp => kvp.Key.AffectsCombo()).Sum(kvp => kvp.Value);

is not changed in this pull and becomes straight up incorrect with this change?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I... totally forgot about that...

@smoogipoo
Copy link
Contributor Author

As per above comment, this needs more thinking

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Sliders gives combo for slider end when player misses slider end in Classic mod
2 participants