This commit is contained in:
Jade (Rose) Rowland 2024-08-17 15:31:21 -04:00
parent 3945abd7e9
commit 9c899d5308
3 changed files with 85 additions and 62 deletions

View file

@ -5,8 +5,9 @@
function getTime() {
const precision = 10 ** 4;
const seconds = performance.now() / 1000;
return Math.round(seconds * precision) / precision;
const seconds = performance.now() * .001;
return seconds
// return Math.round(seconds * precision) / precision;
}
let num_cycles_at_cps_change = 0;
@ -41,10 +42,8 @@ const sendTick = (phase, duration, tick, time) => {
begin,
end,
cps,
tickdeadline,
time: num_seconds_at_cps_change + num_seconds_since_cps_change + tickdeadline,
num_cycles_at_cps_change,
num_seconds_at_cps_change,
num_seconds_since_cps_change,
cycle,
});
num_ticks_since_cps_change++;