Giter Site home page Giter Site logo

cybin's People

Contributors

efairbanks avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar

cybin's Issues

Add support for parsing command line flags

Add in support for parsing command line flags and loading configuration details via those flags.

Command line flags will be used for things such as:

  • online vs. offline rendering
  • time offsets
  • loading additional Lua files & libraries
  • setting configuration elements such as sample rate or resolution

Build musical patterning library

Build a musical patterning library that fuses techniques drawn from:

  • TidalCycles
  • My Lua Seq custom table implementation from my Renoise scripts
  • My C# BlackBox code
  • My Overtone/SuperCollider compositions

Should patterns/sequences be aware of time? I want time to be in cycles, but what does that mean for patterns/sequences? Should they be query-able? Should they be transformed into queryable event streams? What is the difference between what the event scheduler receives and operates on vs these?

OpenGL/GLSL/GLOO -> LuaJIT

Create LuaJIT bindings for (re)loading OpenGL vertex and fragment shaders and for supplying those shaders with uniforms.

It would also be a good idea to perhaps think about Lua code that can intelligently generate and organize GLSL code. This would allow for features like:

  • a Lua DSL for procedural graphics
  • a tiled windowing system within an OpenGL context
  • sound shaders?????

REPL for Cybin

Cybin should have some kind of REPL with integration into a popular text editor (or two) like Atom/vim.

Update Emacs keybindings

The way cybin-mode defines keybindings makes it kind of difficult to customise since it uses this prefix thing:

(defvar cybin-mode-map

But anyways, it would be good to have:

(define-key result-map (kbd "<C-return>") 'cybin-send-paragraph)
(define-key result-map (kdb "C-c C-q") . cybin-kill-process)

BootCybin file

E.g.

os.execute('jack_connect cybin:audio-out_1 system:playback_1')
os.execute('jack_connect cybin:audio-out_2 system:playback_2')
dofile('/home/cybin/examples/cylibs/clodule.cybin')
dofile('/home/cybin/examples/cylibs/ugen.cybin')

Example `euclidbreak.cybin` is broken?

Can't get dofile('euclidbreak.cybin') to work...

Seems that the imports are different to the other files?

dofile('utils.cybin').load()
dofile('pattern.cybin').load()
dofile('melody.cybin')
dofile('ugen.cybin')
C=dofile('clodule.cybin')
mod=math.fmod

The others use require. But even when I try to change above to require I get a stack overflow

Implement all BlackBox lib in Lua

This includes oscillators, filters, envelopes, granular synths, polyphony, etc...

This should be implemented with a sensible inheritance model and with factories where appropriate. For instance, you should be able to create a new subclass of type Voice by supplying it with a custom oscillator and envelope, and then create a custom subclass of Synth by supplying it with your custom Voice class.

Multiple options for handing off audio data to C++ audio system

Right now Cybin calls a Lua function called __process(sr) that accepts the current sample rate and returns a float representing a single audio sample. Not only should this be modified to support multichannel audio, there should be a way to configure how audio is passed from Lua to the underlying audio system and what that system's responsibilities are.

For instance, perhaps we would rather work with an audio buffer of size N that provides frequency domain and time domain representations instead of a stream of samples.

LibSoundIO sometimes fails to start in MacOS

It seems that sometimes MacOS will complain about invalid memory usage when soundio_default_output_device_index() is called during initialization. It's unclear what causes this, but it is not an issue in Linux.

Design and implement an event scheduling system

This scheduling system should be loosely based on Tidal's because Tidal's scheduling system rules. It will also probably take some design cues from my earlier work with Overtone. This system needs to be simple enough that people want to use it but flexible enough to not be prescriptive. (manual temporal recursion is not intuitive)

Build in some transparent-but-optional bootstrapping

Working with Cybin for the first time should be as simple as running a one-liner that defines a musical pattern, but users should also be empowered to design their own music system entirely from scratch. How do we achieve this without obfuscating the inner-workings of Cybin? Perhaps a super-powerful, modular, customizable synth like SuperDirt built into Cybin/Lua with its own scheduler that can receive musical data structures and automatically play them?

Yeah, that sounds about right.

Performance profiling and optimization

Right now LuaJIT is getting excellent performance, but this can be further optimized. Profiling should be done to determine what kind of savings could be gained by modifying buffers in-place, handing off synthesis/DSP work to C++ when fine control from Lua is not required, etc...

Comparable implementations of BlackBox classes should be created in Lua and C++ and their performance should be compared.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.