2019-01-09 08:27:31 +00:00
|
|
|
|
2019-03-01 05:21:18 +00:00
|
|
|
/* Copyright 2010-2019 Will Scullin <scullin@scullinsteel.com>
|
|
|
|
*
|
|
|
|
* Permission to use, copy, modify, distribute, and sell this software and its
|
|
|
|
* documentation for any purpose is hereby granted without fee, provided that
|
|
|
|
* the above copyright notice appear in all copies and that both that
|
|
|
|
* copyright notice and this permission notice appear in supporting
|
|
|
|
* documentation. No representations are made about the suitability of this
|
|
|
|
* software for any purpose. It is provided "as is" without express or
|
|
|
|
* implied warranty.
|
|
|
|
*/
|
|
|
|
|
|
|
|
import { debug } from '../util';
|
|
|
|
|
2019-06-15 22:59:02 +00:00
|
|
|
export var TAPE_TYPES = ['wav','aiff','aif','mp3','m4a'];
|
2019-03-13 04:11:00 +00:00
|
|
|
|
2019-03-01 05:21:18 +00:00
|
|
|
export default function Tape(io) {
|
2019-01-09 08:27:31 +00:00
|
|
|
var AudioContext = window.AudioContext || window.webkitAudioContext;
|
|
|
|
|
|
|
|
return {
|
|
|
|
doLoadLocalTape: function(file, done) {
|
2019-12-30 03:13:59 +00:00
|
|
|
var kHz = io.getKHz();
|
2019-01-09 08:27:31 +00:00
|
|
|
|
|
|
|
// Audio Buffer Source
|
|
|
|
var context;
|
|
|
|
if (AudioContext) {
|
|
|
|
context = new AudioContext();
|
|
|
|
} else {
|
|
|
|
window.alert('Not supported by your browser');
|
|
|
|
done();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
var fileReader = new FileReader();
|
|
|
|
fileReader.onload = function(ev) {
|
|
|
|
context.decodeAudioData(ev.target.result, function(buffer) {
|
|
|
|
var buf = [];
|
|
|
|
var data = buffer.getChannelData(0), datum = data[0];
|
|
|
|
var old = (datum > 0.0), current;
|
|
|
|
var last = 0, delta, ival;
|
|
|
|
debug('Sample Count: ' + data.length);
|
|
|
|
debug('Sample rate: ' + buffer.sampleRate);
|
|
|
|
for (var idx = 1; idx < data.length; idx++) {
|
|
|
|
datum = data[idx];
|
|
|
|
if ((datum > 0.1) || (datum < -0.1)) {
|
|
|
|
current = (datum > 0.0);
|
|
|
|
if (current != old) {
|
|
|
|
delta = idx - last;
|
|
|
|
if (delta > 2000000) {
|
|
|
|
delta = 2000000;
|
|
|
|
}
|
|
|
|
ival = delta / buffer.sampleRate * 1000;
|
|
|
|
if (ival >= 0.550 && ival < 0.750) {
|
|
|
|
ival = 0.650; // Header
|
|
|
|
} else if (ival >= 0.175 && ival < 0.225) {
|
|
|
|
ival = 0.200; // sync 1
|
|
|
|
} else if (ival >= 0.225 && ival < 0.275) {
|
|
|
|
ival = 0.250; // 0 / sync 2
|
|
|
|
} else if (ival >= 0.450 && ival < 0.550) {
|
|
|
|
ival = 0.500; // 1
|
|
|
|
} else {
|
|
|
|
// debug(idx + ' ' + buf.length + ' ' + ival);
|
|
|
|
}
|
|
|
|
buf.push([parseInt(ival * kHz), current]);
|
|
|
|
old = current;
|
|
|
|
last = idx;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
io.setTape(buf);
|
2019-04-06 19:30:50 +00:00
|
|
|
if (done) {
|
|
|
|
done();
|
|
|
|
}
|
2020-08-23 13:36:59 +00:00
|
|
|
}, function(error) {
|
|
|
|
window.alert(error.message);
|
2019-01-09 08:27:31 +00:00
|
|
|
});
|
|
|
|
};
|
|
|
|
fileReader.readAsArrayBuffer(file);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|