-
-
Notifications
You must be signed in to change notification settings - Fork 1
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
Short inputs can be dropped #3
Comments
🤔 I need to investigate a way to do this in monogame. I don't believe this can cause huge trouble tho |
I don't know about "not a huge trouble" and "intended behavior"... One reason someone would want to use an external input display tool is wanting a "second opinion". Like, "I swear I did the input right, lemme check my recording real quick..." but if said tool is inaccurate then it can't be used for that purpose that picture alone doesn't really show anything though |
Hey @WAZAAAAA0, I mean, why do you want to display input that is not a reflection of what the game reads? I understand that you want to know if you truly pressed that button at all, but realistically it's very difficult to press a button so shortly that it's not being registered. You have to purposely tap it as quickly as humanly possible, which isn't practical and not a common occurrence. And if you ever did tap this shortly, you will have to change your way of using the controller anyway, because what you want in the end is the game to read inputs you intended to do. I would be curious however how often that ever happen to you and what's your setup that makes it such a common occurrence. I do get my jump "eaten" in SF6 a lot when my opponent Drive Rush at the same time, but that's a game mechanic related issue, not so much the controller or the game not reading inputs. I am pretty confident this would be out of the scope for what the tool is designed for. |
But that's not the case either, it does not reflect what the game reads because they're 2 different programs polling inputs at different moments despite both running at 60 FPS. Here's as real world example: the first input is missed only by the game, the last input is missed only by InputDisplay InputDisplay.vs.padlight.vs.DOA5LR.mp4
For the demonstration I did purposely tap as quickly as possible (on a 1000 Hz overclocked HitBox to decrease the input latency), but without a reliable input display tool we can never truly tell whether it's a "common occurrence" or not while playing normally. |
Yeah, I think we're fairly confident this is a syncing issue between the game and the tool. I highly doubt that tool will ever be in sync with all games in existences or even the mainstream ones, it seems quite a complex thing to implement. |
If you press a button for less than 1 full frame, it can drop.
Tends to happen when you make the input logic of your program state-based (e.g. poll only once per frame) instead of event-driven afaik.
Easier to reproduce with 1000+ Hz USB polling rate I suppose.
Similar to this case: https://twitter.com/WAZAAAAA00/status/1258803470670409730
Padlight is the second program you see on screen, modded to run at high FPS (and in English), here's an archive if you need it for tests: https://www.mediafire.com/file/elmsg9uqq89kcry/padlight_archive.zip/file
DEMO:
InputDisplay.vs.padlight.input.drops.mp4
The text was updated successfully, but these errors were encountered: