hsc3-0.15: Haskell SuperCollider

Safe HaskellNone
LanguageHaskell98

Sound.SC3.Server.Synthdef

Description

The unit-generator graph structure implemented by the SuperCollider synthesis server.

Synopsis

Documentation

data Synthdef Source

A named unit generator graph.

Constructors

Synthdef 

synthdef :: String -> UGen -> Synthdef Source

Lift a UGen graph into a Synthdef.

defaultSynthdef :: Synthdef Source

The SC3 default instrument Synthdef, see default_ugen_graph.

withSC3 (send (d_recv defaultSynthdef))
audition defaultSynthdef

defaultSampler :: Bool -> Synthdef Source

The SC3 default sample (buffer) playback instrument Synthdef, see default_sampler_ugen_graph.

withSC3 (send (d_recv (defaultSampler False)))
audition (defaultSampler False)

synthdefParam :: Synthdef -> [String] Source

Parameter names at Synthdef.

synthdefParam def == ["amp","pan","gate","freq"]

ugenIndices :: String -> Graph -> [Integer] Source

Find the indices of the named UGen at Graph. The index is required when using u_cmd.

synthdefData :: Synthdef -> ByteString Source

Encode Synthdef as a binary data stream.

synthdefWrite :: Synthdef -> FilePath -> IO () Source

Write Synthdef to indicated directory. The filename is the synthdefName with the appropriate extension (scsyndef).

graph_stat :: Graph -> String Source

Simple statistical analysis of a unit generator graph.