rt-sim-training-client/static/workertest/trafficplan/trafficstation.js

38 lines
515 B
JavaScript
Raw Normal View History

var i=0;
var update = null;
function timedCount(){
onmessage = (e) => {
if(e.data[0] == "on"){
2020-11-13 09:36:14 +08:00
update = "1";
}
if(e.data[0] == "off"){
clearInterval(update);
}
if(e.data[0] == "changespeed"){
if(update){
clearInterval(update);
2020-11-13 09:36:14 +08:00
if(e.data[1] == 0){
}else{
let speed = 900/e.data[1];
update = setInterval("stationupdate()", speed);
}
}
}
}
}
function stationupdate(){
postMessage("up");
}
timedCount();