csound-expression-5.3.2: library to make electronic music

Safe HaskellNone
LanguageHaskell98

Csound.Air.Seg

Synopsis

Documentation

data Seg a Source #

A segment of the signal. The signal segment is a limited span of signal in time. The time can be measured in seconds or in events! The time span which is measured in events is the first occurence of the event in the event stream.

There are handy functions for scheduling the signal segments. we can delay the segment or loop over it or limit it with tme interval or play a sequence of segments. The main feature of the segments is the ability to schedule the signals with event streams (like button clicks or midi-events).

Instances

Functor Seg Source # 

Methods

fmap :: (a -> b) -> Seg a -> Seg b #

(<$) :: a -> Seg b -> Seg a #

SigSpace a => SigSpace (Seg a) Source # 

Methods

mapSig :: (Sig -> Sig) -> Seg a -> Seg a #

Sigs a => Melody (Seg a) Source # 

Methods

mel :: [Seg a] -> Seg a #

(+:+) :: Seg a -> Seg a -> Seg a #

Sigs a => Harmony (Seg a) Source # 

Methods

har :: [Seg a] -> Seg a #

(=:=) :: Seg a -> Seg a -> Seg a #

Sigs a => Compose (Seg a) Source # 
Sigs a => Delay (Seg a) Source # 

Methods

del :: DurOf (Seg a) -> Seg a -> Seg a #

(Sigs a, Num a) => Rest (Seg a) Source # 

Methods

rest :: DurOf (Seg a) -> Seg a #

Sigs a => Limit (Seg a) Source # 

Methods

lim :: DurOf (Seg a) -> Seg a -> Seg a #

Sigs a => Loop (Seg a) Source # 

Methods

loop :: Seg a -> Seg a #

type DurOf (Seg a) Source # 
type DurOf (Seg a) = Tick

toSeg :: a -> Seg a Source #

Converts signals to segments. The segment is not limited in length.

runSeg :: Sigs a => Seg a -> a Source #

Converts segments to signals.

constLim :: Sig -> Seg a -> Seg a Source #

Limits the length of the segment with constant length in seconds.

constDel :: Num a => Sig -> Seg a -> Seg a Source #

Delays a segment by a given time interval in seconds.

constRest :: Num a => Sig -> Seg a Source #

A pause. Plays nothing for the given time interval in seconds.

limSnd :: Sigs a => Tick -> a -> a Source #

Limits a signal with an event stream and retriggers it after stop.