Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Hide HoldForMenuButton on non-touch devices #26128

Closed

Conversation

rushiiMachine
Copy link
Contributor

As per this discussion in the discord, this PR changes the HoldForMenuButton to never appear on non-touch devices until the cursor is nearby, and on touch devices it will retain the pop-in animation, fading out to always be slightly visible. Since this component is redundant on devices on devices with a keyboard and hardcoded regardless it should be at least hidden.

Disable the enter animation and fully hide until cursor is near on non-touch devices.
@@ -99,9 +111,11 @@ protected override void Update()
Alpha = 1;
else
{
float minAlpha = AutoHide.Value ? .001f : .07f;
Copy link
Contributor Author

@rushiiMachine rushiiMachine Dec 26, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I tried allowing the alpha to clamp to 0, (and enabling AlwaysPresent on the container), however ran into issues with testing as the interpolation below seemed to never reach a fixed value.

@@ -158,7 +158,7 @@ public HUDOverlay([CanBeNull] DrawableRuleset drawableRuleset, IReadOnlyList<Mod
Direction = FillDirection.Vertical,
Children = new Drawable[]
{
HoldToQuit = CreateHoldForMenuButton(),
HoldToQuit = CreateHoldForMenuButton(touchDevice: mods.Any(m => m is ModTouchDevice)),
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Rather than doing this, use SessionStatics from within the class, don't pass anything in.

[BackgroundDependencyLoader]
private void load(SessionStatics statics)
{
touchActive = statics.GetBindable<bool>(Static.TouchInputActive);
touchActive.BindValueChanged(_ => updateState());
}

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please don't self resolve issues. This isn't even fixed.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I misunderstood it as "dont pass anything to CreateHoldForMenuButton", I assume you meant inject it from within HoldForMenuButton?

Use SessionStatics to supply touch device data and invert the autohide parameter to better fit the supplied Bindable.
@peppy
Copy link
Member

peppy commented Jan 15, 2024

I've taken part of what you did here and PR'd it separately with some simplification: #26542.

@peppy peppy closed this Jan 15, 2024
@rushiiMachine rushiiMachine deleted the non-touch-hide-hold-for-menu branch January 15, 2024 09:34
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants