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

Feature/configurable controller hotkeys #1523

Conversation

Anime37
Copy link

@Anime37 Anime37 commented Mar 25, 2025

STILL WIP (also sort of blocked by #1519)

Demo: https://www.youtube.com/watch?v=CNSJTER_i8k

Added configurable controller support to configurable hotkey system.

Will add more description to this pull request when I feel like it's ready to be at least reviewed. For now, putting on draft.

@capitalistspz
Copy link
Contributor

capitalistspz commented Mar 25, 2025

You might want to adjust your code to fit the coding style guidelines
https://github.com/cemu-project/Cemu/blob/main/CODING_STYLE.md
I'd recommend the same on your other PR too

@Anime37
Copy link
Author

Anime37 commented Mar 26, 2025

You might want to adjust your code to fit the coding style guidelines https://github.com/cemu-project/Cemu/blob/main/CODING_STYLE.md I'd recommend the same on your other PR too

if you mean camel case vs snake notation variables, i feel like even Exzap doesn't follow those guideless (look at CemuConfig.h variables). is it worth really worth changing?

image
image

i wanna hear @Exzap's opinion on this, since he breaks his own rules, maybe it's the CODING_STYLE.md that is deprecated here.

@goeiecool9999
Copy link
Collaborator

goeiecool9999 commented Mar 26, 2025

i wanna hear @Exzap's opinion on this, since he breaks his own rules, maybe it's the CODING_STYLE.md that is deprecated here.

For that particular example while the latest commit shows it's 11 months old, that commit is not the one that introduced that variable. It merely prepends legacy_. The variable itself dates back to the start of the git repository, before there was a codified coding style.
You can also catch me violating the guidelines if you go through my recent commits. But that's usually when I'm making changes around existing code that violates it as well. Here are some instances of me modifying my PR's to conform after I realised it doesn't.
#1290 c795002a
#1190 1ce9ea74

@Anime37
Copy link
Author

Anime37 commented Mar 26, 2025

You might want to adjust your code to fit the coding style guidelines https://github.com/cemu-project/Cemu/blob/main/CODING_STYLE.md I'd recommend the same on your other PR too

i wanna hear @Exzap's opinion on this, since he breaks his own rules, maybe it's the CODING_STYLE.md that is deprecated here.

For that particular example while the latest commit shows it's 11 months old, that commit is not the one that introduced that variable. It merely prepends legacy_. The variable itself dates back to the start of the git repository, before there was a codified coding style. You can also catch me violating the guidelines if you go through my recent commits. But that's usually when I'm making changes around existing code that violates it as well. Here are some instances of me modifying my PR's to conform after I realised it doesn't. #1290 c795002a #1190 1ce9ea74

aight, will make the my first PR conform and then rebase this one and conform it as well.

@Exzap
Copy link
Member

Exzap commented Mar 26, 2025

i wanna hear @Exzap's opinion on this, since he breaks his own rules, maybe it's the CODING_STYLE.md that is deprecated here.

CODING_STYLE.md mentions this in the first line:

This document describes the latest version of our coding-style guidelines. Since we did not use this style from the beginning, older code may not adhere to these guidelines. Nevertheless, use these rules even if the surrounding code does not match.

Imho the best approach is to just do a style pass and if you miss some things thats fine. Style nitpicking can turn into bikeshedding really quickly so personally I tend to merge PRs even if they don't follow the guidelines 100%. But we will point out if a large part of the code doesn't match the guidelines.

On a side note, I didn't really have time to check out your PRs in detail yet. But a question I have is how this interacts with keyboard controller input? It's not uncommon for people to map some controller button to space for example. Will it just trigger both in that case?

@Anime37
Copy link
Author

Anime37 commented Mar 26, 2025

On a side note, I didn't really have time to check out your PRs in detail yet. But a question I have is how this interacts with keyboard controller input? It's not uncommon for people to map some controller button to space for example. Will it just trigger both in that case?

Yes, it would trigger both. But since there is a possibility to add modifiers to hotkeys, this problem is solvable by the user (e.g.. you could set the hotkey to be CTRL+SHIFT+ALT+SPACE if you really wanted to).

@Anime37 Anime37 force-pushed the feature/configurable_controller_hotkeys branch from f30e832 to ddc38a5 Compare March 26, 2025 10:53
@Anime37
Copy link
Author

Anime37 commented Mar 26, 2025

rebased and fixed coding style issues on latest commit.

anyways, it's better to focus on #1519 PR, so this PR would be a single commit that adds controller hotkeys

@Anime37 Anime37 force-pushed the feature/configurable_controller_hotkeys branch from ddc38a5 to 008f589 Compare March 26, 2025 12:59
@Anime37
Copy link
Author

Anime37 commented Mar 26, 2025

fixed most configuration issues.
left things to do:

  • test more and find bugs
  • clear up magic numbers (like -1 as non configured controller hotkey)
  • get yelled by reviewers about polling controller input at api level

@Anime37 Anime37 force-pushed the feature/configurable_controller_hotkeys branch 2 times, most recently from 1a33299 to b09b3db Compare March 27, 2025 13:47
@Anime37
Copy link
Author

Anime37 commented Mar 27, 2025

fixed issue where clicking keyboard hotkey input button and then clicking controller hotkey input button (or vice versa) would restore the previously clicked value into a wrong input type button.

@Anime37 Anime37 force-pushed the feature/configurable_controller_hotkeys branch from b09b3db to a797e89 Compare March 27, 2025 15:45
@Anime37
Copy link
Author

Anime37 commented Mar 27, 2025

rebased to get keyboard hotkey input cancel/clearing support. added controller hotkey input cancel/clearing via right mouse clicks

@Anime37 Anime37 force-pushed the feature/configurable_controller_hotkeys branch from a797e89 to 65322f7 Compare March 27, 2025 15:53
@Anime37
Copy link
Author

Anime37 commented Mar 27, 2025

fixed issue, where clicking the previously configured controller hotkey input button would not register.

@Anime37 Anime37 force-pushed the feature/configurable_controller_hotkeys branch 2 times, most recently from 04739d0 to b227b25 Compare March 28, 2025 08:59
@Anime37
Copy link
Author

Anime37 commented Mar 28, 2025

fixed trigger buttons not working as hotkeys.

@Anime37 Anime37 force-pushed the feature/configurable_controller_hotkeys branch 2 times, most recently from 25661c5 to defbb8d Compare March 28, 2025 10:41
@Anime37
Copy link
Author

Anime37 commented Mar 28, 2025

Added column header labels and removed keyboard modifier input button (since for keyboard modifiers keys are individual per hotkey).

image

@Anime37 Anime37 force-pushed the feature/configurable_controller_hotkeys branch from defbb8d to c8f5c2c Compare March 28, 2025 13:43
@Anime37
Copy link
Author

Anime37 commented Mar 28, 2025

just coz i thought'd it be funny, added an icon for the hotkey settings window
image

@Anime37
Copy link
Author

Anime37 commented Mar 30, 2025

moved controller support to the first PR (#1519), closing.

@Anime37 Anime37 closed this Mar 30, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants