2016-03-04 20:31:48 +00:00
|
|
|
define(["Test", "Tone/core/Transport", "Tone/core/Tone", "helper/Offline2"],
|
|
|
|
function (Test, Transport, Tone, Offline) {
|
2015-08-18 22:14:26 +00:00
|
|
|
|
|
|
|
describe("Transport", function(){
|
|
|
|
|
|
|
|
function resetTransport(done){
|
2015-09-03 20:56:05 +00:00
|
|
|
Tone.Transport.cancel(0);
|
2015-09-05 19:07:31 +00:00
|
|
|
Tone.Transport.off("start stop pause loop");
|
2015-08-18 22:14:26 +00:00
|
|
|
Tone.Transport.stop();
|
|
|
|
Tone.Transport.loop = false;
|
|
|
|
Tone.Transport.PPQ = 48;
|
|
|
|
Tone.Transport.bpm.value = 120;
|
|
|
|
Tone.Transport.timeSignature = [4, 4];
|
|
|
|
setTimeout(done, 200);
|
|
|
|
}
|
|
|
|
|
|
|
|
it("exists", function(){
|
|
|
|
expect(Tone.Transport).to.exist;
|
|
|
|
});
|
|
|
|
|
|
|
|
context("BPM and timeSignature", function(){
|
|
|
|
|
|
|
|
afterEach(resetTransport);
|
|
|
|
|
|
|
|
it("can get and set bpm", function(){
|
|
|
|
Tone.Transport.bpm.value = 125;
|
|
|
|
expect(Tone.Transport.bpm.value).to.be.closeTo(125, 0.001);
|
|
|
|
//reset the bpm
|
|
|
|
Tone.Transport.bpm.value = 120;
|
2015-10-21 14:55:56 +00:00
|
|
|
expect(Tone.Transport.bpm._param.value).to.equal(2 * Tone.Transport.PPQ);
|
2015-08-18 22:14:26 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
it("can get and set timeSignature as both an array or number", function(){
|
|
|
|
Tone.Transport.timeSignature = [6, 8];
|
|
|
|
expect(Tone.Transport.timeSignature).to.equal(3);
|
|
|
|
Tone.Transport.timeSignature = 5;
|
|
|
|
expect(Tone.Transport.timeSignature).to.equal(5);
|
|
|
|
Tone.Transport.timeSignature = [4, 4];
|
|
|
|
});
|
|
|
|
|
|
|
|
it("can get and set timeSignature as both an array or number", function(){
|
|
|
|
Tone.Transport.timeSignature = [6, 8];
|
|
|
|
expect(Tone.Transport.timeSignature).to.equal(3);
|
|
|
|
Tone.Transport.timeSignature = 5;
|
|
|
|
expect(Tone.Transport.timeSignature).to.equal(5);
|
|
|
|
Tone.Transport.timeSignature = [4, 4];
|
|
|
|
});
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
context("looping", function(){
|
|
|
|
|
|
|
|
afterEach(resetTransport);
|
|
|
|
|
|
|
|
it("can get and set loop points", function(){
|
|
|
|
Tone.Transport.loopStart = 0.2;
|
|
|
|
Tone.Transport.loopEnd = 0.4;
|
|
|
|
expect(Tone.Transport.loopStart).to.be.closeTo(0.2, 0.01);
|
|
|
|
expect(Tone.Transport.loopEnd).to.be.closeTo(0.4, 0.01);
|
|
|
|
Tone.Transport.setLoopPoints(0, "1m");
|
|
|
|
expect(Tone.Transport.loopStart).to.be.closeTo(0, 0.01);
|
|
|
|
expect(Tone.Transport.loopEnd).to.be.closeTo(Tone.Transport.toSeconds("1m"), 0.01);
|
|
|
|
});
|
|
|
|
|
|
|
|
it ("can loop events scheduled on the transport", function(done){
|
2016-03-04 20:31:48 +00:00
|
|
|
Offline(function(dest, testFn, after){
|
|
|
|
var invocations = 0;
|
|
|
|
Tone.Transport.schedule(function(){
|
|
|
|
invocations++;
|
|
|
|
}, 0);
|
|
|
|
Tone.Transport.setLoopPoints(0, "4n").start();
|
|
|
|
Tone.Transport.loop = true;
|
|
|
|
after(function(){
|
|
|
|
expect(invocations).to.be.greaterThan(1);
|
|
|
|
Tone.Transport.loop = false;
|
|
|
|
Tone.Transport.stop();
|
|
|
|
Tone.Transport.cancel(0);
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
}, 1);
|
2015-08-18 22:14:26 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
});
|
2015-10-27 21:49:00 +00:00
|
|
|
|
|
|
|
context("Quantization", function(){
|
|
|
|
|
|
|
|
afterEach(resetTransport);
|
|
|
|
|
|
|
|
it("returns the time quantized to the next subdivision", function(){
|
|
|
|
expect(Tone.Transport.quantize(1.1, 0.5)).to.be.closeTo(1.5, 0.01);
|
|
|
|
expect(Tone.Transport.quantize("1m", "2m")).to.be.closeTo(Tone.Transport.toSeconds("2m"), 0.01);
|
|
|
|
expect(Tone.Transport.quantize(2.3, 0.5)).to.be.closeTo(2.5, 0.01);
|
|
|
|
expect(Tone.Transport.quantize("4n", "8n")).to.be.closeTo(Tone.Transport.toSeconds("4n"), 0.01);
|
|
|
|
expect(Tone.Transport.quantize(0, 4)).to.be.closeTo(0, 0.01);
|
|
|
|
});
|
|
|
|
|
|
|
|
it("returns now relative times with the Transport stopped", function(){
|
|
|
|
var now = Tone.Transport.now();
|
|
|
|
expect(Tone.Transport.quantize(undefined, "1m")).to.be.closeTo(now, 0.01);
|
|
|
|
expect(Tone.Transport.quantize("+1m", "1m")).to.be.closeTo(now + Tone.Transport.toSeconds("1m"), 0.01);
|
|
|
|
});
|
|
|
|
|
|
|
|
it("returns the time of the next subdivision when the transport is started", function(done){
|
2015-10-28 00:58:21 +00:00
|
|
|
var now = Tone.Transport.now() + 0.1;
|
2015-10-27 21:49:00 +00:00
|
|
|
Tone.Transport.start(now);
|
|
|
|
setTimeout(function(){
|
2015-10-28 00:58:21 +00:00
|
|
|
// console.log((now + 0.5) - Tone.Transport.quantize(undefined, 0.5));
|
|
|
|
expect(Tone.Transport.quantize(undefined, 0.5)).to.be.closeTo(now + 0.5, 0.01);
|
|
|
|
expect(Tone.Transport.quantize("+1.1", 0.5)).to.be.closeTo(now + 1.5, 0.01);
|
|
|
|
expect(Tone.Transport.quantize("+0.4", 1)).to.be.closeTo(now + 1, 0.01);
|
|
|
|
expect(Tone.Transport.quantize("+1.1", 1)).to.be.closeTo(now + 2, 0.01);
|
2015-10-27 21:49:00 +00:00
|
|
|
done();
|
2015-10-28 00:58:21 +00:00
|
|
|
}, 200);
|
2015-10-27 21:49:00 +00:00
|
|
|
});
|
|
|
|
});
|
2015-08-18 22:14:26 +00:00
|
|
|
|
|
|
|
context("PPQ", function(){
|
|
|
|
|
|
|
|
afterEach(resetTransport);
|
|
|
|
|
|
|
|
it("can get and set pulses per quarter", function(){
|
|
|
|
Tone.Transport.PPQ = 96;
|
|
|
|
expect(Tone.Transport.PPQ).to.equal(96);
|
|
|
|
});
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
context("position", function(){
|
|
|
|
|
|
|
|
afterEach(resetTransport);
|
|
|
|
|
|
|
|
it("can jump to a specific tick number", function(done){
|
2016-03-04 20:31:48 +00:00
|
|
|
Offline(function(dest, test, after){
|
|
|
|
Tone.Transport.ticks = 200;
|
|
|
|
expect(Tone.Transport.ticks).to.equal(200);
|
|
|
|
Tone.Transport.start();
|
|
|
|
after(function(){
|
|
|
|
expect(Tone.Transport.ticks).to.at.least(200);
|
|
|
|
Tone.Transport.stop();
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
}, 0.1);
|
2015-08-18 22:14:26 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
it("can get the current position in TransportTime", function(done){
|
2016-03-04 20:31:48 +00:00
|
|
|
Offline(function(dest, test, after){
|
|
|
|
expect(Tone.Transport.position).to.equal("0:0:0");
|
|
|
|
Tone.Transport.start();
|
|
|
|
after(function(){
|
|
|
|
expect(Tone.Transport.position).to.not.equal("0:0:0");
|
|
|
|
Tone.Transport.stop();
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
}, 0.1);
|
2015-08-18 22:14:26 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
it("can set the current position in TransportTime", function(){
|
|
|
|
expect(Tone.Transport.position).to.equal("0:0:0");
|
|
|
|
Tone.Transport.position = "3:0";
|
|
|
|
expect(Tone.Transport.position).to.equal("3:0:0");
|
|
|
|
Tone.Transport.position = "0:0";
|
|
|
|
expect(Tone.Transport.position).to.equal("0:0:0");
|
|
|
|
});
|
|
|
|
|
2015-10-09 23:09:22 +00:00
|
|
|
it ("can get the progress of the loop", function(){
|
|
|
|
Tone.Transport.setLoopPoints(0, "1m").start();
|
|
|
|
Tone.Transport.loop = true;
|
|
|
|
expect(Tone.Transport.progress).to.be.equal(0);
|
|
|
|
Tone.Transport.position = "2n";
|
|
|
|
expect(Tone.Transport.progress).to.be.closeTo(0.5, 0.001);
|
|
|
|
Tone.Transport.position = "2n + 4n";
|
|
|
|
expect(Tone.Transport.progress).to.be.closeTo(0.75, 0.001);
|
|
|
|
});
|
|
|
|
|
2015-08-18 22:14:26 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
context("state", function(){
|
|
|
|
|
|
|
|
afterEach(resetTransport);
|
|
|
|
|
|
|
|
it("can start, pause, and stop", function(done){
|
2016-03-04 20:31:48 +00:00
|
|
|
Offline(function(dest, test, after){
|
|
|
|
Tone.Transport.start(0).pause(0.2).stop(0.4);
|
|
|
|
|
|
|
|
test(function(sample, time){
|
|
|
|
if (time < 0.2){
|
|
|
|
expect(Tone.Transport.state).to.equal("started");
|
|
|
|
} else if (time < 0.4){
|
|
|
|
expect(Tone.Transport.state).to.equal("paused");
|
|
|
|
} else {
|
|
|
|
expect(Tone.Transport.state).to.equal("stopped");
|
|
|
|
}
|
|
|
|
});
|
|
|
|
after(function(){
|
|
|
|
expect(Tone.Transport.state).to.equal("stopped");
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
}, 0.5);
|
2015-08-18 22:14:26 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
context("ticks", function(){
|
|
|
|
|
|
|
|
afterEach(resetTransport);
|
|
|
|
|
|
|
|
it("resets ticks on stop but not on pause", function(done){
|
2016-03-04 20:31:48 +00:00
|
|
|
Offline(function(dest, test, after){
|
|
|
|
Tone.Transport.start().pause(0.1).stop(0.2);
|
|
|
|
|
|
|
|
var pausedTicks = 0;
|
|
|
|
|
|
|
|
test(function(sample, time){
|
|
|
|
if (time <= 0.1){
|
|
|
|
expect(Tone.Transport.ticks).to.be.greaterThan(0);
|
|
|
|
pausedTicks = Tone.Transport.ticks;
|
2016-03-18 14:23:49 +00:00
|
|
|
} else if (time <= 0.19){
|
2016-03-04 20:31:48 +00:00
|
|
|
expect(Tone.Transport.ticks).to.equal(pausedTicks);
|
|
|
|
} else if (time > 0.21){
|
|
|
|
expect(Tone.Transport.ticks).to.equal(0);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
after(done);
|
|
|
|
}, 0.5);
|
2015-08-18 22:14:26 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
it("tracks ticks after start", function(done){
|
2016-03-04 20:31:48 +00:00
|
|
|
|
|
|
|
Offline(function(dest, test, after){
|
|
|
|
Tone.Transport.bpm.value = 120;
|
|
|
|
Tone.Transport.PPQ = 48;
|
|
|
|
Tone.Transport.start();
|
|
|
|
|
|
|
|
after(function(){
|
|
|
|
expect(Tone.Transport.ticks).to.at.least(48);
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
}, 0.6);
|
2015-08-18 22:14:26 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
it("can start with a tick offset", function(done){
|
2016-03-04 20:31:48 +00:00
|
|
|
Offline(function(dest, test, after){
|
|
|
|
Tone.Transport.start(0, "200i");
|
|
|
|
|
|
|
|
test(function(sample, time){
|
|
|
|
if (time > 0){
|
|
|
|
expect(Tone.Transport.ticks).to.at.least(200);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
after(function(){
|
|
|
|
expect(Tone.Transport.ticks).to.at.least(200);
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
}, 0.1);
|
2015-08-18 22:14:26 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
it("tracks ticks correctly with a different PPQ and BPM", function(done){
|
2016-03-04 20:31:48 +00:00
|
|
|
|
|
|
|
Offline(function(dest, test, after){
|
|
|
|
Tone.Transport.PPQ = 96;
|
|
|
|
Tone.Transport.bpm.value = 90;
|
|
|
|
Tone.Transport.start();
|
|
|
|
|
|
|
|
after(function(){
|
|
|
|
expect(Tone.Transport.ticks).to.at.least(72);
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
}, 0.6);
|
2015-08-18 22:14:26 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
context("schedule", function(){
|
|
|
|
|
|
|
|
afterEach(resetTransport);
|
|
|
|
|
|
|
|
it ("can schedule an event on the timeline", function(){
|
|
|
|
var eventID = Tone.Transport.schedule(function(){}, 0);
|
|
|
|
expect(eventID).to.be.a.number;
|
|
|
|
});
|
|
|
|
|
|
|
|
it ("scheduled event gets invoked with the time of the event", function(done){
|
|
|
|
var startTime = Tone.Transport.now() + 0.1;
|
|
|
|
Tone.Transport.schedule(function(time){
|
|
|
|
expect(time).to.equal(startTime);
|
|
|
|
done();
|
|
|
|
}, 0);
|
|
|
|
Tone.Transport.start(startTime);
|
|
|
|
});
|
|
|
|
|
|
|
|
it ("can cancel a scheduled event", function(done){
|
|
|
|
var eventID = Tone.Transport.schedule(function(){
|
|
|
|
throw new Error("should not call this function");
|
|
|
|
}, 0);
|
|
|
|
Tone.Transport.cancel(eventID);
|
|
|
|
Tone.Transport.stop();
|
|
|
|
setTimeout(done, 100);
|
|
|
|
});
|
|
|
|
|
2015-09-03 20:56:05 +00:00
|
|
|
it ("can cancel the timeline of scheduled object", function(){
|
2015-08-18 22:14:26 +00:00
|
|
|
Tone.Transport.schedule(Tone.noOp, 0);
|
|
|
|
Tone.Transport.schedule(Tone.noOp, 1);
|
|
|
|
Tone.Transport.schedule(Tone.noOp, 2);
|
|
|
|
expect(Tone.Transport._timeline.length).to.equal(3);
|
2015-09-03 20:56:05 +00:00
|
|
|
Tone.Transport.cancel(2);
|
2015-08-18 22:14:26 +00:00
|
|
|
expect(Tone.Transport._timeline.length).to.equal(2);
|
2015-09-03 20:56:05 +00:00
|
|
|
Tone.Transport.cancel(0);
|
2015-08-18 22:14:26 +00:00
|
|
|
expect(Tone.Transport._timeline.length).to.equal(0);
|
|
|
|
});
|
|
|
|
|
2015-09-03 20:56:05 +00:00
|
|
|
it ("can cancel the timeline of schedulOnce object", function(){
|
2015-08-18 22:14:26 +00:00
|
|
|
Tone.Transport.scheduleOnce(Tone.noOp, 0);
|
|
|
|
Tone.Transport.scheduleOnce(Tone.noOp, 1);
|
|
|
|
Tone.Transport.scheduleOnce(Tone.noOp, 2);
|
|
|
|
expect(Tone.Transport._onceEvents.length).to.equal(3);
|
2015-09-03 20:56:05 +00:00
|
|
|
Tone.Transport.cancel(2);
|
2015-08-18 22:14:26 +00:00
|
|
|
expect(Tone.Transport._onceEvents.length).to.equal(2);
|
2015-09-03 20:56:05 +00:00
|
|
|
Tone.Transport.cancel(0);
|
2015-08-18 22:14:26 +00:00
|
|
|
expect(Tone.Transport._onceEvents.length).to.equal(0);
|
|
|
|
});
|
|
|
|
|
|
|
|
it ("scheduled event anywhere along the timeline", function(done){
|
|
|
|
var startTime = Tone.Transport.now();
|
|
|
|
Tone.Transport.schedule(function(time){
|
|
|
|
expect(time).to.be.closeTo(startTime + 0.5, 0.001);
|
|
|
|
done();
|
|
|
|
}, 0.5);
|
|
|
|
Tone.Transport.start(startTime);
|
|
|
|
});
|
|
|
|
|
|
|
|
it ("can schedule multiple events and invoke them in the right order", function(done){
|
|
|
|
var first = false;
|
|
|
|
Tone.Transport.schedule(function(){
|
|
|
|
first = true;
|
|
|
|
}, 0.5);
|
|
|
|
Tone.Transport.schedule(function(){
|
|
|
|
expect(first).to.be.true;
|
|
|
|
done();
|
|
|
|
}, 0.51);
|
|
|
|
Tone.Transport.start();
|
|
|
|
});
|
|
|
|
|
|
|
|
it ("invokes the event again if the timeline is restarted", function(done){
|
2016-03-04 20:31:48 +00:00
|
|
|
Offline(function(dest, test, after){
|
|
|
|
var iterations = 0;
|
|
|
|
|
|
|
|
Tone.Transport.schedule(function(){
|
|
|
|
iterations++;
|
|
|
|
}, 0.05);
|
|
|
|
|
|
|
|
Tone.Transport.start(0).stop(0.1).start(0.2);
|
|
|
|
|
|
|
|
after(function(){
|
|
|
|
expect(iterations).to.be.equal(2);
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
}, 0.3);
|
2015-08-18 22:14:26 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
context("scheduleRepeat", function(){
|
|
|
|
|
|
|
|
afterEach(resetTransport);
|
|
|
|
|
|
|
|
it ("can schedule a repeated event", function(){
|
|
|
|
var eventID = Tone.Transport.scheduleRepeat(function(){}, 1, 0);
|
|
|
|
expect(eventID).to.be.a.number;
|
|
|
|
});
|
|
|
|
|
|
|
|
it ("scheduled event gets invoked with the time of the event", function(done){
|
|
|
|
var startTime = Tone.Transport.now() + 0.1;
|
|
|
|
var eventID = Tone.Transport.scheduleRepeat(function(time){
|
2015-09-03 20:56:05 +00:00
|
|
|
Tone.Transport.clear(eventID);
|
2015-08-18 22:14:26 +00:00
|
|
|
expect(time).to.equal(startTime);
|
|
|
|
done();
|
|
|
|
}, 1, 0);
|
|
|
|
Tone.Transport.start(startTime);
|
|
|
|
});
|
|
|
|
|
2015-09-03 20:56:05 +00:00
|
|
|
it ("can clear a scheduled event", function(done){
|
2015-08-18 22:14:26 +00:00
|
|
|
var eventID = Tone.Transport.scheduleRepeat(function(){
|
|
|
|
throw new Error("should not call this function");
|
|
|
|
}, 1, 0);
|
2015-09-03 20:56:05 +00:00
|
|
|
Tone.Transport.clear(eventID);
|
2015-08-18 22:14:26 +00:00
|
|
|
Tone.Transport.stop();
|
|
|
|
setTimeout(done, 100);
|
|
|
|
});
|
|
|
|
|
|
|
|
it ("can be scheduled in the future", function(done){
|
|
|
|
var startTime = Tone.Transport.now() + 0.1;
|
|
|
|
var eventID = Tone.Transport.scheduleRepeat(function(time){
|
2015-09-03 20:56:05 +00:00
|
|
|
Tone.Transport.clear(eventID);
|
2015-08-18 22:14:26 +00:00
|
|
|
expect(time).to.be.closeTo(startTime + 0.2, 0.01);
|
|
|
|
done();
|
|
|
|
}, 1, 0.2);
|
|
|
|
Tone.Transport.start(startTime);
|
|
|
|
});
|
|
|
|
|
|
|
|
it ("repeats a repeat event", function(done){
|
2016-03-04 20:31:48 +00:00
|
|
|
Offline(function(output, test, after){
|
|
|
|
var invocations = 0;
|
|
|
|
|
|
|
|
Tone.Transport.scheduleRepeat(function(){
|
|
|
|
invocations++;
|
|
|
|
}, 0.1, 0);
|
|
|
|
|
|
|
|
Tone.Transport.start();
|
|
|
|
|
|
|
|
after(function(){
|
|
|
|
expect(invocations).to.be.above(9);
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
}, 1);
|
2015-08-18 22:14:26 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
it ("repeats at the repeat interval", function(done){
|
2016-03-04 20:31:48 +00:00
|
|
|
Offline(function(output, test, after){
|
|
|
|
var repeatTime = -1;
|
|
|
|
|
|
|
|
var eventID = Tone.Transport.scheduleRepeat(function(time){
|
|
|
|
if (repeatTime !== -1){
|
|
|
|
expect(time - repeatTime).to.be.closeTo(0.1, 0.01);
|
|
|
|
}
|
|
|
|
repeatTime = time;
|
|
|
|
}, 0.1, 0);
|
|
|
|
|
|
|
|
Tone.Transport.start();
|
|
|
|
|
|
|
|
after(function(){
|
|
|
|
Tone.Transport.clear(eventID);
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
2015-08-18 22:14:26 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
it ("can schedule multiple events and invoke them in the right order", function(done){
|
|
|
|
var first = false;
|
|
|
|
var firstID = Tone.Transport.scheduleRepeat(function(){
|
|
|
|
first = true;
|
2015-09-03 20:56:05 +00:00
|
|
|
Tone.Transport.clear(firstID);
|
2015-08-18 22:14:26 +00:00
|
|
|
}, 1, 0.5);
|
|
|
|
var secondID = Tone.Transport.scheduleRepeat(function(){
|
2015-09-03 20:56:05 +00:00
|
|
|
Tone.Transport.clear(secondID);
|
2015-08-18 22:14:26 +00:00
|
|
|
expect(first).to.be.true;
|
|
|
|
done();
|
|
|
|
}, 1, 0.51);
|
|
|
|
Tone.Transport.start();
|
|
|
|
});
|
|
|
|
|
|
|
|
it ("cannot schedule an event with an interval of 0", function(){
|
|
|
|
expect(function(){
|
|
|
|
Tone.Transport.scheduleRepeat(function(){}, 0, 10);
|
|
|
|
}).to.throw(Error);
|
|
|
|
});
|
|
|
|
|
2015-09-05 19:07:31 +00:00
|
|
|
it ("repeats for the given duration", function(done){
|
2016-03-04 20:31:48 +00:00
|
|
|
Offline(function(output, test, after){
|
|
|
|
|
|
|
|
var repeatCount = 0;
|
|
|
|
|
|
|
|
var eventID = Tone.Transport.scheduleRepeat(function(){
|
|
|
|
repeatCount++;
|
|
|
|
}, 0.1, 0, 0.5);
|
|
|
|
|
|
|
|
Tone.Transport.start();
|
|
|
|
|
|
|
|
after(function(){
|
|
|
|
expect(repeatCount).to.equal(5);
|
|
|
|
Tone.Transport.clear(eventID);
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
|
|
|
|
}, 0.6);
|
2015-09-05 19:07:31 +00:00
|
|
|
});
|
|
|
|
|
2015-08-18 22:14:26 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
context("scheduleOnce", function(){
|
|
|
|
|
|
|
|
afterEach(resetTransport);
|
|
|
|
|
|
|
|
it ("can schedule a single event on the timeline", function(){
|
|
|
|
var eventID = Tone.Transport.scheduleOnce(function(){}, 0);
|
|
|
|
expect(eventID).to.be.a.number;
|
|
|
|
});
|
|
|
|
|
|
|
|
it ("scheduled event gets invoked with the time of the event", function(done){
|
|
|
|
var startTime = Tone.Transport.now() + 0.1;
|
|
|
|
var eventID = Tone.Transport.scheduleOnce(function(time){
|
2015-09-03 20:56:05 +00:00
|
|
|
Tone.Transport.clear(eventID);
|
2015-08-18 22:14:26 +00:00
|
|
|
expect(time).to.equal(startTime);
|
|
|
|
done();
|
|
|
|
}, 0);
|
|
|
|
Tone.Transport.start(startTime);
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
it ("can cancel a scheduled event", function(done){
|
|
|
|
var eventID = Tone.Transport.scheduleOnce(function(){
|
|
|
|
throw new Error("should not call this function");
|
|
|
|
}, 0);
|
2015-09-03 20:56:05 +00:00
|
|
|
Tone.Transport.clear(eventID);
|
2015-08-18 22:14:26 +00:00
|
|
|
Tone.Transport.stop();
|
|
|
|
setTimeout(done, 200);
|
|
|
|
});
|
|
|
|
|
|
|
|
it ("can be scheduled in the future", function(done){
|
|
|
|
var startTime = Tone.Transport.now() + 0.1;
|
|
|
|
var eventID = Tone.Transport.scheduleOnce(function(time){
|
2015-09-03 20:56:05 +00:00
|
|
|
Tone.Transport.clear(eventID);
|
2015-08-18 22:14:26 +00:00
|
|
|
expect(time).to.be.closeTo(startTime + 0.3, 0.01);
|
|
|
|
done();
|
|
|
|
}, 0.3);
|
|
|
|
Tone.Transport.start(startTime);
|
|
|
|
});
|
|
|
|
|
|
|
|
it ("the event is removed after is is invoked", function(done){
|
|
|
|
var iterations = 0;
|
|
|
|
Tone.Transport.scheduleOnce(function(){
|
|
|
|
iterations++;
|
|
|
|
expect(iterations).to.be.lessThan(2);
|
|
|
|
}, 0);
|
|
|
|
Tone.Transport.start().stop("+0.1").start("+0.2");
|
|
|
|
setTimeout(done, 500);
|
|
|
|
});
|
|
|
|
|
|
|
|
});
|
|
|
|
|
2015-09-05 19:07:31 +00:00
|
|
|
context("events", function(){
|
|
|
|
|
|
|
|
afterEach(resetTransport);
|
|
|
|
|
|
|
|
it("invokes start/stop/pause events", function(){
|
|
|
|
var count = 0;
|
|
|
|
Transport.on("start stop pause", function(){
|
|
|
|
count++;
|
|
|
|
});
|
|
|
|
Transport.start().pause("+0.1").stop("+0.2");
|
|
|
|
expect(count).to.equal(3);
|
|
|
|
});
|
|
|
|
|
|
|
|
it("passes in the time argument to the events", function(){
|
|
|
|
Transport.on("start", function(time){
|
|
|
|
expect(time).to.equal(3);
|
|
|
|
});
|
|
|
|
Transport.on("stop", function(time){
|
|
|
|
expect(time).to.equal(4);
|
|
|
|
});
|
|
|
|
Transport.start(3).stop(4);
|
|
|
|
});
|
|
|
|
|
|
|
|
it("invokes the 'loop' method on loop", function(done){
|
2016-03-04 20:31:48 +00:00
|
|
|
|
|
|
|
Offline(function(output, test, after){
|
|
|
|
|
|
|
|
var sixteenth = Transport.toSeconds("16n");
|
|
|
|
|
|
|
|
Transport.setLoopPoints(0, sixteenth);
|
|
|
|
Transport.loop = true;
|
|
|
|
|
|
|
|
var lastLoop = -1;
|
|
|
|
var loops = 0;
|
|
|
|
|
|
|
|
Transport.on("loop", function(time){
|
|
|
|
loops++;
|
|
|
|
if (lastLoop !== -1){
|
|
|
|
expect(time - lastLoop).to.be.closeTo(sixteenth, 0.001);
|
|
|
|
}
|
|
|
|
lastLoop = time;
|
|
|
|
});
|
|
|
|
|
|
|
|
Transport.start(0).stop(sixteenth * 5.1);
|
|
|
|
|
|
|
|
after(function(){
|
|
|
|
expect(loops).to.equal(5);
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
|
|
|
|
}, 0.7);
|
2015-09-05 19:07:31 +00:00
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2015-08-18 22:14:26 +00:00
|
|
|
});
|
|
|
|
});
|