1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 07:27:25 +08:00
osu-lazer/osu.Game.Rulesets.Osu/Mods/OsuModClassic.cs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

80 lines
3.2 KiB
C#
Raw Normal View History

2021-02-03 22:08:59 +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.
2022-06-17 15:37:17 +08:00
#nullable disable
2022-03-09 05:47:54 +08:00
using System;
2021-02-03 22:08:59 +08:00
using System.Linq;
2021-02-05 14:23:03 +08:00
using osu.Framework.Bindables;
using osu.Game.Configuration;
2021-02-03 22:08:59 +08:00
using osu.Game.Rulesets.Mods;
using osu.Game.Rulesets.Objects;
2021-02-05 15:59:13 +08:00
using osu.Game.Rulesets.Objects.Drawables;
2021-02-03 22:08:59 +08:00
using osu.Game.Rulesets.Osu.Objects;
2021-02-05 15:59:13 +08:00
using osu.Game.Rulesets.Osu.Objects.Drawables;
2021-02-05 14:23:03 +08:00
using osu.Game.Rulesets.Osu.UI;
using osu.Game.Rulesets.UI;
2021-02-03 22:08:59 +08:00
namespace osu.Game.Rulesets.Osu.Mods
{
public class OsuModClassic : ModClassic, IApplicableToHitObject, IApplicableToDrawableHitObject, IApplicableToDrawableRuleset<OsuHitObject>
2021-02-03 22:08:59 +08:00
{
public override Type[] IncompatibleMods => base.IncompatibleMods.Append(typeof(OsuModStrictTracking)).ToArray();
2022-03-09 05:47:54 +08:00
[SettingSource("No slider head accuracy requirement", "Scores sliders proportionally to the number of ticks hit.")]
public Bindable<bool> NoSliderHeadAccuracy { get; } = new BindableBool(true);
2021-02-05 14:23:03 +08:00
[SettingSource("No slider head movement", "Pins slider heads at their starting position, regardless of time.")]
public Bindable<bool> NoSliderHeadMovement { get; } = new BindableBool(true);
2021-02-05 14:23:03 +08:00
[SettingSource("Apply classic note lock", "Applies note lock to the full hit window.")]
public Bindable<bool> ClassicNoteLock { get; } = new BindableBool(true);
2021-02-05 14:23:03 +08:00
[SettingSource("Use fixed slider follow circle hit area", "Makes the slider follow circle track its final size at all times.")]
public Bindable<bool> FixedFollowCircleHitArea { get; } = new BindableBool(true);
2021-02-05 15:59:13 +08:00
[SettingSource("Always play a slider's tail sample", "Always plays a slider's tail sample regardless of whether it was hit or not.")]
public Bindable<bool> AlwaysPlayTailSample { get; } = new BindableBool(true);
2021-02-03 22:08:59 +08:00
public void ApplyToHitObject(HitObject hitObject)
{
switch (hitObject)
{
case Slider slider:
slider.OnlyJudgeNestedObjects = !NoSliderHeadAccuracy.Value;
2021-02-03 22:08:59 +08:00
foreach (var head in slider.NestedHitObjects.OfType<SliderHeadCircle>())
head.JudgeAsNormalHitCircle = !NoSliderHeadAccuracy.Value;
2021-02-03 22:08:59 +08:00
break;
}
}
2021-02-05 14:23:03 +08:00
public void ApplyToDrawableRuleset(DrawableRuleset<OsuHitObject> drawableRuleset)
{
var osuRuleset = (DrawableOsuRuleset)drawableRuleset;
if (ClassicNoteLock.Value)
2021-02-05 14:23:03 +08:00
osuRuleset.Playfield.HitPolicy = new ObjectOrderedHitPolicy();
}
2021-02-05 15:59:13 +08:00
public void ApplyToDrawableHitObject(DrawableHitObject obj)
2021-02-05 15:59:13 +08:00
{
switch (obj)
2021-02-05 15:59:13 +08:00
{
case DrawableSlider slider:
slider.Ball.InputTracksVisualSize = !FixedFollowCircleHitArea.Value;
break;
case DrawableSliderHead head:
head.TrackFollowCircle = !NoSliderHeadMovement.Value;
break;
case DrawableSliderTail tail:
tail.SamplePlaysOnlyOnHit = !AlwaysPlayTailSample.Value;
break;
2021-02-05 15:59:13 +08:00
}
}
2021-02-03 22:08:59 +08:00
}
}