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

50 lines
1.8 KiB
C#
Raw Normal View History

2021-10-15 06:30:55 +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.
using System;
using System.Diagnostics;
using System.Linq;
using osu.Framework.Bindables;
2022-08-11 04:09:11 +08:00
using osu.Framework.Localisation;
using osu.Framework.Utils;
using osu.Game.Beatmaps;
using osu.Game.Rulesets.Mods;
using osu.Game.Rulesets.Osu.Objects;
2022-10-15 03:14:23 +08:00
using osu.Game.Rulesets.Osu.UI;
using osu.Game.Rulesets.UI;
using osu.Game.Utils;
2021-10-15 06:30:55 +08:00
namespace osu.Game.Rulesets.Osu.Mods
{
public class OsuModNoScope : ModNoScope, IUpdatableByPlayfield, IApplicableToBeatmap
2021-10-15 06:30:55 +08:00
{
2022-08-11 04:09:11 +08:00
public override LocalisableString Description => "Where's the cursor?";
2022-07-31 21:43:16 +08:00
private PeriodTracker spinnerPeriods = null!;
2021-10-15 06:30:55 +08:00
2022-09-26 03:49:22 +08:00
public override BindableInt HiddenComboCount { get; } = new BindableInt(10)
{
MinValue = 0,
MaxValue = 50,
};
public void ApplyToBeatmap(IBeatmap beatmap)
{
spinnerPeriods = new PeriodTracker(beatmap.HitObjects.OfType<Spinner>().Select(b => new Period(b.StartTime - TRANSITION_DURATION, b.EndTime)));
2021-10-15 06:30:55 +08:00
}
2021-11-10 19:00:36 +08:00
public void Update(Playfield playfield)
2021-10-15 06:30:55 +08:00
{
var osuPlayfield = (OsuPlayfield)playfield;
Debug.Assert(osuPlayfield.Cursor != null);
bool shouldAlwaysShowCursor = IsBreakTime.Value || spinnerPeriods.IsInAny(osuPlayfield.Clock.CurrentTime);
float targetAlpha = shouldAlwaysShowCursor ? 1 : ComboBasedAlpha;
float currentAlpha = (float)Interpolation.Lerp(osuPlayfield.Cursor.Alpha, targetAlpha, Math.Clamp(osuPlayfield.Time.Elapsed / TRANSITION_DURATION, 0, 1));
2022-10-15 03:14:23 +08:00
osuPlayfield.Cursor.Alpha = currentAlpha;
osuPlayfield.Smoke.Alpha = currentAlpha;
2021-10-15 06:30:55 +08:00
}
}
}