2022-03-10 16:42:58 +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.
|
|
|
|
|
2023-01-10 16:27:21 +08:00
|
|
|
#nullable disable
|
|
|
|
#pragma warning disable IDE0001 // Simplify Names
|
|
|
|
|
|
|
|
using System;
|
2022-03-10 16:42:58 +08:00
|
|
|
using System.Collections.Generic;
|
2022-07-22 15:08:57 +08:00
|
|
|
using System.Diagnostics;
|
2022-03-10 16:42:58 +08:00
|
|
|
using osu.Framework.Allocation;
|
2022-07-22 17:16:01 +08:00
|
|
|
using osu.Framework.Extensions.Color4Extensions;
|
2022-03-10 16:42:58 +08:00
|
|
|
using osu.Framework.Graphics;
|
|
|
|
using osu.Framework.Graphics.Containers;
|
|
|
|
using osu.Framework.Graphics.Shapes;
|
|
|
|
using osu.Framework.Input.Bindings;
|
|
|
|
using osu.Framework.Input.Events;
|
|
|
|
using osu.Game.Graphics;
|
2023-01-10 16:27:21 +08:00
|
|
|
using osu.Game.Rulesets.Taiko.Configuration;
|
2022-03-10 16:42:58 +08:00
|
|
|
using osuTK;
|
2022-07-22 15:18:22 +08:00
|
|
|
using osuTK.Graphics;
|
2022-03-10 16:42:58 +08:00
|
|
|
|
|
|
|
namespace osu.Game.Rulesets.Taiko.UI
|
|
|
|
{
|
2023-01-10 16:27:21 +08:00
|
|
|
using TaikoInput = TaikoAction;
|
2022-03-10 16:42:58 +08:00
|
|
|
/// <summary>
|
2022-07-22 15:18:22 +08:00
|
|
|
/// An overlay that captures and displays osu!taiko mouse and touch input.
|
2022-03-10 16:42:58 +08:00
|
|
|
/// </summary>
|
2022-07-22 16:48:07 +08:00
|
|
|
public partial class DrumTouchInputArea : VisibilityContainer
|
2022-03-10 16:42:58 +08:00
|
|
|
{
|
2022-07-22 16:48:07 +08:00
|
|
|
// visibility state affects our child. we always want to handle input.
|
|
|
|
public override bool PropagatePositionalInputSubTree => true;
|
|
|
|
public override bool PropagateNonPositionalInputSubTree => true;
|
|
|
|
|
2022-07-22 15:08:57 +08:00
|
|
|
private KeyBindingContainer<TaikoAction> keyBindingContainer = null!;
|
2022-03-10 16:42:58 +08:00
|
|
|
|
2023-01-10 16:27:21 +08:00
|
|
|
|
2022-07-22 16:02:58 +08:00
|
|
|
private readonly Dictionary<object, TaikoAction> trackedActions = new Dictionary<object, TaikoAction>();
|
2022-03-10 16:42:58 +08:00
|
|
|
|
2022-07-22 16:17:38 +08:00
|
|
|
private Container mainContent = null!;
|
2022-03-10 16:42:58 +08:00
|
|
|
|
2022-07-22 16:48:07 +08:00
|
|
|
private QuarterCircle leftCentre = null!;
|
|
|
|
private QuarterCircle rightCentre = null!;
|
2022-07-22 17:07:10 +08:00
|
|
|
private QuarterCircle leftRim = null!;
|
|
|
|
private QuarterCircle rightRim = null!;
|
2022-03-11 20:43:57 +08:00
|
|
|
|
2022-07-22 16:17:38 +08:00
|
|
|
[BackgroundDependencyLoader]
|
2023-01-10 16:27:21 +08:00
|
|
|
private void load(TaikoInputManager taikoInputManager, TaikoRulesetConfigManager config, OsuColour colours)
|
2022-03-12 21:01:40 +08:00
|
|
|
{
|
2022-07-22 16:17:38 +08:00
|
|
|
Debug.Assert(taikoInputManager.KeyBindingContainer != null);
|
|
|
|
keyBindingContainer = taikoInputManager.KeyBindingContainer;
|
2022-07-22 15:18:22 +08:00
|
|
|
|
2022-07-22 16:17:38 +08:00
|
|
|
// Container should handle input everywhere.
|
|
|
|
RelativeSizeAxes = Axes.Both;
|
2022-07-22 15:18:22 +08:00
|
|
|
|
2022-07-22 16:48:07 +08:00
|
|
|
const float centre_region = 0.80f;
|
|
|
|
|
2023-01-10 16:27:21 +08:00
|
|
|
var touchControlScheme = config.GetBindable<TaikoTouchControlScheme>(TaikoRulesetSetting.TouchControlScheme).Value;
|
2022-03-10 16:42:58 +08:00
|
|
|
Children = new Drawable[]
|
|
|
|
{
|
2022-07-22 16:17:38 +08:00
|
|
|
new Container
|
2022-06-02 13:36:07 +08:00
|
|
|
{
|
2022-07-22 16:17:38 +08:00
|
|
|
Anchor = Anchor.BottomCentre,
|
|
|
|
Origin = Anchor.BottomCentre,
|
|
|
|
RelativeSizeAxes = Axes.X,
|
2022-07-22 16:48:07 +08:00
|
|
|
Height = 350,
|
2022-07-22 16:17:38 +08:00
|
|
|
Y = 20,
|
|
|
|
Masking = true,
|
|
|
|
FillMode = FillMode.Fit,
|
2022-03-10 16:42:58 +08:00
|
|
|
Children = new Drawable[]
|
|
|
|
{
|
2022-07-22 16:17:38 +08:00
|
|
|
mainContent = new Container
|
2022-06-02 13:36:07 +08:00
|
|
|
{
|
2022-03-10 21:09:07 +08:00
|
|
|
RelativeSizeAxes = Axes.Both,
|
2022-07-22 16:17:38 +08:00
|
|
|
Children = new Drawable[]
|
|
|
|
{
|
2023-01-10 16:27:21 +08:00
|
|
|
leftRim = new QuarterCircle(TaikoInput.LeftRim, touchControlScheme, colours)
|
2022-07-22 16:17:38 +08:00
|
|
|
{
|
2022-07-22 16:48:07 +08:00
|
|
|
Anchor = Anchor.BottomCentre,
|
|
|
|
Origin = Anchor.BottomRight,
|
|
|
|
X = -2,
|
2022-07-22 16:17:38 +08:00
|
|
|
},
|
2023-01-10 16:27:21 +08:00
|
|
|
rightRim = new QuarterCircle(TaikoInput.RightRim, touchControlScheme, colours)
|
2022-07-22 16:17:38 +08:00
|
|
|
{
|
2022-07-22 16:48:07 +08:00
|
|
|
Anchor = Anchor.BottomCentre,
|
|
|
|
Origin = Anchor.BottomRight,
|
|
|
|
X = 2,
|
|
|
|
Rotation = 90,
|
2022-07-22 16:17:38 +08:00
|
|
|
},
|
2023-01-10 16:27:21 +08:00
|
|
|
leftCentre = new QuarterCircle(TaikoInput.LeftCentre, touchControlScheme, colours)
|
2022-07-22 16:17:38 +08:00
|
|
|
{
|
|
|
|
Anchor = Anchor.BottomCentre,
|
2022-07-22 16:48:07 +08:00
|
|
|
Origin = Anchor.BottomRight,
|
|
|
|
X = -2,
|
|
|
|
Scale = new Vector2(centre_region),
|
2022-07-22 16:17:38 +08:00
|
|
|
},
|
2023-01-10 16:27:21 +08:00
|
|
|
rightCentre = new QuarterCircle(TaikoInput.RightCentre, touchControlScheme, colours)
|
2022-07-22 16:48:07 +08:00
|
|
|
{
|
|
|
|
Anchor = Anchor.BottomCentre,
|
|
|
|
Origin = Anchor.BottomRight,
|
|
|
|
X = 2,
|
|
|
|
Scale = new Vector2(centre_region),
|
|
|
|
Rotation = 90,
|
|
|
|
}
|
2022-07-22 16:17:38 +08:00
|
|
|
}
|
2022-03-10 16:42:58 +08:00
|
|
|
},
|
|
|
|
}
|
|
|
|
},
|
|
|
|
};
|
|
|
|
}
|
2022-03-10 21:09:07 +08:00
|
|
|
|
2022-07-22 16:02:58 +08:00
|
|
|
protected override bool OnKeyDown(KeyDownEvent e)
|
2022-03-10 16:42:58 +08:00
|
|
|
{
|
2022-07-22 16:02:58 +08:00
|
|
|
// Hide whenever the keyboard is used.
|
2022-07-22 16:48:07 +08:00
|
|
|
Hide();
|
2022-07-22 16:02:58 +08:00
|
|
|
return false;
|
|
|
|
}
|
2022-07-22 15:18:22 +08:00
|
|
|
|
2022-03-10 16:42:58 +08:00
|
|
|
protected override bool OnTouchDown(TouchDownEvent e)
|
|
|
|
{
|
2022-07-22 16:02:58 +08:00
|
|
|
handleDown(e.Touch.Source, e.ScreenSpaceTouchDownPosition);
|
2022-03-10 21:09:07 +08:00
|
|
|
return true;
|
2022-03-10 16:42:58 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
protected override void OnTouchUp(TouchUpEvent e)
|
|
|
|
{
|
2022-07-22 16:02:58 +08:00
|
|
|
handleUp(e.Touch.Source);
|
2022-03-10 16:42:58 +08:00
|
|
|
base.OnTouchUp(e);
|
|
|
|
}
|
|
|
|
|
2022-07-22 16:02:58 +08:00
|
|
|
private void handleDown(object source, Vector2 position)
|
2022-03-11 20:43:57 +08:00
|
|
|
{
|
2022-07-22 16:48:07 +08:00
|
|
|
Show();
|
2022-07-22 16:02:58 +08:00
|
|
|
|
2023-01-10 16:27:21 +08:00
|
|
|
TaikoInput taikoInput = getTaikoActionFromPosition(position);
|
2022-07-22 16:02:58 +08:00
|
|
|
|
2022-07-22 19:19:13 +08:00
|
|
|
// Not too sure how this can happen, but let's avoid throwing.
|
|
|
|
if (trackedActions.ContainsKey(source))
|
|
|
|
return;
|
|
|
|
|
2023-01-10 16:27:21 +08:00
|
|
|
trackedActions.Add(source, taikoInput);
|
|
|
|
keyBindingContainer.TriggerPressed(taikoInput);
|
2022-07-22 16:02:58 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
private void handleUp(object source)
|
|
|
|
{
|
|
|
|
keyBindingContainer.TriggerReleased(trackedActions[source]);
|
|
|
|
trackedActions.Remove(source);
|
2022-03-11 20:43:57 +08:00
|
|
|
}
|
|
|
|
|
2022-07-22 17:07:10 +08:00
|
|
|
private bool validMouse(MouseButtonEvent e) =>
|
2022-07-22 17:19:33 +08:00
|
|
|
leftRim.Contains(e.ScreenSpaceMouseDownPosition) || rightRim.Contains(e.ScreenSpaceMouseDownPosition);
|
2022-07-22 17:07:10 +08:00
|
|
|
|
2023-01-10 16:27:21 +08:00
|
|
|
#pragma warning disable format
|
|
|
|
private TaikoAction getTaikoActionFromPosition(TaikoInput input)
|
|
|
|
{
|
|
|
|
switch (TaikoTouchControlScheme.DDKK)
|
|
|
|
{
|
|
|
|
case TaikoTouchControlScheme.KDDK:
|
|
|
|
#pragma warning disable CS0162 // Unreachable code detected
|
|
|
|
switch (input)
|
|
|
|
{
|
|
|
|
case TaikoInput.LeftRim: return TaikoAction.LeftRim;
|
|
|
|
case TaikoInput.LeftCentre: return TaikoAction.LeftCentre;
|
|
|
|
case TaikoInput.RightCentre: return TaikoAction.RightCentre;
|
|
|
|
case TaikoInput.RightRim: return TaikoAction.RightRim;
|
|
|
|
}
|
|
|
|
#pragma warning restore CS0162 // Unreachable code detected
|
|
|
|
break;
|
|
|
|
|
|
|
|
case TaikoTouchControlScheme.DDKK:
|
|
|
|
switch (input)
|
|
|
|
{
|
|
|
|
case TaikoInput.LeftRim: return TaikoAction.LeftCentre;
|
|
|
|
case TaikoInput.LeftCentre: return TaikoAction.RightCentre;
|
|
|
|
case TaikoInput.RightCentre: return TaikoAction.LeftRim;
|
|
|
|
case TaikoInput.RightRim: return TaikoAction.RightRim;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case TaikoTouchControlScheme.KKDD:
|
|
|
|
#pragma warning disable CS0162 // Unreachable code detected
|
|
|
|
switch (input)
|
|
|
|
{
|
|
|
|
case TaikoInput.LeftRim: return TaikoAction.LeftRim;
|
|
|
|
case TaikoInput.LeftCentre: return TaikoAction.RightRim;
|
|
|
|
case TaikoInput.RightCentre: return TaikoAction.LeftCentre;
|
|
|
|
case TaikoInput.RightRim: return TaikoAction.RightCentre;
|
|
|
|
}
|
|
|
|
#pragma warning restore CS0162 // Unreachable code detected
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return TaikoAction.LeftCentre;
|
|
|
|
}
|
|
|
|
|
|
|
|
#pragma warning restore format
|
|
|
|
private TaikoAction getTaikoActionFromPosition(Vector2 inputPosition)
|
2022-03-12 21:01:40 +08:00
|
|
|
{
|
2022-07-22 16:48:07 +08:00
|
|
|
bool centreHit = leftCentre.Contains(inputPosition) || rightCentre.Contains(inputPosition);
|
2022-07-22 15:18:22 +08:00
|
|
|
bool leftSide = ToLocalSpace(inputPosition).X < DrawWidth / 2;
|
2023-01-10 16:27:21 +08:00
|
|
|
TaikoInput input;
|
2022-03-10 16:42:58 +08:00
|
|
|
|
2022-07-22 15:18:22 +08:00
|
|
|
if (leftSide)
|
2023-01-10 16:27:21 +08:00
|
|
|
input = centreHit ? TaikoInput.LeftCentre : TaikoInput.LeftRim;
|
|
|
|
else
|
|
|
|
input = centreHit ? TaikoInput.RightCentre : TaikoInput.RightRim;
|
2022-03-10 16:42:58 +08:00
|
|
|
|
2023-01-10 16:27:21 +08:00
|
|
|
return getTaikoActionFromPosition(input);
|
2022-03-10 16:42:58 +08:00
|
|
|
}
|
2022-07-22 16:48:07 +08:00
|
|
|
|
|
|
|
protected override void PopIn()
|
|
|
|
{
|
|
|
|
mainContent.FadeIn(500, Easing.OutQuint);
|
|
|
|
}
|
|
|
|
|
|
|
|
protected override void PopOut()
|
|
|
|
{
|
|
|
|
mainContent.FadeOut(300);
|
|
|
|
}
|
|
|
|
|
|
|
|
private partial class QuarterCircle : CompositeDrawable, IKeyBindingHandler<TaikoAction>
|
|
|
|
{
|
|
|
|
private readonly Circle overlay;
|
|
|
|
|
|
|
|
private readonly TaikoAction handledAction;
|
|
|
|
|
|
|
|
private readonly Circle circle;
|
|
|
|
|
|
|
|
public override bool Contains(Vector2 screenSpacePos) => circle.Contains(screenSpacePos);
|
|
|
|
|
2023-01-10 16:27:21 +08:00
|
|
|
public QuarterCircle(TaikoAction handledAction, TaikoTouchControlScheme touchControlScheme, OsuColour colours)
|
2022-07-22 16:48:07 +08:00
|
|
|
{
|
2023-01-10 16:27:21 +08:00
|
|
|
Color4 colour = ((Func<Color4>)(() =>
|
|
|
|
{
|
|
|
|
#pragma warning disable format
|
|
|
|
switch (handledAction)
|
|
|
|
{
|
|
|
|
case TaikoAction.LeftRim: return colours.Blue;
|
|
|
|
case TaikoAction.LeftCentre: return colours.Red;
|
|
|
|
case TaikoAction.RightCentre: return colours.Red;
|
|
|
|
case TaikoAction.RightRim: return colours.Blue;
|
|
|
|
}
|
|
|
|
#pragma warning restore format
|
|
|
|
return colours.Red;
|
|
|
|
}))();
|
|
|
|
|
|
|
|
|
2022-07-22 16:48:07 +08:00
|
|
|
this.handledAction = handledAction;
|
|
|
|
RelativeSizeAxes = Axes.Both;
|
|
|
|
|
|
|
|
FillMode = FillMode.Fit;
|
|
|
|
|
|
|
|
InternalChildren = new Drawable[]
|
|
|
|
{
|
|
|
|
new Container
|
|
|
|
{
|
|
|
|
Masking = true,
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
Children = new Drawable[]
|
|
|
|
{
|
|
|
|
circle = new Circle
|
|
|
|
{
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
2022-07-22 17:16:01 +08:00
|
|
|
Colour = colour.Multiply(1.4f).Darken(2.8f),
|
2022-07-22 16:48:07 +08:00
|
|
|
Alpha = 0.8f,
|
|
|
|
Scale = new Vector2(2),
|
|
|
|
},
|
|
|
|
overlay = new Circle
|
|
|
|
{
|
|
|
|
Alpha = 0,
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
Blending = BlendingParameters.Additive,
|
|
|
|
Colour = colour,
|
|
|
|
Scale = new Vector2(2),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
public bool OnPressed(KeyBindingPressEvent<TaikoAction> e)
|
|
|
|
{
|
|
|
|
if (e.Action == handledAction)
|
2022-07-22 17:16:01 +08:00
|
|
|
overlay.FadeTo(1f, 80, Easing.OutQuint);
|
2022-07-22 16:48:07 +08:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void OnReleased(KeyBindingReleaseEvent<TaikoAction> e)
|
|
|
|
{
|
|
|
|
if (e.Action == handledAction)
|
|
|
|
overlay.FadeOut(1000, Easing.OutQuint);
|
|
|
|
}
|
|
|
|
}
|
2022-03-10 16:42:58 +08:00
|
|
|
}
|
|
|
|
}
|