summaryrefslogtreecommitdiff
path: root/lib
AgeCommit message (Collapse)AuthorFilesLines
2012-12-18added "soft" clipper based on arcus tangensHEADmasterRobin Haberkorn1-0/+10
2012-09-11renamed joystick and button controls, named buttons for left and right joysticksRobin Haberkorn1-4/+5
2012-09-11added comments clarifing that scaling target ranges may be inversedRobin Haberkorn2-0/+8
2012-09-11explicitly yield() after broadcast() since it does not automatically yield ↵Robin Haberkorn2-1/+14
(only when the broadcasting shred waits itself but this can be several messages later) fixes message loss for NanoEvents and RumbleEvents
2012-09-11include symbolic control name in GenEvent, so port creation can be defined ↵Robin Haberkorn3-122/+71
in GenEvent (by default) * simplified and cleaned up NanoEvent and RumbleEvent code
2012-09-11added RumbleEvent class for using the "Logitech Rumble Gamepad"Robin Haberkorn1-0/+105
* similar to NanoEvent: symbolic controller names, normalized value and scaling functions, ports
2012-09-11moved value scaling functions from NanoEvent into "GenEvent" base classRobin Haberkorn2-37/+47
so it can be used for other controller events as well
2012-09-10implemented NanoEvent ports: you can request a "port" for a registered ↵Robin Haberkorn1-5/+56
control which will emit the control's data as samples * may be used to simplify situations where a control directly influences a frequency/amplitude/phase * samples are generated uniformly between [-1, 1] and can be scaled using "Scale"
2012-09-09revised lfo patch using new Scale UGenRobin Haberkorn1-0/+1
* new LFO rate knob (currently only sets SampOsc's rate) * cur_lfo/cur_osc are UGen references now, further simplifying code
2012-09-09renamed Chugen and Chubgraph Clipper implementations so they can be used as ↵Robin Haberkorn2-3/+3
dropin replacements for the Clipper Chugin
2012-09-09added Scale UGen allowing to a signal from source (in) to target (out) rangeRobin Haberkorn1-0/+53
patch is very simple but the calculations are not; with scale the target range can be explicit in the code
2012-09-08use IO for giving warnings and errors to stderrRobin Haberkorn1-7/+14
available only recently in ChucK
2012-09-08since SndBuf.valueAt() has been fixed in v1.3.0.0, multichannel sound files ↵Robin Haberkorn1-11/+34
can now be correctly read in by LiSaX: allow mixing of sound file according to gain vector
2012-09-07check to see if scene exists to prevent array access error for unregistered ↵Robin Haberkorn1-1/+4
scenes
2012-09-07removed ChubgraphStd workaroundRobin Haberkorn3-27/+2
fixed in ChucK v1.3.1.0
2012-09-05removed map array access workaroundRobin Haberkorn1-3/+3
fixed ChucK to handle them correctly
2012-09-05add monitor port to Bus (goes to second soundcard for head phones)Robin Haberkorn1-0/+9
2012-09-04simplified scene/CCId-to-name mappingRobin Haberkorn1-15/+6
2 dimensional arrays with maps are actually supported. The ChucK bug is merely generating the wrong VM instruction (Chuck_Instr_Array_Access_Multi) for every multi-dimensional array access. The instruction however cannot cope with keys, so an ArrayOutOfBounds error is generated. As a workaround braces are put around the map access resulting in Chuck_Instr_Array_Access_Map instructions being generated.
2012-09-04simplified string array handlingRobin Haberkorn1-15/+11
possible since string array references can now be declared
2012-09-04if possible save SampOsc source directory for later useRobin Haberkorn1-3/+9
makes SampOsc independant of ChucK VM cwd or directory of shred instantiating SampOsc (only if VM wasn't started with --loop)
2012-08-30replace Chubgraph Clipper with Chugin Clipper, giving a significant speed ↵Robin Haberkorn1-1/+1
increase * Chubgraph Clipper now available as ClipperGraph * Chugins are built in chugins/ and do not need to be installed * additional command line options to ./start_chuck are passed to chuck
2012-08-30updated master Bus to make use of Clipper UGen (simplified)Robin Haberkorn1-10/+3
2012-08-30minor comment changesRobin Haberkorn2-1/+2
2012-08-30revised SampOsc as Chubgraph allowing us to frequency-sync a SampOscRobin Haberkorn1-5/+30
will simplify the LFO patch
2012-08-30implement Clipper as Chubgraph (simplifying usage)Robin Haberkorn1-13/+15
also make members pseudo-private by appending "__"
2012-08-30added Chugen-implementation of Clipper UGenRobin Haberkorn1-0/+10
will probably be slower than the "Clipper" implementation - will test that
2012-08-30add base clase for Chubgraphs implementing some standard methodsRobin Haberkorn1-0/+25
2012-06-28additional live-sampler volume and pitch controlsRobin Haberkorn1-4/+15
* check for collisions when registering scenes/controls in NanoEvent * fixed null-string checks in NanoEvent.ck
2012-06-28fixed live-sampler for stereo sound files (well actually it's still broken ↵Robin Haberkorn1-1/+8
but I do know about the issue now)
2012-06-25add LiSaX class: extension of LiSa that allows loading of audio filesRobin Haberkorn1-0/+16
2012-06-25several fixesRobin Haberkorn2-17/+42
* fixed (pseudo) constructor name ("new" not allowed, use "init" instead) * fixed NanoEvent's channel and CC Id mappings (due to several ChucK bugs, we have to use wrapper classes for strings and arrays) * store CC Id in NanoEvent object (for non-symbolic access to values)
2012-06-06store maximum latency for Sample Oscillator into class attributeRobin Haberkorn1-3/+5
2012-06-06small identation changeRobin Haberkorn1-2/+4
2012-04-30MIDI class removedRobin Haberkorn1-18/+0
2012-04-30NanoEvent MIDI abstraction, List instead of Queue classRobin Haberkorn5-82/+264
* had to adapt all MIDI-using shreds * some (slider/knob) scalings are more sane now (there are helpers for scaling a MIDI message value between two values)
2012-04-30SampOsc code cleanupRobin Haberkorn1-1/+2
2012-04-29make Queue element class publicRobin Haberkorn2-4/+7
necessary for iterating a queue without flushing it
2012-04-28robust MIDI setup, configurable LFO oscillator waveform, multiple LFO shred ↵Robin Haberkorn1-7/+6
support
2012-04-18fixed SampOsc and integrated it as oscillator into lfoRobin Haberkorn1-6/+23
2012-04-16add clarifying comment to Bus shredRobin Haberkorn1-0/+4
2012-04-16added sample-based oscillator classRobin Haberkorn2-0/+26
2012-04-16initial import of files relevant for noise projectRobin Haberkorn5-0/+234