2019-11-29 09:25:24 +00:00
|
|
|
|
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
2019-01-24 08:43:03 +00:00
|
|
|
|
// See the LICENCE file in the repository root for full licence text.
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
2019-05-10 17:44:22 +00:00
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
|
using osu.Framework.Input;
|
|
|
|
|
using osu.Framework.Input.Bindings;
|
|
|
|
|
using osu.Framework.Input.Events;
|
|
|
|
|
using osu.Game.Rulesets.Catch.Objects;
|
|
|
|
|
using osu.Game.Rulesets.Catch.UI;
|
2018-04-13 09:19:50 +00:00
|
|
|
|
using osu.Game.Rulesets.Mods;
|
2019-05-10 17:44:22 +00:00
|
|
|
|
using osu.Game.Rulesets.UI;
|
2020-04-21 06:28:25 +00:00
|
|
|
|
using osu.Game.Screens.Play;
|
2019-05-10 17:44:22 +00:00
|
|
|
|
using osuTK;
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
2019-05-11 08:03:59 +00:00
|
|
|
|
namespace osu.Game.Rulesets.Catch.Mods
|
|
|
|
|
{
|
2020-04-21 06:28:25 +00:00
|
|
|
|
public class CatchModRelax : ModRelax, IApplicableToDrawableRuleset<CatchHitObject>, IApplicableToPlayer
|
2019-05-11 08:03:59 +00:00
|
|
|
|
{
|
2018-04-13 09:19:50 +00:00
|
|
|
|
public override string Description => @"Use the mouse to control the catcher.";
|
2019-05-10 17:44:22 +00:00
|
|
|
|
|
2020-04-21 06:28:25 +00:00
|
|
|
|
private DrawableRuleset<CatchHitObject> drawableRuleset;
|
|
|
|
|
|
2019-11-29 09:25:24 +00:00
|
|
|
|
public void ApplyToDrawableRuleset(DrawableRuleset<CatchHitObject> drawableRuleset)
|
|
|
|
|
{
|
2020-04-21 06:28:25 +00:00
|
|
|
|
this.drawableRuleset = drawableRuleset;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void ApplyToPlayer(Player player)
|
|
|
|
|
{
|
|
|
|
|
if (!drawableRuleset.HasReplayLoaded.Value)
|
|
|
|
|
drawableRuleset.Cursor.Add(new MouseInputHelper((CatchPlayfield)drawableRuleset.Playfield));
|
2019-11-29 09:25:24 +00:00
|
|
|
|
}
|
2019-05-10 17:44:22 +00:00
|
|
|
|
|
2019-11-29 09:25:24 +00:00
|
|
|
|
private class MouseInputHelper : Drawable, IKeyBindingHandler<CatchAction>, IRequireHighFrequencyMousePosition
|
2019-05-11 08:03:59 +00:00
|
|
|
|
{
|
2020-03-13 03:59:30 +00:00
|
|
|
|
private readonly Catcher catcher;
|
2019-05-10 17:44:22 +00:00
|
|
|
|
|
2019-11-29 09:25:24 +00:00
|
|
|
|
public override bool ReceivePositionalInputAt(Vector2 screenSpacePos) => true;
|
|
|
|
|
|
|
|
|
|
public MouseInputHelper(CatchPlayfield playfield)
|
2019-05-11 08:03:59 +00:00
|
|
|
|
{
|
2019-11-29 09:25:24 +00:00
|
|
|
|
catcher = playfield.CatcherArea.MovableCatcher;
|
2019-05-10 17:44:22 +00:00
|
|
|
|
RelativeSizeAxes = Axes.Both;
|
|
|
|
|
}
|
|
|
|
|
|
2020-05-05 01:31:11 +00:00
|
|
|
|
// disable keyboard controls
|
2019-05-10 17:44:22 +00:00
|
|
|
|
public bool OnPressed(CatchAction action) => true;
|
2020-01-22 04:22:34 +00:00
|
|
|
|
|
|
|
|
|
public void OnReleased(CatchAction action)
|
|
|
|
|
{
|
|
|
|
|
}
|
2019-05-10 17:44:22 +00:00
|
|
|
|
|
2019-05-11 08:03:59 +00:00
|
|
|
|
protected override bool OnMouseMove(MouseMoveEvent e)
|
|
|
|
|
{
|
2020-08-23 15:34:57 +00:00
|
|
|
|
catcher.UpdatePosition(e.MousePosition.X / DrawSize.X * CatchPlayfield.WIDTH);
|
2019-05-10 17:44:22 +00:00
|
|
|
|
return base.OnMouseMove(e);
|
|
|
|
|
}
|
|
|
|
|
}
|
2018-04-13 09:19:50 +00:00
|
|
|
|
}
|
|
|
|
|
}
|