-
-
Notifications
You must be signed in to change notification settings - Fork 968
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
Codechange: Disable pointer locking by default for Emscripten #9191
Codechange: Disable pointer locking by default for Emscripten #9191
Conversation
There are two kinds of "decorated" mouse cursors. The basic are single-sprite cursors, those are most of the construction tools. In the original graphics the construction tool is integrated in the cursor itself: In OpenGFX the tool appears to be a separate sprite next to the cursor, but it's actually still a single sprite: When you drag a vehicle in a depot, the vehicle graphics is used for the mouse cursor instead, the cursor is still only a single sprite then. |
How does that relate to whether the cursor is locked in position or not when scrolling? |
@PeterN I think @nielsmh is referring to my comment under Limitations about the cursor being drawn incorrectly. @nielsmh Hmm... I see what you mean. In that case, I think there will need to be an Emscripten-specific code path added for the cursor rendering, as the only way I know of to change the cursor appearance without having OpenTTD draw it itself is to use CSS. |
I think having an alternate cursor code path would be useful regardless, as there are some requests to support a high-contrast cursor style. In my mind that would be basically skipping the baseset for the cursor graphics and draw something custom instead. |
I've discovered that adding The side effect is that the cursor rendering will now be dependent on OpenTTD's frame rate, but that's also how it works on the normal ports. On my machine I don't see any noticeable lag while testing it. |
I'm going to mark this as ready for review as I haven't noticed any bugs while testing it. |
@TrueBrain There were some valid concerns raised about changing the default scrolling mode in #9150. So, is there a way of conditionally choosing the default using the preprocessor inside Not sure if the ongoing refactoring enables/disables that. |
Check for stuff like |
f819611
to
ccda075
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
After some self-reflection, I came to the realisation the only reason I am against it, is because I don't play the game like that :P But that is a bullshit reason. And I agree, the web-version would be 10x better if it doesn't constantly grab the mouse pointer .. so yeah, let's do this, and see where it takes us :)
(to be clear, my request for change is to make sure this is only changing the default for the web-version. Not for any of the other versions ;) ).
Looks good to me. If you wouldn't mind rebasing and squashing your commits to a single one, that would make the commit checker happy too :D Tnx! |
59c8794
to
b6e4564
Compare
b6e4564
to
5a87d45
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM! Tnx!
For who-ever merges, please change Codechange
to Change
. Sure, everything is a codechange in the end, but this is a bit more than that :D
No need to push a new version for it, we can fix it on squash :)
Motivation / Problem
See #9150.
Description
This PR changes the default scroll mode so that pointer locking is not used by default, resolving the bad UX for the Emscripten port.
As this is a breaking change and needs further discussion, it's currently a draft.
Limitations
Checklist for review
Some things are not automated, and forgotten often. This list is a reminder for the reviewers.