Created
September 30, 2021 15:55
-
-
Save julianrubisch/3ff82eec0f015de104426f569e621f7d to your computer and use it in GitHub Desktop.
Supercollider Object Oriented Patterns - Part 3 : Subclassing Buffer
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
VBufferCollection { | |
var <buffers, views; | |
*new { |server, numBuffersOrPaths, numFrames=0, numChannels=1| | |
^super.new.init(server, numBuffersOrPaths, numFrames, numChannels); | |
} | |
init { |server, numBuffersOrPaths, numFrames=0, numChannels=1| | |
buffers = case | |
{numBuffersOrPaths.class == PathName && {numBuffersOrPaths.isFolder}} { | |
// is a directory | |
numBuffersOrPaths.entries.select({ |fileOrDir| fileOrDir.isFile }).collect({ | |
|path| | |
// Buffer.read(server, path.fullPath); | |
// TODO try to monofy in place | |
RecEnhancedBuffer.readChannel(server, path.fullPath, channels: [0]) | |
}); | |
} | |
{numBuffersOrPaths.isArray && {numBuffersOrPaths.every { |path| path.class == PathName && path.isFile }}} { | |
// is an array of file paths | |
numBuffersOrPaths.collect { |path| | |
RecEnhancedBuffer.read(server, path) | |
} | |
} | |
{numBuffersOrPaths.isInteger} { | |
numBuffersOrPaths.collect { | |
RecEnhancedBuffer.alloc(server, numFrames, numChannels); | |
} | |
}; | |
} | |
// we want to lazily initialize those | |
views { |parent| | |
views = this.prMakeViews(parent); | |
^views; | |
} | |
prMakeViews { |parent| | |
^buffers.collect { |buffer| | |
BufferSoundFileView.new(parent, nil, buffer); | |
} | |
} | |
} | |
BufferSoundFileView : SoundFileView { | |
var buffer; | |
*new { |parent, bounds, buffer| | |
^super.new.init(parent, bounds, buffer); | |
} | |
init { |parent, bounds, buffer| | |
buffer = buffer; | |
buffer.getToFloatArray(timeout: 30, action: { |samples| | |
{ | |
this.setData(samples); | |
this.refresh; | |
}.defer; | |
}); | |
} | |
} | |
RecEnhancedBuffer : Buffer { | |
var recSynth, <>recEnd; | |
*registerDefs { |server| | |
SynthDef(\bufferRec, { | |
|in=0, bufnum=0, rec=1| | |
var sig = SoundIn.ar(in), | |
stopTrig = (rec <= 0), | |
phase = Phasor.ar(0, 1, 0, BufFrames.kr(bufnum)); | |
BufWr.ar(sig, bufnum, phase); | |
SendReply.ar(K2A.ar(stopTrig), '/bufferRecEnded', [phase.poll, bufnum]); | |
FreeSelf.kr(stopTrig); | |
}).add; | |
// see https://scsynth.org/t/looper-with-a-variable-length/818/6 | |
OSCdef(\bufferRecEnded, { |msg| | |
var bufnum = msg[4].asInteger; | |
server.cachedBufferAt(bufnum).recEnd = msg[3]; | |
}, '/bufferRecEnded', server.addr); | |
} | |
startRec { | |
recSynth = Synth(\bufferRec, [\bufnum, this.bufnum]); | |
} | |
stopRec { | |
recSynth.set(\rec, 0); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment