fully migrated to new Signal API

This commit is contained in:
Yotam Mann 2015-02-10 16:45:05 -05:00
parent 5cf420838e
commit 6b36cf13ef
2 changed files with 7 additions and 26 deletions

View file

@ -112,25 +112,6 @@ define(["Tone/core/Tone", "Tone/signal/WaveShaper"], function(Tone){
}
};
/**
* @return {number} the current value of the signal
*/
Tone.Signal.prototype.getValue = function(){
return this.value;
};
/**
* set the value of the signal right away
* will be overwritten if there are previously scheduled automation curves
*
* @param {number} value
* @returns {Tone.Signal} `this`
*/
Tone.Signal.prototype.setValue = function(value){
this.value = value;
return this;
};
/**
* Schedules a parameter value change at the given time.
*

View file

@ -18,14 +18,14 @@ function(core, chai, Signal, Oscillator, Switch, Route, Select, Test, NOT, AND,
it("can start with a value initially", function(){
var signal = new Signal(0);
expect(signal.getValue()).to.equal(0);
expect(signal.value).to.equal(0);
signal.dispose();
});
it("can set a value", function(){
var signal = new Signal(0);
signal.setValue(10);
expect(signal.getValue()).to.equal(10);
signal.value = 10;
expect(signal.value).to.equal(10);
signal.dispose();
});
@ -34,7 +34,7 @@ function(core, chai, Signal, Oscillator, Switch, Route, Select, Test, NOT, AND,
Test.offlineTest(0.1, function(dest){
sig = new Signal(10);
sig.setValueAtTime(100, "+0.1");
expect(sig.getValue()).to.equal(10);
expect(sig.value).to.equal(10);
sig.connect(dest);
}, function(sample, time){
if (sample === 100){
@ -52,7 +52,7 @@ function(core, chai, Signal, Oscillator, Switch, Route, Select, Test, NOT, AND,
syncTo = new Signal(1);
signalSync = new Signal(2);
signalSync.sync(syncTo);
syncTo.setValue(2);
syncTo.value = 2;
signalSync.connect(dest);
}, function(sample){
expect(sample).to.equal(4);
@ -67,9 +67,9 @@ function(core, chai, Signal, Oscillator, Switch, Route, Select, Test, NOT, AND,
var sig;
Test.offlineTest(0.1, function(dest){
sig = new Signal(0);
sig.setValue(-10);
sig.value = -10;
sig.linearRampToValueNow(1, "+0.1");
expect(sig.getValue()).to.equal(-10);
expect(sig.value).to.equal(-10);
sig.connect(dest);
}, function(sample, time){
if (sample === 1){