com.softsynth.jsyn.circuits
Class PluckedString

java.lang.Object
  extended by java.util.Observable
      extended by com.softsynth.jsyn.SynthObject
          extended by com.softsynth.jsyn.SynthSound
              extended by com.softsynth.jsyn.SynthCircuit
                  extended by com.softsynth.jsyn.SynthNote
                      extended by com.softsynth.jsyn.circuits.PluckedString

public class PluckedString
extends SynthNote

Implement plucked string algorithm using JSyn

Author:
(C) 1997 Phil Burk, SoftSynth.com, All Rights Reserved

Field Summary
 SynthInput delay
           
 SynthInput feedback
           
 SynthInput pluckStrength
           
 SynthInput rate
           
 
Fields inherited from class com.softsynth.jsyn.SynthNote
amplitude, frequency
 
Fields inherited from class com.softsynth.jsyn.SynthCircuit
output
 
Constructor Summary
PluckedString()
           
PluckedString(double delayTime)
           
 
Method Summary
 void pluck()
           
 void setStage(int time, int stage)
          Set stage of multi-stage sound.
 
Methods inherited from class com.softsynth.jsyn.SynthNote
note, noteOff, noteOn, noteOnFor
 
Methods inherited from class com.softsynth.jsyn.SynthCircuit
add, compile, delete, getPeer, loadByName
 
Methods inherited from class com.softsynth.jsyn.SynthSound
addPort, addPort, findNamedPort, getName, getNumPorts, getPortAt, getPriority, setPriority, setStage, start, start, stop, stop
 
Methods inherited from class com.softsynth.jsyn.SynthObject
deleteAll, enableDeletionByGarbageCollector, enableTracking, getSynthContext, isTrackingEnabled, toString, track
 
Methods inherited from class java.util.Observable
addObserver, countObservers, deleteObserver, deleteObservers, hasChanged, notifyObservers, notifyObservers
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

rate

public SynthInput rate

pluckStrength

public SynthInput pluckStrength

feedback

public SynthInput feedback

delay

public SynthInput delay
Constructor Detail

PluckedString

public PluckedString()
              throws SynthException
Throws:
SynthException

PluckedString

public PluckedString(double delayTime)
              throws SynthException
Throws:
SynthException
Method Detail

pluck

public void pluck()
           throws SynthException
Throws:
SynthException

setStage

public void setStage(int time,
                     int stage)
              throws SynthException
Description copied from class: SynthSound
Set stage of multi-stage sound. Typically noteOn will be stage 0, off will be 1.

Overrides:
setStage in class SynthSound
Throws:
SynthException - If an error occurs.