Explorar el Código

Clock to dictate speed of 'connected devices'.

master
Bryan Miller hace 5 años
padre
commit
d669be3206
Se han modificado 1 ficheros con 37 adiciones y 0 borrados
  1. +37
    -0
      chip/clock.js

+ 37
- 0
chip/clock.js Ver fichero

@@ -0,0 +1,37 @@

var TickTime = 1000;
var DT = 0;
var LTime = 0;
var CPUCLK = null:

class Clock{
constructor(){}

get hz(){return Math.floor(1000 / TickTime);}
set hz(hz){
if(hz >= 1)
TickTime = 1000 / hz;
}

get wired(){return (CPUCLK !== null);}
set wire(clk){
if(clk == null || typeof clk === 'function')
CPUCLK = clk;
}

tick(){
let ctime = Date.getTime();
if(LTime !== 0){
DT += ctime - LTime;
while(DT > TickTime){
if (CPUCLK)
CPUCLK();
DT -= TickTime
}
}
LTime = ctime;
}
}


module.exports = Clock;

Cargando…
Cancelar
Guardar