2022-01-29 20:38:12 +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-01-29 21:49:40 +08:00
|
|
|
using System;
|
|
|
|
using System.Linq;
|
|
|
|
using osu.Framework.Bindables;
|
2022-01-29 20:38:12 +08:00
|
|
|
using osu.Framework.Graphics;
|
2022-01-29 21:49:40 +08:00
|
|
|
using osu.Framework.Graphics.Sprites;
|
|
|
|
using osu.Framework.Input.Bindings;
|
|
|
|
using osu.Framework.Input.Events;
|
2022-01-29 20:38:12 +08:00
|
|
|
using osu.Game.Rulesets.Mods;
|
|
|
|
using osu.Game.Rulesets.Osu.Objects;
|
2022-01-29 21:49:40 +08:00
|
|
|
using osu.Game.Rulesets.Scoring;
|
2022-01-29 20:38:12 +08:00
|
|
|
using osu.Game.Rulesets.UI;
|
2022-01-29 21:49:40 +08:00
|
|
|
using osu.Game.Screens.Play;
|
2022-01-29 20:38:12 +08:00
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Osu.Mods
|
|
|
|
{
|
2022-01-29 21:49:40 +08:00
|
|
|
public class OsuModAlternate : Mod, IApplicableToDrawableRuleset<OsuHitObject>, IApplicableToPlayer, IUpdatableByPlayfield
|
2022-01-29 20:38:12 +08:00
|
|
|
{
|
2022-01-29 21:49:40 +08:00
|
|
|
public override string Name => @"Alternate";
|
|
|
|
public override string Acronym => @"AL";
|
|
|
|
public override string Description => @"Don't use the same key twice in a row!";
|
|
|
|
public override double ScoreMultiplier => 1.0;
|
|
|
|
public override Type[] IncompatibleMods => new[] { typeof(ModAutoplay) };
|
2022-02-02 12:58:13 +08:00
|
|
|
public override ModType Type => ModType.Conversion;
|
2022-01-29 21:49:40 +08:00
|
|
|
public override IconUsage? Icon => FontAwesome.Solid.Keyboard;
|
|
|
|
|
|
|
|
private bool introEnded;
|
|
|
|
private double earliestStartTime;
|
|
|
|
private IBindable<bool> isBreakTime;
|
2022-01-29 20:38:12 +08:00
|
|
|
private const double flash_duration = 1000;
|
|
|
|
private OsuAction? lastActionPressed;
|
|
|
|
private DrawableRuleset<OsuHitObject> ruleset;
|
|
|
|
|
2022-01-29 21:49:40 +08:00
|
|
|
public void ApplyToDrawableRuleset(DrawableRuleset<OsuHitObject> drawableRuleset)
|
2022-01-29 20:38:12 +08:00
|
|
|
{
|
|
|
|
ruleset = drawableRuleset;
|
2022-01-29 21:49:40 +08:00
|
|
|
drawableRuleset.KeyBindingInputManager.Add(new InputInterceptor(this));
|
|
|
|
|
|
|
|
var firstHitObject = ruleset.Objects.FirstOrDefault();
|
|
|
|
earliestStartTime = (firstHitObject?.StartTime ?? 0) - (firstHitObject?.HitWindows.WindowFor(HitResult.Meh) ?? 0);
|
2022-01-29 20:38:12 +08:00
|
|
|
}
|
|
|
|
|
2022-01-29 21:49:40 +08:00
|
|
|
public void ApplyToPlayer(Player player)
|
2022-01-29 20:38:12 +08:00
|
|
|
{
|
2022-01-29 21:49:40 +08:00
|
|
|
isBreakTime = player.IsBreakTime.GetBoundCopy();
|
|
|
|
isBreakTime.ValueChanged += e =>
|
|
|
|
{
|
|
|
|
if (e.NewValue)
|
|
|
|
lastActionPressed = null;
|
|
|
|
};
|
2022-01-29 20:38:12 +08:00
|
|
|
}
|
|
|
|
|
2022-02-02 13:02:48 +08:00
|
|
|
private bool checkCorrectAction(OsuAction action)
|
2022-01-29 20:38:12 +08:00
|
|
|
{
|
2022-02-02 13:02:48 +08:00
|
|
|
if (isBreakTime.Value)
|
|
|
|
return true;
|
|
|
|
|
|
|
|
if (!introEnded)
|
|
|
|
return true;
|
|
|
|
|
|
|
|
if (lastActionPressed != action)
|
2022-01-29 20:38:12 +08:00
|
|
|
{
|
2022-02-02 13:02:48 +08:00
|
|
|
// User alternated correctly
|
|
|
|
lastActionPressed = action;
|
2022-01-29 20:38:12 +08:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2022-02-02 13:02:48 +08:00
|
|
|
ruleset.Cursor.FlashColour(Colour4.Red, flash_duration, Easing.OutQuint);
|
2022-01-29 20:38:12 +08:00
|
|
|
return false;
|
|
|
|
}
|
2022-01-29 21:49:40 +08:00
|
|
|
|
|
|
|
public void Update(Playfield playfield)
|
|
|
|
{
|
|
|
|
if (!introEnded)
|
|
|
|
introEnded = playfield.Clock.CurrentTime > earliestStartTime;
|
|
|
|
}
|
|
|
|
|
|
|
|
private class InputInterceptor : Component, IKeyBindingHandler<OsuAction>
|
|
|
|
{
|
|
|
|
private readonly OsuModAlternate mod;
|
|
|
|
|
|
|
|
public InputInterceptor(OsuModAlternate mod)
|
|
|
|
{
|
|
|
|
this.mod = mod;
|
|
|
|
}
|
|
|
|
|
|
|
|
public bool OnPressed(KeyBindingPressEvent<OsuAction> e)
|
2022-02-02 13:02:48 +08:00
|
|
|
// if the pressed action is incorrect, block it from reaching gameplay.
|
|
|
|
=> !mod.checkCorrectAction(e.Action);
|
2022-01-29 21:49:40 +08:00
|
|
|
|
|
|
|
public void OnReleased(KeyBindingReleaseEvent<OsuAction> e)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
}
|
2022-01-29 20:38:12 +08:00
|
|
|
}
|
|
|
|
}
|