PatternProxy:
Filter:
Classes | JITLib > Patterns | Live Coding

PatternProxy : Pattern : AbstractFunction : Object

stream reference
Source: Pdef.sc
Subclasses: Pdefn, TaskProxy

Description

Keeps a reference to a stream that can be replaced while playing. Multiple streams are thus handled without creating dependencies.

Class Methods

PatternProxy.new(source)

create a new instance with a pattern (the source). the pattern should be a value pattern (see Pdefn).

for event pattern proxy, see: EventPatternProxy. instead of a pattern, a function can be passed in, creating a routine.

PatternProxy.default

a default source, if none is given. the default is 1.0 (it is not 0.0 in order to make it safe for durations)

PatternProxy.defaultQuant

PatternProxy.defaultQuant = value

set the default quantization value for the class. (default: nil)

PatternProxy.defaultValue

a default return value, if no source is given. the default is 1.0 (it is not 0.0 in order to make it safe for durations). This is used in -endless.

Inherited class methods

Instance Methods

.asStream

Return a Stream from this pattern. One pattern proxy can be used to produce any number of independent streams.

.embedInStream(inval, embed: true, default)

Given a Stream like e.g. Routine, yield all values from the pattern in the proxy before continuing. One pattern proxy can be used to produce values for any number of independent streams.

Arguments:

inval

The inval is passed into all substreams and can be used to control how they behave from the outside.

embed

See Object: -streamArg for explanation.

default

Replacement for nil outputs of the source pattern. One use case is -endless.

.source

.source = obj

set the source. If a quantization is given, schedule this change to the next beat

.clear

set the source to nil

.quant

.quant = val

set or get the quantization value

.condition

.condition = value

provide a condition under which the pattern is switched when a new one is inserted. the stream value and a count is passed into the function. the methods count_(n) simply counts up to n and switches the pattern then

.embedInStream(inval, embed: true, default)

just like any pattern, embeds itself in stream

Methods implemented for subclasses

PatternProxy implements some methods for the benefits of its subclasses Pdefn / Pdef / Tdef which are not useful for PatternProxy and TaskProxy.

.envir

.envir = value

provide a default environment for the proxy. If given, it is used as an environment for the routine function. When set for the first time, the routine pattern is rebuilt.

.set( ... args)

set arguments in the environment. If there is none, it is created and the pattern is rebuilt.

.endless(default)

returns a Prout that plays the proxy endlessly, replacing nil with a default value (1). This allows to create streams that idle on until a new pattern is inserted.

Inherited instance methods

Undocumented instance methods

.asCode

From extension in /usr/local/share/SuperCollider/SCClassLibrary/JITLib/Patterns/extPostAsCode.sc

.buildForProxy

From extension in /usr/local/share/SuperCollider/SCClassLibrary/JITLib/ProxySpace/wrapForNodeProxy.sc

.clock

.clock = value

.constrainStream(stream, newStream)

.convertFunction(func)

.copy

.copyState(proxy)

.count(n: 1)

.defaultEvent

.embed(val)

.get(key)

.isEventPattern

.pattern

.pattern = pat

.phase

.phase = val

.place( ... args)

.quantBeat

.quantBeat = val

.receiveEvent

.remove

.repositoryArgs

.reset

.sched(func)

.setSource(obj)

.softSet(param, val, within: 0.025, mapped: true, lastVal, spec)

From extension in /usr/local/share/SuperCollider/SCClassLibrary/JITLib/GUI/extSoftSet.sc

.timingOffset

.timingOffset = val

.unset( ... args)

Examples