LiveSplit / livesplit-core

livesplit-core is a library that provides a lot of functionality for creating a speedrun timer.
https://livesplit.org/
Apache License 2.0
209 stars 57 forks source link

Add a fallback for the time tracking in the web #814

Closed CryZe closed 3 months ago

CryZe commented 3 months ago

Every browser's performance.now() implementation is not spec compliant, unless the browser is running on Windows. On every other operating system, performance.now() does not properly keep ticking while the operating system is suspended / sleeping. There isn't much that we can do. What we can do is we calculate the initial difference between performance.now() and Date.now() and store it in a thread local. Later, when the phone gets locked, performance.now() starts to break. However, we can detect when the phone gets unlocked again by listening to the visibilitychange event. This is where we can update the difference again. This of course isn't ideal, as Date.now() gets adjusted by NTP synchronizations, but it's the best we can do.

More information: https://developer.mozilla.org/en-US/docs/Web/API/Performance/now#ticking_during_sleep