├── .gitattributes ├── .gitignore ├── .jshintrc ├── .npmignore ├── GPL-LICENSE.txt ├── Gruntfile.js ├── MIT-LICENSE.txt ├── README.md ├── demos ├── audio-file │ ├── css │ │ └── audiofile.css │ └── index.html ├── audio-input │ ├── index.html │ └── js │ │ └── audio-input.js ├── demos.css ├── media-element-input │ ├── index.html │ └── js │ │ └── media-element-input.js ├── playground │ ├── css │ │ ├── playground.css │ │ └── shake.css │ ├── demos │ │ ├── .jshintrc │ │ ├── adsr.js │ │ ├── am.js │ │ ├── asr.js │ │ ├── audio-in-granulated.js │ │ ├── audio-in.js │ │ ├── band.js │ │ ├── bandlimited-impulse.js │ │ ├── bandpass-filter.js │ │ ├── bandreject-filter.js │ │ ├── chop-buffer.js │ │ ├── custom-envelope.js │ │ ├── decay.js │ │ ├── declarative-scheduling.js │ │ ├── dejong-distortion.js │ │ ├── delay.js │ │ ├── dust.js │ │ ├── fm.js │ │ ├── for-ann-rising.js │ │ ├── glissando.js │ │ ├── granulator.js │ │ ├── highpass-filter.js │ │ ├── impulse-pm.js │ │ ├── impulse.js │ │ ├── latch.js │ │ ├── lfNoise.js │ │ ├── line-fm.js │ │ ├── line-pm.js │ │ ├── lowpass-filter.js │ │ ├── moog.js │ │ ├── mouse-click.js │ │ ├── mouse-x.js │ │ ├── mouse-xy.js │ │ ├── mouse-y.js │ │ ├── multiple-synths.js │ │ ├── noise-fm.js │ │ ├── pinknoise.js │ │ ├── play-buffer.js │ │ ├── playBuffer-trigger.js │ │ ├── pm.js │ │ ├── polyphonicSynth.js │ │ ├── quadraphonic.js │ │ ├── readBuffer-phasor.js │ │ ├── readBuffer.js │ │ ├── sample-accurate-scheduling.js │ │ ├── saw.js │ │ ├── scope.js │ │ ├── sequencer.js │ │ ├── sine.js │ │ ├── square.js │ │ ├── stereo.js │ │ ├── sum.js │ │ ├── tanh-distortion.js │ │ ├── tarrabia-dejong-distortion.js │ │ ├── tri.js │ │ ├── trigger-callback.js │ │ └── whitenoise.js │ ├── index.html │ ├── js │ │ ├── demo-list.js │ │ ├── demo-selector.js │ │ ├── error-console.js │ │ ├── playground.js │ │ └── source-evaluators.js │ └── live │ │ ├── css │ │ └── live-playground.css │ │ ├── demos │ │ ├── adsr.json │ │ ├── am.json │ │ ├── asr.json │ │ ├── audio-in-granulated.json │ │ ├── audio-in.json │ │ ├── band.json │ │ ├── bandlimited-impulse.json │ │ ├── bandpass-filter.json │ │ ├── bandreject-filter.json │ │ ├── chop-buffer.json │ │ ├── custom-envelope.json │ │ ├── decay.json │ │ ├── declarative-scheduling.json │ │ ├── dejong-distortion.json │ │ ├── delay.json │ │ ├── dust.json │ │ ├── fm.json │ │ ├── glissando.json │ │ ├── granulator.json │ │ ├── highpass-filter.json │ │ ├── impulse-pm.json │ │ ├── impulse.json │ │ ├── latch.json │ │ ├── lfNoise.json │ │ ├── line-fm.json │ │ ├── line-pm.json │ │ ├── lowpass-filter.json │ │ ├── moog.json │ │ ├── mouse-click.json │ │ ├── mouse-x.json │ │ ├── mouse-xy.json │ │ ├── mouse-y.json │ │ ├── noise-fm.json │ │ ├── pinknoise.json │ │ ├── play-buffer.json │ │ ├── playBuffer-trigger.json │ │ ├── pm.json │ │ ├── quadraphonic.json │ │ ├── readBuffer-phasor.json │ │ ├── readBuffer.json │ │ ├── sample-accurate-scheduling.json │ │ ├── saw.json │ │ ├── scope.json │ │ ├── sequencer.json │ │ ├── sine.json │ │ ├── square.json │ │ ├── stereo.json │ │ ├── tanh-distortion.json │ │ ├── tarrabia-dejong-distortion.json │ │ ├── tri.json │ │ └── whitenoise.json │ │ ├── index.html │ │ └── js │ │ ├── live-demo-list.js │ │ └── visual-editor.js └── shared │ ├── audio │ ├── hillier-first-chord.wav │ └── where-the-honey-is.mp3 │ ├── css │ └── demos.css │ └── js │ └── demo-utils.js ├── docs ├── buffers │ └── about-buffers.md ├── building-flocking.md ├── getting-started.md ├── responding-to-user-input.md ├── scheduling.md ├── synths │ └── creating-synths.md └── ugens │ ├── buffers.md │ ├── distortions.md │ ├── mouse.md │ ├── oscillators.md │ └── triggers.md ├── favicon.ico ├── flocking-website.css ├── images ├── flocking-tentative-logo.png ├── pause.ai ├── pause.png ├── play.ai └── play.png ├── index.html ├── package.json ├── src ├── audiofile-encoder.js ├── audiofile.js ├── buffers.js ├── core.js ├── evaluators.js ├── flocking-audiofile-compatibility.js ├── flocking-audiofile-converters.js ├── flocking-audiofile-worker.js ├── gfx.js ├── node-list.js ├── parser.js ├── scheduler.js ├── synths │ ├── band.js │ ├── frame-rate.js │ ├── group.js │ ├── model.js │ ├── polyphonic.js │ ├── synth.js │ └── value.js ├── testing.js ├── ugens │ ├── bandlimited.js │ ├── browser.js │ ├── buffer.js │ ├── core.js │ ├── debugging.js │ ├── distortion.js │ ├── dynamics.js │ ├── envelopes.js │ ├── filters.js │ ├── gates.js │ ├── granular.js │ ├── listening.js │ ├── math.js │ ├── midi.js │ ├── multichannel.js │ ├── oscillators.js │ ├── random.js │ ├── scheduling.js │ └── triggers.js ├── ui │ ├── editor │ │ ├── css │ │ │ └── editor.css │ │ └── js │ │ │ └── editor.js │ ├── play-button │ │ ├── css │ │ │ └── play-button.css │ │ └── js │ │ │ └── play-button.js │ ├── selectbox │ │ └── js │ │ │ └── selectbox.js │ ├── shared │ │ ├── css │ │ │ └── flocking-icon-font.css │ │ └── fonts │ │ │ ├── flocking-icon-font.eot │ │ │ ├── flocking-icon-font.svg │ │ │ ├── flocking-icon-font.ttf │ │ │ └── flocking-icon-font.woff │ └── third-party │ │ └── normalize │ │ └── css │ │ └── normalize.css └── web │ ├── audio-system.js │ ├── buffer-writer.js │ ├── input-device-manager.js │ ├── native-node-manager.js │ ├── output-manager.js │ └── webaudio-core.js ├── tests ├── manual │ └── aiff-playback-11Khz │ │ ├── README.md │ │ ├── hockey.aiff │ │ ├── hockey.wav │ │ └── index.html ├── performance │ ├── css │ │ └── benchmarks.css │ ├── html │ │ ├── audiofile-benchmarks.html │ │ ├── standalone-ugen-benchmarks.html │ │ └── synth-benchmarks.html │ └── js │ │ ├── audiofile-benchmarks.js │ │ ├── standalone-ugen-benchmarks.js │ │ └── synth-benchmarks.js ├── shared │ ├── audio │ │ ├── long-triangle-int16-44100.wav │ │ ├── long-triangle-int16-48000.wav │ │ ├── long-triangle-int16-88200.wav │ │ └── long-triangle-int16-96000.wav │ └── js │ │ └── audiofile-dataurls.js └── unit │ ├── all-tests.html │ ├── html │ ├── audiofile-decoder-tests.html │ ├── audiofile-tests.html │ ├── band-tests.html │ ├── bandlimited-ugen-tests.html │ ├── buffer-tests.html │ ├── buffer-ugen-tests.html │ ├── bus-tests.html │ ├── core-tests.html │ ├── core-utilities-tests.html │ ├── dynamics-ugen-tests.html │ ├── envelope-ugen-tests.html │ ├── envgen-ugen-tests.html │ ├── filter-ugen-tests.html │ ├── gate-ugen-tests.html │ ├── ioc-integration-tests.html │ ├── listening-ugen-tests.html │ ├── math-ugen-tests.html │ ├── midi-ugen-tests.html │ ├── model-synth-tests.html │ ├── multichannel-ugen-tests.html │ ├── nodelist-tests.html │ ├── osc-ugen-tests.html │ ├── parser-tests.html │ ├── perf-tests.html │ ├── phasor-ugen-tests.html │ ├── playbuffer-ugen-tests.html │ ├── random-ugen-tests.html │ ├── require-tests.html │ ├── scheduler-tests.html │ ├── scheduler-timing-tests.html │ ├── scheduling-ugen-tests.html │ ├── synth-environment-tests.html │ ├── synth-evaluation-tests.html │ ├── synth-group-tests.html │ ├── synth-instantiation-tests.html │ ├── synth-note-target-tests.html │ ├── synth-removal-tests.html │ ├── synth-scheduled-tests.html │ ├── synth-tests.html │ ├── test-utils-tests.html │ ├── trigger-ugen-tests.html │ ├── ugen-tests.html │ ├── webaudio-tests.html │ └── writebuffer-ugen-tests.html │ ├── js │ ├── audiofile-decoder-tests.js │ ├── audiofile-test-utils.js │ ├── audiofile-tests.js │ ├── band-tests.js │ ├── bandlimited-ugen-tests.js │ ├── buffer-tests.js │ ├── buffer-ugen-tests.js │ ├── bus-tests.js │ ├── core-tests.js │ ├── core-utilities-tests.js │ ├── dynamics-ugen-tests.js │ ├── envelope-ugen-tests.js │ ├── envgen-ugen-tests.js │ ├── filter-ugen-tests.js │ ├── flocking-test-utils.js │ ├── gate-ugen-tests.js │ ├── ioc-integration-tests.js │ ├── listening-ugen-tests.js │ ├── math-ugen-tests.js │ ├── midi-ugen-tests.js │ ├── model-synth-tests.js │ ├── multichannel-ugen-tests.js │ ├── nodelist-tests.js │ ├── osc-ugen-tests.js │ ├── parser-tests.js │ ├── perf-tests.js │ ├── phasor-ugen-tests.js │ ├── playbuffer-ugen-tests.js │ ├── random-ugen-tests.js │ ├── require-tests.js │ ├── scheduler-tests.js │ ├── scheduler-timing-tests.js │ ├── scheduling-ugen-tests.js │ ├── synth-environment-tests.js │ ├── synth-evaluation-tests.js │ ├── synth-group-tests.js │ ├── synth-instantiation-tests.js │ ├── synth-note-target-tests.js │ ├── synth-removal-tests.js │ ├── synth-scheduled-tests.js │ ├── synth-tests.js │ ├── test-utils-tests.js │ ├── trigger-ugen-tests.js │ ├── ugen-tests.js │ ├── webaudio-tests.js │ └── writebuffer-ugen-tests.js │ └── testem.json └── third-party ├── simjs └── js │ └── random-0.26.js └── webarraymath └── js └── webarraymath.js /.gitattributes: -------------------------------------------------------------------------------- 1 | dist/*.js binary 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/.gitignore -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/.jshintrc -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | /tests 2 | -------------------------------------------------------------------------------- /GPL-LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/GPL-LICENSE.txt -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /MIT-LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/MIT-LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/README.md -------------------------------------------------------------------------------- /demos/audio-file/css/audiofile.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/demos/audio-file/css/audiofile.css -------------------------------------------------------------------------------- /demos/audio-file/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/demos/audio-file/index.html -------------------------------------------------------------------------------- /demos/audio-input/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/demos/audio-input/index.html -------------------------------------------------------------------------------- /demos/audio-input/js/audio-input.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/demos/audio-input/js/audio-input.js -------------------------------------------------------------------------------- /demos/demos.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/demos/demos.css -------------------------------------------------------------------------------- /demos/media-element-input/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/demos/media-element-input/index.html -------------------------------------------------------------------------------- /demos/media-element-input/js/media-element-input.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/demos/media-element-input/js/media-element-input.js -------------------------------------------------------------------------------- /demos/playground/css/playground.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/demos/playground/css/playground.css -------------------------------------------------------------------------------- /demos/playground/css/shake.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/demos/playground/css/shake.css -------------------------------------------------------------------------------- /demos/playground/demos/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/demos/playground/demos/.jshintrc -------------------------------------------------------------------------------- /demos/playground/demos/adsr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/demos/playground/demos/adsr.js -------------------------------------------------------------------------------- /demos/playground/demos/am.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/demos/playground/demos/am.js -------------------------------------------------------------------------------- /demos/playground/demos/asr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/demos/playground/demos/asr.js -------------------------------------------------------------------------------- /demos/playground/demos/audio-in-granulated.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/demos/playground/demos/audio-in-granulated.js -------------------------------------------------------------------------------- /demos/playground/demos/audio-in.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/demos/playground/demos/audio-in.js -------------------------------------------------------------------------------- /demos/playground/demos/band.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/demos/playground/demos/band.js -------------------------------------------------------------------------------- /demos/playground/demos/bandlimited-impulse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/demos/playground/demos/bandlimited-impulse.js -------------------------------------------------------------------------------- /demos/playground/demos/bandpass-filter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/demos/playground/demos/bandpass-filter.js -------------------------------------------------------------------------------- /demos/playground/demos/bandreject-filter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/demos/playground/demos/bandreject-filter.js -------------------------------------------------------------------------------- /demos/playground/demos/chop-buffer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/demos/playground/demos/chop-buffer.js -------------------------------------------------------------------------------- /demos/playground/demos/custom-envelope.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/demos/playground/demos/custom-envelope.js -------------------------------------------------------------------------------- /demos/playground/demos/decay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/demos/playground/demos/decay.js -------------------------------------------------------------------------------- /demos/playground/demos/declarative-scheduling.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/demos/playground/demos/declarative-scheduling.js -------------------------------------------------------------------------------- /demos/playground/demos/dejong-distortion.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/demos/playground/demos/dejong-distortion.js -------------------------------------------------------------------------------- /demos/playground/demos/delay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/demos/playground/demos/delay.js -------------------------------------------------------------------------------- /demos/playground/demos/dust.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/demos/playground/demos/dust.js -------------------------------------------------------------------------------- /demos/playground/demos/fm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/demos/playground/demos/fm.js -------------------------------------------------------------------------------- /demos/playground/demos/for-ann-rising.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/demos/playground/demos/for-ann-rising.js -------------------------------------------------------------------------------- /demos/playground/demos/glissando.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/demos/playground/demos/glissando.js -------------------------------------------------------------------------------- /demos/playground/demos/granulator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/demos/playground/demos/granulator.js -------------------------------------------------------------------------------- /demos/playground/demos/highpass-filter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/demos/playground/demos/highpass-filter.js -------------------------------------------------------------------------------- /demos/playground/demos/impulse-pm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/demos/playground/demos/impulse-pm.js -------------------------------------------------------------------------------- /demos/playground/demos/impulse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/demos/playground/demos/impulse.js -------------------------------------------------------------------------------- /demos/playground/demos/latch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/demos/playground/demos/latch.js -------------------------------------------------------------------------------- /demos/playground/demos/lfNoise.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/demos/playground/demos/lfNoise.js -------------------------------------------------------------------------------- /demos/playground/demos/line-fm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/demos/playground/demos/line-fm.js -------------------------------------------------------------------------------- /demos/playground/demos/line-pm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/demos/playground/demos/line-pm.js -------------------------------------------------------------------------------- /demos/playground/demos/lowpass-filter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/demos/playground/demos/lowpass-filter.js -------------------------------------------------------------------------------- /demos/playground/demos/moog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/demos/playground/demos/moog.js -------------------------------------------------------------------------------- /demos/playground/demos/mouse-click.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/demos/playground/demos/mouse-click.js -------------------------------------------------------------------------------- /demos/playground/demos/mouse-x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/demos/playground/demos/mouse-x.js -------------------------------------------------------------------------------- /demos/playground/demos/mouse-xy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/demos/playground/demos/mouse-xy.js -------------------------------------------------------------------------------- /demos/playground/demos/mouse-y.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/demos/playground/demos/mouse-y.js -------------------------------------------------------------------------------- /demos/playground/demos/multiple-synths.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/demos/playground/demos/multiple-synths.js -------------------------------------------------------------------------------- /demos/playground/demos/noise-fm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/demos/playground/demos/noise-fm.js -------------------------------------------------------------------------------- /demos/playground/demos/pinknoise.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/demos/playground/demos/pinknoise.js -------------------------------------------------------------------------------- /demos/playground/demos/play-buffer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/demos/playground/demos/play-buffer.js -------------------------------------------------------------------------------- /demos/playground/demos/playBuffer-trigger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/demos/playground/demos/playBuffer-trigger.js -------------------------------------------------------------------------------- /demos/playground/demos/pm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/demos/playground/demos/pm.js -------------------------------------------------------------------------------- /demos/playground/demos/polyphonicSynth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/demos/playground/demos/polyphonicSynth.js -------------------------------------------------------------------------------- /demos/playground/demos/quadraphonic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/demos/playground/demos/quadraphonic.js -------------------------------------------------------------------------------- /demos/playground/demos/readBuffer-phasor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/demos/playground/demos/readBuffer-phasor.js -------------------------------------------------------------------------------- /demos/playground/demos/readBuffer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/demos/playground/demos/readBuffer.js -------------------------------------------------------------------------------- /demos/playground/demos/sample-accurate-scheduling.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/demos/playground/demos/sample-accurate-scheduling.js -------------------------------------------------------------------------------- /demos/playground/demos/saw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/demos/playground/demos/saw.js -------------------------------------------------------------------------------- /demos/playground/demos/scope.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/demos/playground/demos/scope.js -------------------------------------------------------------------------------- /demos/playground/demos/sequencer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/demos/playground/demos/sequencer.js -------------------------------------------------------------------------------- /demos/playground/demos/sine.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/demos/playground/demos/sine.js -------------------------------------------------------------------------------- /demos/playground/demos/square.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/demos/playground/demos/square.js -------------------------------------------------------------------------------- /demos/playground/demos/stereo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/demos/playground/demos/stereo.js -------------------------------------------------------------------------------- /demos/playground/demos/sum.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/demos/playground/demos/sum.js -------------------------------------------------------------------------------- /demos/playground/demos/tanh-distortion.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/demos/playground/demos/tanh-distortion.js -------------------------------------------------------------------------------- /demos/playground/demos/tarrabia-dejong-distortion.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/demos/playground/demos/tarrabia-dejong-distortion.js -------------------------------------------------------------------------------- /demos/playground/demos/tri.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/demos/playground/demos/tri.js -------------------------------------------------------------------------------- /demos/playground/demos/trigger-callback.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/demos/playground/demos/trigger-callback.js -------------------------------------------------------------------------------- /demos/playground/demos/whitenoise.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/demos/playground/demos/whitenoise.js -------------------------------------------------------------------------------- /demos/playground/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/demos/playground/index.html -------------------------------------------------------------------------------- /demos/playground/js/demo-list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/demos/playground/js/demo-list.js -------------------------------------------------------------------------------- /demos/playground/js/demo-selector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/demos/playground/js/demo-selector.js -------------------------------------------------------------------------------- /demos/playground/js/error-console.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/demos/playground/js/error-console.js -------------------------------------------------------------------------------- /demos/playground/js/playground.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/demos/playground/js/playground.js -------------------------------------------------------------------------------- /demos/playground/js/source-evaluators.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/demos/playground/js/source-evaluators.js -------------------------------------------------------------------------------- /demos/playground/live/css/live-playground.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/demos/playground/live/css/live-playground.css -------------------------------------------------------------------------------- /demos/playground/live/demos/adsr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/demos/playground/live/demos/adsr.json -------------------------------------------------------------------------------- /demos/playground/live/demos/am.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/demos/playground/live/demos/am.json -------------------------------------------------------------------------------- /demos/playground/live/demos/asr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/demos/playground/live/demos/asr.json -------------------------------------------------------------------------------- /demos/playground/live/demos/audio-in-granulated.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/demos/playground/live/demos/audio-in-granulated.json -------------------------------------------------------------------------------- /demos/playground/live/demos/audio-in.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/demos/playground/live/demos/audio-in.json -------------------------------------------------------------------------------- /demos/playground/live/demos/band.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/demos/playground/live/demos/band.json -------------------------------------------------------------------------------- /demos/playground/live/demos/bandlimited-impulse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/demos/playground/live/demos/bandlimited-impulse.json -------------------------------------------------------------------------------- /demos/playground/live/demos/bandpass-filter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/demos/playground/live/demos/bandpass-filter.json -------------------------------------------------------------------------------- /demos/playground/live/demos/bandreject-filter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/demos/playground/live/demos/bandreject-filter.json -------------------------------------------------------------------------------- /demos/playground/live/demos/chop-buffer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/demos/playground/live/demos/chop-buffer.json -------------------------------------------------------------------------------- /demos/playground/live/demos/custom-envelope.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/demos/playground/live/demos/custom-envelope.json -------------------------------------------------------------------------------- /demos/playground/live/demos/decay.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/demos/playground/live/demos/decay.json -------------------------------------------------------------------------------- /demos/playground/live/demos/declarative-scheduling.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/demos/playground/live/demos/declarative-scheduling.json -------------------------------------------------------------------------------- /demos/playground/live/demos/dejong-distortion.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/demos/playground/live/demos/dejong-distortion.json -------------------------------------------------------------------------------- /demos/playground/live/demos/delay.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/demos/playground/live/demos/delay.json -------------------------------------------------------------------------------- /demos/playground/live/demos/dust.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/demos/playground/live/demos/dust.json -------------------------------------------------------------------------------- /demos/playground/live/demos/fm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/demos/playground/live/demos/fm.json -------------------------------------------------------------------------------- /demos/playground/live/demos/glissando.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/demos/playground/live/demos/glissando.json -------------------------------------------------------------------------------- /demos/playground/live/demos/granulator.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/demos/playground/live/demos/granulator.json -------------------------------------------------------------------------------- /demos/playground/live/demos/highpass-filter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/demos/playground/live/demos/highpass-filter.json -------------------------------------------------------------------------------- /demos/playground/live/demos/impulse-pm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/demos/playground/live/demos/impulse-pm.json -------------------------------------------------------------------------------- /demos/playground/live/demos/impulse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/demos/playground/live/demos/impulse.json -------------------------------------------------------------------------------- /demos/playground/live/demos/latch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/demos/playground/live/demos/latch.json -------------------------------------------------------------------------------- /demos/playground/live/demos/lfNoise.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/demos/playground/live/demos/lfNoise.json -------------------------------------------------------------------------------- /demos/playground/live/demos/line-fm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/demos/playground/live/demos/line-fm.json -------------------------------------------------------------------------------- /demos/playground/live/demos/line-pm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/demos/playground/live/demos/line-pm.json -------------------------------------------------------------------------------- /demos/playground/live/demos/lowpass-filter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/demos/playground/live/demos/lowpass-filter.json -------------------------------------------------------------------------------- /demos/playground/live/demos/moog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/demos/playground/live/demos/moog.json -------------------------------------------------------------------------------- /demos/playground/live/demos/mouse-click.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/demos/playground/live/demos/mouse-click.json -------------------------------------------------------------------------------- /demos/playground/live/demos/mouse-x.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/demos/playground/live/demos/mouse-x.json -------------------------------------------------------------------------------- /demos/playground/live/demos/mouse-xy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/demos/playground/live/demos/mouse-xy.json -------------------------------------------------------------------------------- /demos/playground/live/demos/mouse-y.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/demos/playground/live/demos/mouse-y.json -------------------------------------------------------------------------------- /demos/playground/live/demos/noise-fm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/demos/playground/live/demos/noise-fm.json -------------------------------------------------------------------------------- /demos/playground/live/demos/pinknoise.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/demos/playground/live/demos/pinknoise.json -------------------------------------------------------------------------------- /demos/playground/live/demos/play-buffer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/demos/playground/live/demos/play-buffer.json -------------------------------------------------------------------------------- /demos/playground/live/demos/playBuffer-trigger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/demos/playground/live/demos/playBuffer-trigger.json -------------------------------------------------------------------------------- /demos/playground/live/demos/pm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/demos/playground/live/demos/pm.json -------------------------------------------------------------------------------- /demos/playground/live/demos/quadraphonic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/demos/playground/live/demos/quadraphonic.json -------------------------------------------------------------------------------- /demos/playground/live/demos/readBuffer-phasor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/demos/playground/live/demos/readBuffer-phasor.json -------------------------------------------------------------------------------- /demos/playground/live/demos/readBuffer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/demos/playground/live/demos/readBuffer.json -------------------------------------------------------------------------------- /demos/playground/live/demos/sample-accurate-scheduling.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/demos/playground/live/demos/sample-accurate-scheduling.json -------------------------------------------------------------------------------- /demos/playground/live/demos/saw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/demos/playground/live/demos/saw.json -------------------------------------------------------------------------------- /demos/playground/live/demos/scope.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/demos/playground/live/demos/scope.json -------------------------------------------------------------------------------- /demos/playground/live/demos/sequencer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/demos/playground/live/demos/sequencer.json -------------------------------------------------------------------------------- /demos/playground/live/demos/sine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/demos/playground/live/demos/sine.json -------------------------------------------------------------------------------- /demos/playground/live/demos/square.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/demos/playground/live/demos/square.json -------------------------------------------------------------------------------- /demos/playground/live/demos/stereo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/demos/playground/live/demos/stereo.json -------------------------------------------------------------------------------- /demos/playground/live/demos/tanh-distortion.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/demos/playground/live/demos/tanh-distortion.json -------------------------------------------------------------------------------- /demos/playground/live/demos/tarrabia-dejong-distortion.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/demos/playground/live/demos/tarrabia-dejong-distortion.json -------------------------------------------------------------------------------- /demos/playground/live/demos/tri.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/demos/playground/live/demos/tri.json -------------------------------------------------------------------------------- /demos/playground/live/demos/whitenoise.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/demos/playground/live/demos/whitenoise.json -------------------------------------------------------------------------------- /demos/playground/live/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/demos/playground/live/index.html -------------------------------------------------------------------------------- /demos/playground/live/js/live-demo-list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/demos/playground/live/js/live-demo-list.js -------------------------------------------------------------------------------- /demos/playground/live/js/visual-editor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/demos/playground/live/js/visual-editor.js -------------------------------------------------------------------------------- /demos/shared/audio/hillier-first-chord.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/demos/shared/audio/hillier-first-chord.wav -------------------------------------------------------------------------------- /demos/shared/audio/where-the-honey-is.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/demos/shared/audio/where-the-honey-is.mp3 -------------------------------------------------------------------------------- /demos/shared/css/demos.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/demos/shared/css/demos.css -------------------------------------------------------------------------------- /demos/shared/js/demo-utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/demos/shared/js/demo-utils.js -------------------------------------------------------------------------------- /docs/buffers/about-buffers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/docs/buffers/about-buffers.md -------------------------------------------------------------------------------- /docs/building-flocking.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/docs/building-flocking.md -------------------------------------------------------------------------------- /docs/getting-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/docs/getting-started.md -------------------------------------------------------------------------------- /docs/responding-to-user-input.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/docs/responding-to-user-input.md -------------------------------------------------------------------------------- /docs/scheduling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/docs/scheduling.md -------------------------------------------------------------------------------- /docs/synths/creating-synths.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/docs/synths/creating-synths.md -------------------------------------------------------------------------------- /docs/ugens/buffers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/docs/ugens/buffers.md -------------------------------------------------------------------------------- /docs/ugens/distortions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/docs/ugens/distortions.md -------------------------------------------------------------------------------- /docs/ugens/mouse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/docs/ugens/mouse.md -------------------------------------------------------------------------------- /docs/ugens/oscillators.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/docs/ugens/oscillators.md -------------------------------------------------------------------------------- /docs/ugens/triggers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/docs/ugens/triggers.md -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/favicon.ico -------------------------------------------------------------------------------- /flocking-website.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/flocking-website.css -------------------------------------------------------------------------------- /images/flocking-tentative-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/images/flocking-tentative-logo.png -------------------------------------------------------------------------------- /images/pause.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/images/pause.ai -------------------------------------------------------------------------------- /images/pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/images/pause.png -------------------------------------------------------------------------------- /images/play.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/images/play.ai -------------------------------------------------------------------------------- /images/play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/images/play.png -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/package.json -------------------------------------------------------------------------------- /src/audiofile-encoder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/src/audiofile-encoder.js -------------------------------------------------------------------------------- /src/audiofile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/src/audiofile.js -------------------------------------------------------------------------------- /src/buffers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/src/buffers.js -------------------------------------------------------------------------------- /src/core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/src/core.js -------------------------------------------------------------------------------- /src/evaluators.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/src/evaluators.js -------------------------------------------------------------------------------- /src/flocking-audiofile-compatibility.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/src/flocking-audiofile-compatibility.js -------------------------------------------------------------------------------- /src/flocking-audiofile-converters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/src/flocking-audiofile-converters.js -------------------------------------------------------------------------------- /src/flocking-audiofile-worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/src/flocking-audiofile-worker.js -------------------------------------------------------------------------------- /src/gfx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/src/gfx.js -------------------------------------------------------------------------------- /src/node-list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/src/node-list.js -------------------------------------------------------------------------------- /src/parser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/src/parser.js -------------------------------------------------------------------------------- /src/scheduler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/src/scheduler.js -------------------------------------------------------------------------------- /src/synths/band.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/src/synths/band.js -------------------------------------------------------------------------------- /src/synths/frame-rate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/src/synths/frame-rate.js -------------------------------------------------------------------------------- /src/synths/group.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/src/synths/group.js -------------------------------------------------------------------------------- /src/synths/model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/src/synths/model.js -------------------------------------------------------------------------------- /src/synths/polyphonic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/src/synths/polyphonic.js -------------------------------------------------------------------------------- /src/synths/synth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/src/synths/synth.js -------------------------------------------------------------------------------- /src/synths/value.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/src/synths/value.js -------------------------------------------------------------------------------- /src/testing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/src/testing.js -------------------------------------------------------------------------------- /src/ugens/bandlimited.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/src/ugens/bandlimited.js -------------------------------------------------------------------------------- /src/ugens/browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/src/ugens/browser.js -------------------------------------------------------------------------------- /src/ugens/buffer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/src/ugens/buffer.js -------------------------------------------------------------------------------- /src/ugens/core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/src/ugens/core.js -------------------------------------------------------------------------------- /src/ugens/debugging.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/src/ugens/debugging.js -------------------------------------------------------------------------------- /src/ugens/distortion.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/src/ugens/distortion.js -------------------------------------------------------------------------------- /src/ugens/dynamics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/src/ugens/dynamics.js -------------------------------------------------------------------------------- /src/ugens/envelopes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/src/ugens/envelopes.js -------------------------------------------------------------------------------- /src/ugens/filters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/src/ugens/filters.js -------------------------------------------------------------------------------- /src/ugens/gates.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/src/ugens/gates.js -------------------------------------------------------------------------------- /src/ugens/granular.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/src/ugens/granular.js -------------------------------------------------------------------------------- /src/ugens/listening.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/src/ugens/listening.js -------------------------------------------------------------------------------- /src/ugens/math.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/src/ugens/math.js -------------------------------------------------------------------------------- /src/ugens/midi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/src/ugens/midi.js -------------------------------------------------------------------------------- /src/ugens/multichannel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/src/ugens/multichannel.js -------------------------------------------------------------------------------- /src/ugens/oscillators.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/src/ugens/oscillators.js -------------------------------------------------------------------------------- /src/ugens/random.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/src/ugens/random.js -------------------------------------------------------------------------------- /src/ugens/scheduling.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/src/ugens/scheduling.js -------------------------------------------------------------------------------- /src/ugens/triggers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/src/ugens/triggers.js -------------------------------------------------------------------------------- /src/ui/editor/css/editor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/src/ui/editor/css/editor.css -------------------------------------------------------------------------------- /src/ui/editor/js/editor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/src/ui/editor/js/editor.js -------------------------------------------------------------------------------- /src/ui/play-button/css/play-button.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/src/ui/play-button/css/play-button.css -------------------------------------------------------------------------------- /src/ui/play-button/js/play-button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/src/ui/play-button/js/play-button.js -------------------------------------------------------------------------------- /src/ui/selectbox/js/selectbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/src/ui/selectbox/js/selectbox.js -------------------------------------------------------------------------------- /src/ui/shared/css/flocking-icon-font.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/src/ui/shared/css/flocking-icon-font.css -------------------------------------------------------------------------------- /src/ui/shared/fonts/flocking-icon-font.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/src/ui/shared/fonts/flocking-icon-font.eot -------------------------------------------------------------------------------- /src/ui/shared/fonts/flocking-icon-font.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/src/ui/shared/fonts/flocking-icon-font.svg -------------------------------------------------------------------------------- /src/ui/shared/fonts/flocking-icon-font.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/src/ui/shared/fonts/flocking-icon-font.ttf -------------------------------------------------------------------------------- /src/ui/shared/fonts/flocking-icon-font.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/src/ui/shared/fonts/flocking-icon-font.woff -------------------------------------------------------------------------------- /src/ui/third-party/normalize/css/normalize.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/src/ui/third-party/normalize/css/normalize.css -------------------------------------------------------------------------------- /src/web/audio-system.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/src/web/audio-system.js -------------------------------------------------------------------------------- /src/web/buffer-writer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/src/web/buffer-writer.js -------------------------------------------------------------------------------- /src/web/input-device-manager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/src/web/input-device-manager.js -------------------------------------------------------------------------------- /src/web/native-node-manager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/src/web/native-node-manager.js -------------------------------------------------------------------------------- /src/web/output-manager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/src/web/output-manager.js -------------------------------------------------------------------------------- /src/web/webaudio-core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/src/web/webaudio-core.js -------------------------------------------------------------------------------- /tests/manual/aiff-playback-11Khz/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/tests/manual/aiff-playback-11Khz/README.md -------------------------------------------------------------------------------- /tests/manual/aiff-playback-11Khz/hockey.aiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/tests/manual/aiff-playback-11Khz/hockey.aiff -------------------------------------------------------------------------------- /tests/manual/aiff-playback-11Khz/hockey.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/tests/manual/aiff-playback-11Khz/hockey.wav -------------------------------------------------------------------------------- /tests/manual/aiff-playback-11Khz/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/tests/manual/aiff-playback-11Khz/index.html -------------------------------------------------------------------------------- /tests/performance/css/benchmarks.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/tests/performance/css/benchmarks.css -------------------------------------------------------------------------------- /tests/performance/html/audiofile-benchmarks.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/tests/performance/html/audiofile-benchmarks.html -------------------------------------------------------------------------------- /tests/performance/html/standalone-ugen-benchmarks.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/tests/performance/html/standalone-ugen-benchmarks.html -------------------------------------------------------------------------------- /tests/performance/html/synth-benchmarks.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/tests/performance/html/synth-benchmarks.html -------------------------------------------------------------------------------- /tests/performance/js/audiofile-benchmarks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/tests/performance/js/audiofile-benchmarks.js -------------------------------------------------------------------------------- /tests/performance/js/standalone-ugen-benchmarks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/tests/performance/js/standalone-ugen-benchmarks.js -------------------------------------------------------------------------------- /tests/performance/js/synth-benchmarks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/tests/performance/js/synth-benchmarks.js -------------------------------------------------------------------------------- /tests/shared/audio/long-triangle-int16-44100.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/tests/shared/audio/long-triangle-int16-44100.wav -------------------------------------------------------------------------------- /tests/shared/audio/long-triangle-int16-48000.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/tests/shared/audio/long-triangle-int16-48000.wav -------------------------------------------------------------------------------- /tests/shared/audio/long-triangle-int16-88200.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/tests/shared/audio/long-triangle-int16-88200.wav -------------------------------------------------------------------------------- /tests/shared/audio/long-triangle-int16-96000.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/tests/shared/audio/long-triangle-int16-96000.wav -------------------------------------------------------------------------------- /tests/shared/js/audiofile-dataurls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/tests/shared/js/audiofile-dataurls.js -------------------------------------------------------------------------------- /tests/unit/all-tests.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/tests/unit/all-tests.html -------------------------------------------------------------------------------- /tests/unit/html/audiofile-decoder-tests.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/tests/unit/html/audiofile-decoder-tests.html -------------------------------------------------------------------------------- /tests/unit/html/audiofile-tests.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/tests/unit/html/audiofile-tests.html -------------------------------------------------------------------------------- /tests/unit/html/band-tests.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/tests/unit/html/band-tests.html -------------------------------------------------------------------------------- /tests/unit/html/bandlimited-ugen-tests.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/tests/unit/html/bandlimited-ugen-tests.html -------------------------------------------------------------------------------- /tests/unit/html/buffer-tests.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/tests/unit/html/buffer-tests.html -------------------------------------------------------------------------------- /tests/unit/html/buffer-ugen-tests.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/tests/unit/html/buffer-ugen-tests.html -------------------------------------------------------------------------------- /tests/unit/html/bus-tests.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/tests/unit/html/bus-tests.html -------------------------------------------------------------------------------- /tests/unit/html/core-tests.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/tests/unit/html/core-tests.html -------------------------------------------------------------------------------- /tests/unit/html/core-utilities-tests.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/tests/unit/html/core-utilities-tests.html -------------------------------------------------------------------------------- /tests/unit/html/dynamics-ugen-tests.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/tests/unit/html/dynamics-ugen-tests.html -------------------------------------------------------------------------------- /tests/unit/html/envelope-ugen-tests.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/tests/unit/html/envelope-ugen-tests.html -------------------------------------------------------------------------------- /tests/unit/html/envgen-ugen-tests.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/tests/unit/html/envgen-ugen-tests.html -------------------------------------------------------------------------------- /tests/unit/html/filter-ugen-tests.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/tests/unit/html/filter-ugen-tests.html -------------------------------------------------------------------------------- /tests/unit/html/gate-ugen-tests.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/tests/unit/html/gate-ugen-tests.html -------------------------------------------------------------------------------- /tests/unit/html/ioc-integration-tests.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/tests/unit/html/ioc-integration-tests.html -------------------------------------------------------------------------------- /tests/unit/html/listening-ugen-tests.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/tests/unit/html/listening-ugen-tests.html -------------------------------------------------------------------------------- /tests/unit/html/math-ugen-tests.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/tests/unit/html/math-ugen-tests.html -------------------------------------------------------------------------------- /tests/unit/html/midi-ugen-tests.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/tests/unit/html/midi-ugen-tests.html -------------------------------------------------------------------------------- /tests/unit/html/model-synth-tests.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/tests/unit/html/model-synth-tests.html -------------------------------------------------------------------------------- /tests/unit/html/multichannel-ugen-tests.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/tests/unit/html/multichannel-ugen-tests.html -------------------------------------------------------------------------------- /tests/unit/html/nodelist-tests.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/tests/unit/html/nodelist-tests.html -------------------------------------------------------------------------------- /tests/unit/html/osc-ugen-tests.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/tests/unit/html/osc-ugen-tests.html -------------------------------------------------------------------------------- /tests/unit/html/parser-tests.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/tests/unit/html/parser-tests.html -------------------------------------------------------------------------------- /tests/unit/html/perf-tests.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/tests/unit/html/perf-tests.html -------------------------------------------------------------------------------- /tests/unit/html/phasor-ugen-tests.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/tests/unit/html/phasor-ugen-tests.html -------------------------------------------------------------------------------- /tests/unit/html/playbuffer-ugen-tests.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/tests/unit/html/playbuffer-ugen-tests.html -------------------------------------------------------------------------------- /tests/unit/html/random-ugen-tests.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/tests/unit/html/random-ugen-tests.html -------------------------------------------------------------------------------- /tests/unit/html/require-tests.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/tests/unit/html/require-tests.html -------------------------------------------------------------------------------- /tests/unit/html/scheduler-tests.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/tests/unit/html/scheduler-tests.html -------------------------------------------------------------------------------- /tests/unit/html/scheduler-timing-tests.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/tests/unit/html/scheduler-timing-tests.html -------------------------------------------------------------------------------- /tests/unit/html/scheduling-ugen-tests.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/tests/unit/html/scheduling-ugen-tests.html -------------------------------------------------------------------------------- /tests/unit/html/synth-environment-tests.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/tests/unit/html/synth-environment-tests.html -------------------------------------------------------------------------------- /tests/unit/html/synth-evaluation-tests.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/tests/unit/html/synth-evaluation-tests.html -------------------------------------------------------------------------------- /tests/unit/html/synth-group-tests.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/tests/unit/html/synth-group-tests.html -------------------------------------------------------------------------------- /tests/unit/html/synth-instantiation-tests.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/tests/unit/html/synth-instantiation-tests.html -------------------------------------------------------------------------------- /tests/unit/html/synth-note-target-tests.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/tests/unit/html/synth-note-target-tests.html -------------------------------------------------------------------------------- /tests/unit/html/synth-removal-tests.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/tests/unit/html/synth-removal-tests.html -------------------------------------------------------------------------------- /tests/unit/html/synth-scheduled-tests.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/tests/unit/html/synth-scheduled-tests.html -------------------------------------------------------------------------------- /tests/unit/html/synth-tests.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/tests/unit/html/synth-tests.html -------------------------------------------------------------------------------- /tests/unit/html/test-utils-tests.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/tests/unit/html/test-utils-tests.html -------------------------------------------------------------------------------- /tests/unit/html/trigger-ugen-tests.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/tests/unit/html/trigger-ugen-tests.html -------------------------------------------------------------------------------- /tests/unit/html/ugen-tests.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/tests/unit/html/ugen-tests.html -------------------------------------------------------------------------------- /tests/unit/html/webaudio-tests.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/tests/unit/html/webaudio-tests.html -------------------------------------------------------------------------------- /tests/unit/html/writebuffer-ugen-tests.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/tests/unit/html/writebuffer-ugen-tests.html -------------------------------------------------------------------------------- /tests/unit/js/audiofile-decoder-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/tests/unit/js/audiofile-decoder-tests.js -------------------------------------------------------------------------------- /tests/unit/js/audiofile-test-utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/tests/unit/js/audiofile-test-utils.js -------------------------------------------------------------------------------- /tests/unit/js/audiofile-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/tests/unit/js/audiofile-tests.js -------------------------------------------------------------------------------- /tests/unit/js/band-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/tests/unit/js/band-tests.js -------------------------------------------------------------------------------- /tests/unit/js/bandlimited-ugen-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/tests/unit/js/bandlimited-ugen-tests.js -------------------------------------------------------------------------------- /tests/unit/js/buffer-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/tests/unit/js/buffer-tests.js -------------------------------------------------------------------------------- /tests/unit/js/buffer-ugen-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/tests/unit/js/buffer-ugen-tests.js -------------------------------------------------------------------------------- /tests/unit/js/bus-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/tests/unit/js/bus-tests.js -------------------------------------------------------------------------------- /tests/unit/js/core-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/tests/unit/js/core-tests.js -------------------------------------------------------------------------------- /tests/unit/js/core-utilities-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/tests/unit/js/core-utilities-tests.js -------------------------------------------------------------------------------- /tests/unit/js/dynamics-ugen-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/tests/unit/js/dynamics-ugen-tests.js -------------------------------------------------------------------------------- /tests/unit/js/envelope-ugen-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/tests/unit/js/envelope-ugen-tests.js -------------------------------------------------------------------------------- /tests/unit/js/envgen-ugen-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/tests/unit/js/envgen-ugen-tests.js -------------------------------------------------------------------------------- /tests/unit/js/filter-ugen-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/tests/unit/js/filter-ugen-tests.js -------------------------------------------------------------------------------- /tests/unit/js/flocking-test-utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/tests/unit/js/flocking-test-utils.js -------------------------------------------------------------------------------- /tests/unit/js/gate-ugen-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/tests/unit/js/gate-ugen-tests.js -------------------------------------------------------------------------------- /tests/unit/js/ioc-integration-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/tests/unit/js/ioc-integration-tests.js -------------------------------------------------------------------------------- /tests/unit/js/listening-ugen-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/tests/unit/js/listening-ugen-tests.js -------------------------------------------------------------------------------- /tests/unit/js/math-ugen-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/tests/unit/js/math-ugen-tests.js -------------------------------------------------------------------------------- /tests/unit/js/midi-ugen-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/tests/unit/js/midi-ugen-tests.js -------------------------------------------------------------------------------- /tests/unit/js/model-synth-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/tests/unit/js/model-synth-tests.js -------------------------------------------------------------------------------- /tests/unit/js/multichannel-ugen-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/tests/unit/js/multichannel-ugen-tests.js -------------------------------------------------------------------------------- /tests/unit/js/nodelist-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/tests/unit/js/nodelist-tests.js -------------------------------------------------------------------------------- /tests/unit/js/osc-ugen-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/tests/unit/js/osc-ugen-tests.js -------------------------------------------------------------------------------- /tests/unit/js/parser-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/tests/unit/js/parser-tests.js -------------------------------------------------------------------------------- /tests/unit/js/perf-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/tests/unit/js/perf-tests.js -------------------------------------------------------------------------------- /tests/unit/js/phasor-ugen-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/tests/unit/js/phasor-ugen-tests.js -------------------------------------------------------------------------------- /tests/unit/js/playbuffer-ugen-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/tests/unit/js/playbuffer-ugen-tests.js -------------------------------------------------------------------------------- /tests/unit/js/random-ugen-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/tests/unit/js/random-ugen-tests.js -------------------------------------------------------------------------------- /tests/unit/js/require-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/tests/unit/js/require-tests.js -------------------------------------------------------------------------------- /tests/unit/js/scheduler-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/tests/unit/js/scheduler-tests.js -------------------------------------------------------------------------------- /tests/unit/js/scheduler-timing-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/tests/unit/js/scheduler-timing-tests.js -------------------------------------------------------------------------------- /tests/unit/js/scheduling-ugen-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/tests/unit/js/scheduling-ugen-tests.js -------------------------------------------------------------------------------- /tests/unit/js/synth-environment-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/tests/unit/js/synth-environment-tests.js -------------------------------------------------------------------------------- /tests/unit/js/synth-evaluation-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/tests/unit/js/synth-evaluation-tests.js -------------------------------------------------------------------------------- /tests/unit/js/synth-group-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/tests/unit/js/synth-group-tests.js -------------------------------------------------------------------------------- /tests/unit/js/synth-instantiation-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/tests/unit/js/synth-instantiation-tests.js -------------------------------------------------------------------------------- /tests/unit/js/synth-note-target-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/tests/unit/js/synth-note-target-tests.js -------------------------------------------------------------------------------- /tests/unit/js/synth-removal-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/tests/unit/js/synth-removal-tests.js -------------------------------------------------------------------------------- /tests/unit/js/synth-scheduled-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/tests/unit/js/synth-scheduled-tests.js -------------------------------------------------------------------------------- /tests/unit/js/synth-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/tests/unit/js/synth-tests.js -------------------------------------------------------------------------------- /tests/unit/js/test-utils-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/tests/unit/js/test-utils-tests.js -------------------------------------------------------------------------------- /tests/unit/js/trigger-ugen-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/tests/unit/js/trigger-ugen-tests.js -------------------------------------------------------------------------------- /tests/unit/js/ugen-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/tests/unit/js/ugen-tests.js -------------------------------------------------------------------------------- /tests/unit/js/webaudio-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/tests/unit/js/webaudio-tests.js -------------------------------------------------------------------------------- /tests/unit/js/writebuffer-ugen-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/tests/unit/js/writebuffer-ugen-tests.js -------------------------------------------------------------------------------- /tests/unit/testem.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/tests/unit/testem.json -------------------------------------------------------------------------------- /third-party/simjs/js/random-0.26.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/third-party/simjs/js/random-0.26.js -------------------------------------------------------------------------------- /third-party/webarraymath/js/webarraymath.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lichen-community-systems/Flocking/HEAD/third-party/webarraymath/js/webarraymath.js --------------------------------------------------------------------------------