ref: d2eefbbd2f102ffbf897afc3f638c02d3fb13e7b
dir: /README.md/
# neindaw Some kind of DAW for 9front? An ongoing effort. The right way to say the name is "NEIN! dough". At this moment the effort is mostly on getting tooling powered by [Faust](https://faust.grame.fr) to beep beep boop. Here, watch this: ![code](kick.jpg) → ![result](cfg.png) Wow. ## Installing ``` cd /tmp && \ hget https://github.com/ftrvxmtrx/neindaw/archive/master.tar.gz | tar xz && \ cd neindaw-master && mk install ls /bin/daw ``` ## Testing So far only one instrument provided, which is a kick drum. ``` daw/kick_drum -m /n/kick cd /n/kick ``` Allocate one instance. ``` cd `{cat clone} cd K* ``` Check the A oscillator frequency, the order is `type value initial min max step`. It's different for different UI elements. ``` cat A/Frequency/ctl vslider 100 100 10 200 5 ``` Raise frequency to 160Hz. ``` echo 160 > A/F*/ctl ``` Pipe sound to /dev/audio in background. ``` audio/pcmconv -i f32c1r44100 < ../data > /dev/audio & ``` Set B oscillator parameters and enable it. ``` echo 400 > B/Frequency/ctl echo 0.001 > B/Attack/ctl echo 1 > B/Enable/ctl ``` Do a kick. ``` echo clear > ../ctl echo 1 > Control/Gate/ctl ``` Run `cfg` to configure the kick drum in a GUI. ``` daw/cfg /n/kick ``` ## TODO and random notes * add input proccessing * buffer computated data if `data` is opened more than once so every reader gets the same data at its own pace? * use llvm-generated object or asm instead of C? that would be having to add Plan 9 target to llc I guess, or some kind of conversion tool for asm * renaming/removal of instance IDs and controls via Twstat and Tremove * GUI needs to support various styles like knobs, drop down menus, radio buttons etc * `<ui>/value` to watch the changes, add frame offset as well to know when it actually changed * optional frame offsets for all commands, running and stopping computations at specific offsets will make it possible to apply changes correctly * `reset` command for groups * add writable `metadata` for each instance * allow adding new key/values to `metadata` * add some way to read and write the whole configuration of an instance in an easy way, so instances can be cloned, or configs saved to disk as presets * make all of that compile and run on Linux as well? * "sampler" that can be used to buffer generated audio in memory/files to be reused without running computations every single time * slicer * some kind of pipefs (that's a bad name) to connect all the objects together, should be controllable through daw/cfg. microui will need a lot of work * polyphonyfs to manage master/voices automatically for any DSP * mixerfs with channels * full MIDI support * OSC support * port Orca to Plan 9 and use it for testing neindaw * changes of controls can be monitored through a 2D plot in GUI * every control can be used as an input of another control