X-Git-Url: https://git-public.kairo.at/?p=tricorder.git;a=blobdiff_plain;f=js%2Ftricorder.js;h=92885dae4b231310554f4ee36c8795553ba6ac6c;hp=317fbca063edbe99cc21e64c3f6d16f29d772c0e;hb=9adf799b4ff4fae3049fac6e03c54340065ae2de;hpb=39b2fdefdf54cda6ae2ccc572ab8b8a88417c5f1 diff --git a/js/tricorder.js b/js/tricorder.js index 317fbca..92885da 100644 --- a/js/tricorder.js +++ b/js/tricorder.js @@ -33,7 +33,17 @@ window.onload = function() { }, false); } +window.onresize = function() { + if (document.getElementById("sectSound").classList.contains("active")) { + gModSound.resize(); + } +} + function updateStardate() { + // Stardate rules foggy at best. See http://en.wikipedia.org/wiki/Stardate + // and the Memory Alpha article linked there for more details. + // We roughly lean on TNG scale by splitting an Earth year into exactly 1000 + // units, but we put the 0 point at the TV premiere of The Original Series. if (!gStardate) gStardate = document.getElementById("stardate"); @@ -221,7 +231,7 @@ var gModGrav = { var gModSound = { activate: function() { //gSounds.scan.play(); - if (navigator.getUserMedia) { + if (navigator.getUserMedia && (window.AudioContext || window.webkitAudioContext)) { document.getElementById("soundunavail").style.display = "none"; document.getElementById("soundavail").style.display = "block"; navigator.getUserMedia({ audio: true }, @@ -232,20 +242,7 @@ var gModSound = { // Could put a filter in between like in http://webaudioapi.com/samples/microphone/ gModSound.mDisplay.canvas = document.getElementById("soundcanvas"); gModSound.mDisplay.context = gModSound.mDisplay.canvas.getContext("2d"); - gModSound.mDisplay.canvas.height = document.getElementById("soundavail").clientHeight - 2; - gModSound.mDisplay.canvas.width = document.getElementById("soundavail").clientWidth; - gModSound.mAudio.frequencySlices = (gModSound.mDisplay.canvas.width > 512) ? - 512 : - Math.pow(2, Math.floor(Math.log(gModSound.mDisplay.canvas.width) / Math.LN2)); - console.log("slices: " + gModSound.mAudio.frequencySlices); - gModSound.mAudio.analyzer = gModSound.mAudio.context.createAnalyser(); - // Make the FFT four times as large as needed as the upper three quarters turn out to be useless. - gModSound.mAudio.analyzer.fftSize = gModSound.mAudio.frequencySlices * 4; - console.log("FFT: " + gModSound.mAudio.analyzer.fftSize); - gModSound.mAudio.input.connect(gModSound.mAudio.analyzer); - gModSound.mDisplay.context.setTransform(1, 0, 0, -(gModSound.mDisplay.canvas.height/256), 0, gModSound.mDisplay.canvas.height); - gModSound.mDisplay.active = true; - window.requestAnimationFrame(gModSound.paintAnalyzerFrame); + gModSound.rebuildCanvas(); }, function(err) { document.getElementById("soundunavail").style.display = "block"; @@ -259,6 +256,26 @@ var gModSound = { document.getElementById("soundavail").style.display = "none"; } }, + rebuildCanvas: function() { + if (gModSound.mDisplay.AFRequestID) { + window.cancelAnimationFrame(gModSound.mDisplay.AFRequestID); + gModSound.mDisplay.AFRequestID = 0; + } + gModSound.mDisplay.canvas.height = document.getElementById("soundavail").clientHeight - 4; + gModSound.mDisplay.canvas.width = document.getElementById("soundavail").clientWidth; + gModSound.mAudio.frequencySlices = (gModSound.mDisplay.canvas.width > 512) ? + 512 : + Math.pow(2, Math.floor(Math.log(gModSound.mDisplay.canvas.width) / Math.LN2)); + //console.log("slices: " + gModSound.mAudio.frequencySlices); + gModSound.mAudio.analyzer = gModSound.mAudio.context.createAnalyser(); + // Make the FFT four times as large as needed as the upper three quarters turn out to be useless. + gModSound.mAudio.analyzer.fftSize = gModSound.mAudio.frequencySlices * 4; + //console.log("FFT: " + gModSound.mAudio.analyzer.fftSize); + gModSound.mAudio.input.connect(gModSound.mAudio.analyzer); + gModSound.mDisplay.context.setTransform(1, 0, 0, -(gModSound.mDisplay.canvas.height/256), 0, gModSound.mDisplay.canvas.height); + gModSound.mDisplay.active = true; + gModSound.mDisplay.AFRequestID = window.requestAnimationFrame(gModSound.paintAnalyzerFrame); + }, mAudio: { frequencySlices: 32, // Must be a multiple of 2 (see AnalyserNode.fftSize) }, @@ -278,13 +295,91 @@ var gModSound = { gModSound.mDisplay.context.fillRect(i*wid, 0, wid, data[i]); } if (gModSound.mDisplay.active) - window.requestAnimationFrame(gModSound.paintAnalyzerFrame); + gModSound.mDisplay.AFRequestID = window.requestAnimationFrame(gModSound.paintAnalyzerFrame); + }, + resize: function() { + gModSound.rebuildCanvas(); + }, + deactivate: function() { + if (gModSound.mDisplay.active) { + gModSound.mAudio.stream.stop(); + gModSound.mDisplay.active = false; + } + gSounds.scan.pause(); + }, +} + +var gModEnv = { + activate: function() { + gSounds.scan.play(); + document.getElementById("envunavail").style.display = "none"; + document.getElementById("envavail").style.display = "block"; + window.addEventListener("devicelight", this.lightEvent, true); + window.addEventListener("deviceproximity", this.proxEvent, true); + setTimeout(function() { + if ((document.getElementById("envLight").textContent == "...") && + (document.getElementById("envDistance").textContent == "...")) { + gModEnv.deactivate(); + } + }, 5000); + try { + var cameras = navigator.mozCameras.getListOfCameras(); + for (i = 0; i < cameras.length; i++) { + var promise = navigator.mozCameras.getCamera(cameras[i], {}, + function(aCamera) { + if (aCamera.capabilities.flashModes.indexOf('torch') !== -1) { + gModEnv.foundFlashCamera(aCamera); + } + }, + function(aError) { console.log("camera error: " + aError); } + ); + } + } catch (e) { + // camera api not supported + document.getElementById("envFlashUnavail").style.display = "block"; + document.getElementById("envFlashAvail").style.display = "none"; + } + }, + foundFlashCamera(aCamera) { + this.flashCamera = aCamera; + document.getElementById("envFlashOn").onclick = function() { console.log("on"); gModEnv.switchFlashlight(true); }; + document.getElementById("envFlashOff").onclick = function() { console.log("off"); gModEnv.switchFlashlight(false); }; + document.getElementById("envFlashUnavail").style.display = "none"; + document.getElementById("envFlashAvail").style.display = "block"; }, deactivate: function() { - gModSound.mDisplay.active = false; - gModSound.mAudio.stream.stop(); gSounds.scan.pause(); + window.removeEventListener("devicelight", this.lightEvent, true); + window.removeEventListener("deviceproximity", this.proxEvent, true); + document.getElementById("envunavail").style.display = "block"; + document.getElementById("envavail").style.display = "none"; + document.getElementById("envLight").textContent = "..."; + document.getElementById("envDistance").textContent = "..."; + }, + lightEvent: function(lightData) { + // See http://www.w3.org/TR/ambient-light/ + document.getElementById("envLight").textContent = lightData.value + " lux"; }, + proxEvent: function(proxData) { + // See http://www.w3.org/TR/2012/WD-proximity-20120712/ + if (proxData.value >= proxData.max) { + document.getElementById("envDistance").textContent = "(maximum, >= " + proxData.value + " cm)"; + } + else if (proxData.value <= proxData.min) { + document.getElementById("envDistance").textContent = "(minimum, <= " + proxData.value + " cm)"; + } + else { + document.getElementById("envDistance").textContent = proxData.value + " cm"; + } + }, + flashCamera: null, + switchFlashlight: function(aEnabled) { + if (this.flashCamera) { + this.flashCamera.flashMode = aEnabled ? 'torch' : 'off'; + document.getElementById("envFlashOn").disabled = aEnabled; + document.getElementById("envFlashOff").disabled = !aEnabled; + } + } } var gModDev = {