-
-
Notifications
You must be signed in to change notification settings - Fork 3.5k
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
Mouse/touch event handling bug #4223
Comments
I first thought this is a window resize problem but it still behaves weird when I pop the inspector window out on its own. It is also exclusive to Chrome when inspector is opened and Safari without anything else opened, Firefox doesn't seem to exhibit any weird behaviour. I'm not sure what caused this problem but it may be the framerate and event loop getting out of sync or something like that. |
Thanks for taking a look @limzykenneth ... any thoughts on next steps? Meanwhile, as you've confirmed, I'll label as a bug... |
I'll need to do some more tests, I'll report back if I find any insights. |
It is pretty much an issue of framerate and event loop not matching. Specifically, To test, if line(mouseX, mouseY, pmouseX, pmouseY); will no longer work as expected (see #1471 for some info). I have no idea why the behaviour is so weird on Chrome, probably a Chrome bug. I also have no idea how to reconcile the two. We probably will prefer to update these values per frame but |
@limzykenneth thanks for the research -- this is clearly part of the problem, but in my testing mousePressed() doesn't even fire when on a touch-device and dragging (case 3 above)... |
I am seeing the same thing with a game I'm working on in p5js. I put console.log's in mousePressed() and mouseReleased(), and on Safari on my iPad Pro, it only prints the mouseReleased one. I was able to get touchStarted() to work though, so for now I'm duplicating the mousePressed() code in there. |
Has anyone been assigned to this? Could I tackle this? |
@ykabusalah No assignment has been made yet as we are still figuring out where the problem is and where any potential solution is. You can have a look at the problem and let us know here what you think. Thanks. |
I have a sketch, where Oh and btw. this issue happens on all three browsers for me: Chrome, Firefox and Safari. |
@trych You will have to include a minimal sketch demonstrating the issue as I can't determine from your description alone whether it's a related issue or not. Thanks. |
@limzykenneth Sir I tried to find the root cause for this but failed . I think there might be some issue with Canvas and the predefined CSS with it. |
Coming back to this after a long time, I'll summarize my suggested action for the first two behaviours noted in the original post. The problem is caused by the event loop ( Another piece that completes the problem here is that My suggestion for fixing the example sketch will be to not use let x = 100, y = 100, active = false;
function setup() {
createCanvas(windowWidth, windowHeight);
// noLoop();
}
function draw() {
background(0);
// console.log("frame");
if (active) {
x += mouseX - pmouseX;
y += mouseY - pmouseY;
}
rect(x, y, 50, 50);
}
//function touchEnded() {
function mouseReleased() {
//console.log('mouseReleased');
active = false;
}
//function touchStarted() {
function mousePressed() {
//console.log('mousePressed', mouseX-pmouseX);
active = (mouseX > x && mouseX < x + 50 && mouseY > y && mouseY < y + 50);
}
//function touchMoved() {
// function mouseDragged() {
// //console.log('mouseDragged:',mouseX-pmouseX);
// if (active) {
// x += mouseX - pmouseX;
// y += mouseY - pmouseY;
// }
// } This points to a larger suggestion which is to not use The third issue I still need to look into. |
I found this report after experiencing similarly perplexing behaviour in my code (dragging objects moved them too fast when the Javascript console was open). I'm quite surprised that I suppose that for now I'll try rolling my own (creating local variables to track previous and current mouse positions and updating them as events are received). But I'll be interested to learn about the ultimate resolution of this issue. |
@isohedral A very common teaching sketch using function setup() {
createCanvas(400, 400);
}
function draw() {
line(mouseX, mouseY, pmouseX, pmouseY);
} If It can be possible to introduce another pair of variables that does keep track of previous values per event but just to point out there are use cases where per frame update is required. |
Thanks, that makes sense. And the good news is that I solved my proximal problem in the way I suggested above—I created my own I think you're right that there isn't an obvious one-size-fits-all solution that covers the use of these variables in both For the record, my canonical direct manipulation demo is basically identical to @dhowe's post at the top of this thread (but with a circle instead of a rectangle). I may continue to teach it this way in intro CS, but include a small note pointing out that it's not quite correct. Oh well. |
Hello, this is a really interesting issue and I'd like to try working on it if no one else is. I was able to also reproduce the behavior in Safari (with and without developer tooling/logging), which makes sense given @limzykenneth's findings above - that the behavior is due to browser-specific differences in event and animation loop execution rates. I'm not sure whether I am capable of solving this, but if no one is working on it, I'd like to try. Specifically, I'd start with understanding the src/events/mouse.js and the logic of pmouseX. The goal for the expected behavior that is browser-agnostic, and one way is to detect event rate difference and adjust for them, so I'd look into how possible (and how potentially messy?) that would be. It would be my first attempt to contribute to p5.js, please let me know if I could work on it, and if so, if the above approach seems alright / what else I should be aware of. I think this is potentially a really cool problem to solve in terms of accessibility; maybe there are other niche places where loop event rate mismatch causes difficult-to-explain problems? |
@ksen0 In terms of detecting event rate difference, once we know that how can we adjust for them? For the most part I don't think there is a clear way to resolve this as If you can work out a bit more details here in terms of what the proposed implementation/fix is that would be great. Thanks. |
I'm not positive that this is a bug, but it sure is confusing that the code below results in 3 very different behaviors in the browser, depending on whether devtools is open and on the device selected.
To recreate:
Three behaviors (with mouse-events):
With touch-events (comment mouse-events and uncomment touch-events below), the only difference is that in case C, we get behavior B (rect & mouse are out of sync)
The text was updated successfully, but these errors were encountered: