1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
|
import Constant, Error, Op, Input, T, sig, evt from require 'alv.base'
import RTNode from require 'alv'
import monotime from require 'system'
clock = Constant.meta
meta:
name: 'clock'
summary: "Create a clock source."
examples: { '(clock)', '(clock fps)' }
description: "Creates a new `time/clock!` stream.
The clock event stream is an IO that triggers other operators at a fixed
frame rate.
- `fps` has to be a num= constant and defaults to `60` if omitted."
value: class extends Op
new: (...) =>
super ...
@out or= T.clock\mk_evt!
setup: (inputs) =>
fps = (-sig.num)\match inputs
super
fps: Input.cold fps or Constant.num 60
io: Input.hot T.bang\mk_evt!
poll: =>
time = monotime!
@state or= time
dt = time - @state
ft = 1 / @inputs.fps!
if dt >= ft
@inputs.io.result\set true
true
tick: =>
time = monotime!
dt = time - @state
@state = time
@out\set :time, :dt
default_clock = do
op = clock!!
op\setup {}
op.out.meta =
name: '*clock*'
summary: 'Default clock source (60fps).'
RTNode :op, result: op.out
scale_time = Constant.meta
meta:
name: 'scale-time'
summary: "Scale clock time."
examples: { '(scale-time [clock] scale)' }
description: "Creates a new clock event stream scaled by `scale`.
- `clock` should be a `time/clock!` stream. This argument can be omitted
and the stream be passed as a dynamic definition in `*clock*` instead.
- `scale` should be a num~ stream."
value: class extends Op
new: (...) =>
super ...
@out or= T.clock\mk_evt!
pattern = -evt.clock + sig.num + -sig.str
setup: (inputs, scope) =>
{ clock, scale } = pattern\match inputs
super
clock: Input.hot clock or scope\get '*clock*'
scale: Input.cold scale
tick: =>
{ :clock, :scale } = @unwrap_all!
@out\set {k, v*scale for k,v in pairs clock}
lfo = Constant.meta
meta:
name: 'lfo'
summary: "Low-frequency oscillator."
examples: { '(lfo [clock] freq [wave])' }
description: "Oscillates betwen `0` and `1` at the frequency `freq`.
- `clock` should be a `time/clock!` stream. This argument can be omitted
and the stream be passed as a dynamic definition in `*clock*` instead.
- `freq` should be a num~ stream.
- `wave` selects the wave shape from one of the following:
- `'sin'` (the default)
- `'saw'`
- `'tri'`"
value: class extends Op
new: (...) =>
super ...
@state or= 0
@out or= T.num\mk_sig!
default_wave = Constant.str 'sin'
pattern = -evt.clock + sig.num + -sig.str
setup: (inputs, scope) =>
{ clock, freq, wave } = pattern\match inputs
super
clock: Input.hot clock or scope\get '*clock*'
freq: Input.cold freq
wave: Input.hot wave or default_wave
tau = math.pi * 2
tick: =>
if tick = @inputs.clock!
@state += tick.dt * @inputs.freq!
@out\set switch @inputs.wave!
when 'sin' then .5 + .5 * math.cos @state * tau
when 'saw' then @state % 1
when 'tri' then math.abs (2*@state % 2) - 1
else error Error 'argument', "unknown wave type '#{wave}'"
vis: =>
{
type: 'bar'
bar: @.out!
}
ramp = Constant.meta
meta:
name: 'ramp'
summary: "Sawtooth LFO."
examples: { '(ramp [clock] period [max])' }
description: "Ramps from `0` to `max` once every `period` seconds.
- `clock` should be a `time/clock!` stream. This argument can be omitted
and the stream be passed as a dynamic definition in `*clock*` instead.
- `period` should be a num~ stream.
- `max` should be a num~ stream and defaults to `period` if omitted."
value: class extends Op
new: (...) =>
super ...
@state or= 0
@out or= T.num\mk_sig 0
pattern = -evt.clock + sig.num + -sig.num
setup: (inputs, scope) =>
{ clock, period, max } = pattern\match inputs
super
clock: Input.hot clock or scope\get '*clock*'
period: Input.cold period
max: max and Input.cold max
tick: =>
{ :clock, :period, :max } = @unwrap_all!
max or= period
return if period == 0
@state += clock.dt / period
while @state >= 1
@state -= 1
@out\set @state * max
vis: =>
{
type: 'bar'
bar: @state
}
tick = Constant.meta
meta:
name: 'tick'
summary: "Count ticks."
examples: { '(tick [clock] period)' }
description: "Counts upwards by one every `period` seconds.
- `clock` should be a `time/clock!` stream. This argument can be omitted
and the stream be passed as a dynamic definition in `*clock*` instead.
- `period` should be a num~ stream.
- returns a `num~` stream that increases by 1 every `period`."
value: class extends Op
new: (...) =>
super ...
@state or= { phase: 0, count: 0 }
@out or= T.num\mk_sig @state.count
pattern = -evt.clock + sig.num
setup: (inputs, scope) =>
{ clock, period } = pattern\match inputs
super
clock: Input.hot clock or scope\get '*clock*'
period: Input.cold period
tick: =>
{ :clock, :period } = @unwrap_all!
return if period == 0
@state.phase += clock.dt / period
if @state.phase >= 1
@state.phase -= 1
@state.count += 1
@out\set @state.count
vis: => type: 'event'
every = Constant.meta
meta:
name: 'every'
summary: "Emit events regularly."
examples: { '(every [clock] period [evt])' }
description: "Emits `evt` as an event once every `period` seconds.
- `clock` should be a `time/clock!` stream. This argument can be omitted
and the stream be passed as a dynamic definition in `*clock*` instead.
- `period` should be a num~ stream.
- `evt` can be a value of any type. It defaults to `bang`.
- the return type will be an event stream with the same type as `evt`."
value: class extends Op
new: (...) =>
super ...
@state or= 0
pattern = -evt.clock + sig.num + -sig!
setup: (inputs, scope) =>
{ clock, period, evt } = pattern\match inputs
super
clock: Input.hot clock or scope\get '*clock*'
period: Input.cold period
evt: Input.cold evt or T.bang\mk_const true
@out = @inputs.evt\type!\mk_evt!
tick: =>
{ :clock, :period, :evt } = @unwrap_all!
return if period == 0
@state += clock.dt / period
if @state >= 1
@state = @state % 1
@out\set evt
val_seq = Constant.meta
meta:
name: 'val-seq'
summary: "Emit a sequence of values as events over time."
examples: { '(val-seq [clock] delay0 evt1 delay1 evt2 delay2…)' }
description: "
Emits `evt1`, `evt2`, … as events with delays `delay0`, `delay1`, … in between.
- `clock` should be a `time/clock!` stream. This argument can be omitted
and the stream be passed as a dynamic definition in `*clock*` instead.
- `delay0`, `delay1`, … must be num~ streams.
- `evt1`, `evt2`, … must be signal streams of the same type.
- the return type will be an event stream with the same type as the `evt`s."
value: class extends Op
new: (...) =>
super ...
@state or= { i: 1, t: 0 }
pair = (sig! + sig.num)\named('value', 'delay')
pattern = -evt.clock + sig.num + pair*0
inputify = (step) ->
{
delay: Input.cold step.delay
value: if step.value then Input.hot step.value
}
setup: (inputs, scope) =>
{ clock, first, steps } = pattern\match inputs
@out = steps[1].value\type!\mk_evt!
table.insert steps, 1, { delay: first }
super
clock: Input.hot clock or scope\get '*clock*'
steps: [inputify step for step in *steps]
tick: =>
if tick = @inputs.clock!
@state.t += tick.dt
change, current = false, nil
while true
current = @inputs.steps[@state.i]
if @state.t >= current.delay!
@state.t -= current.delay!
@state.i = 1 + (@state.i % #@inputs.steps)
change = true
else
break
if current.value and (change or current.value\dirty!)
@out\set current.value!
vis: => step: @state.i
bang_seq = Constant.meta
meta:
name: 'bang-seq'
summary: "Generate rhythms based on a sequence of delays"
examples: { '(bang-seq [clock] delay0 delay1…)' }
description: "
Emits `bang!`s with delays `delay0`, `delay1`, … in between.
- `clock` should be a `time/clock!` stream. This argument can be omitted
and the stream be passed as a dynamic definition in `*clock*` instead.
- `delay0`, `delay1`, … must be num~ streams."
value: class extends Op
new: (...) =>
super ...
@out = T.bang\mk_evt!
@state or= { i: 1, t: 0 }
pattern = -evt.clock + sig.num*0
setup: (inputs, scope) =>
{ clock, steps } = pattern\match inputs
super
clock: Input.hot clock or scope\get '*clock*'
steps: [Input.cold step for step in *steps]
tick: =>
if tick = @inputs.clock!
@state.t += tick.dt
bang = false
while true
current = @inputs.steps[@state.i]!
if @state.t >= current
@state.t -= current
@state.i = 1 + (@state.i % #@inputs.steps)
bang = true
else
break
if bang
@out
vis: => step: @state.i\set true
RTNode
children: { default_clock }
result: Constant.meta
meta:
name: 'time'
summary: "Time-variant operators."
value:
:clock
'scale-time': scale_time
:lfo
:ramp
:tick
:every
'val-seq': val_seq
'bang-seq': bang_seq
'*clock*': default_clock
|