vivid-synth

Results 14 comments of vivid-synth

Interesting! Add a type annotation: ```haskell playSong :: VividAction m => m () ```

@telephon can you point to where ```addSynth``` is defined? I can't find it in the source for ```SuperDirt``` or ```supercollider```. @jarmitage to solve the first half of the problem (making...

@telephon I'm very close to getting this working but still hitting an issue. My ```boot.scd``` file: ```supercollider Server.supernova; s.options.numBuffers = 1024 * 16; s.waitForBoot{ Routine{ include("Vowel"); include("SuperDirt"); 2.wait; ~dirt =...

It at least appears that ```SuperDirt``` depends on some ```sclang```-based registry of ```SynthDefs```. If I add this to the end of the ```boot.scd``` file: ```supercollider SynthDef(\foo4, {|out=0| Out.ar(out, DC.ar(0)) }).add;...

PS: by "at the end of the ```boot.scd``` file" I mean after everything except the final: ``` }.play } ```

@telephon I tried those two code snippets (on the ```1.0-dev``` branch), but neither worked -- in fact, they wouldn't play samples either.

With the new code, I'm able to repro the just clicks/no music behavior (yay!) -- I'll try and identify the difference between it and my working code. The error I...

Ok, new error: ``` exception in /s_new: invalid name for control mapping ``` if I use the synthdef: ```haskell s' :: SynthDef '["out", "freq"] s' = sdNamed "foo4" (0::I "out",...

@telephon this is what I'm seeing: ``` received osc bundle { ( 15980813467621782715 ) [12 int32:1003, int32:1] [12 int32:1002, int32:1] [/g_new int32:1412, int32:1, int32:2] [/s_new OSC-string:`foo4', int32:-1, int32:1, int32:1412, OSC-string:`out',...

@jarmitage does your ```/s_new``` look like mine? (With ```OSC-string:`out', OSC-string:`freq']``` at the end, and seeminly no note/freq values?)