A style agnostic framework for creative coding using the SuperCollider audio programming language. At its most basic level it will:
Create a new instance of Cactus
projectPath |
A string denoting the path of the project. If the path exists Cactus will load it. If it does not exist it will create the initial structure. NOTE: You can use CactusGUI for ease of access to creating and managing Cactus projects. Start there if you are new to the framework. |
A Cactus instance
A convenience global Dictionary. It can be used to store any value but it also stores the instance for every running project under the project name (the project name is the name of its main folder).
The contents at 'key'
This will re-initialise the project after running 'cleanup.scd'. It will not rerun 'config.scd'.
Free all buffers.
A convenience local Dictionary. It can be used to store any value.
Get the projectName.
Get a buffer from the automatically loaded buffers (from the 'buffers' folder of the project).
name |
The name of the buffer as a symbol. Providing the name of the file returns the buffer. Providing the name of a folder returns a List of the buffers in the folder. |
Like 'buf' but returns bufnums instead of buffers.
Returns the project path.
Open the project directory using the OS file browser.
Return the Dictionary that contains all the buffers.
Apply a template to the project. A template provides an easy way to recall common Cactus configurations.
templateName |
A symbol with the template name. |
options |
An Event of options to be used by the template. |