-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
174 additions
and
0 deletions.
There are no files selected for viewing
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,118 @@ | ||
import numpy as np | ||
from fakebox.dsp import DSPObj, DSPZero | ||
|
||
|
||
class Dummy(DSPObj): | ||
|
||
def __init__(self, in_n, out_n): | ||
|
||
self.in_n = in_n | ||
self.out_n = out_n | ||
super().__init__() | ||
|
||
def _tick(self, ins): | ||
return DSPZero | ||
|
||
|
||
class Dup(DSPObj): | ||
|
||
def __init__(self, in_n, factor): | ||
|
||
self.in_n = in_n | ||
self.out_n = in_n * factor | ||
super().__init__() | ||
|
||
def _tick(self, ins): | ||
|
||
outs = [ins[i % self.in_n] for i in range(self.out_n)] | ||
return outs | ||
|
||
|
||
class Router(DSPObj): | ||
|
||
def __init__(self, ins2outs, in_n=None, out_n=None): | ||
|
||
if not in_n: | ||
in_n = max(ins2outs.keys()) | ||
|
||
if not out_n: | ||
out_n = max(ins2outs.values) | ||
|
||
zero_outlets = set() | ||
|
||
self.in_n = in_n | ||
self.out_n = out_n | ||
self.ins2outs = ins2outs | ||
super().__init__() | ||
|
||
def _tick(self, ins): | ||
|
||
outs_d = {out: ins[in_] for in_, out in ins2outs.items()} | ||
outs = [outs_d.get(o, DSPZero) for o in range(self.out_n)] | ||
return outs | ||
|
||
|
||
class Pipe(DSPObj): | ||
|
||
def __init__(self, objs): | ||
|
||
assert(objs) | ||
|
||
for idx, obj in enumerate(objs[:-1]): | ||
next_obj = objs[idx + 1] | ||
assert(obj.out_n == next_obj.in_n) | ||
|
||
self.objs = objs | ||
self.in_n = self.objs[0].in_n | ||
self.out_n = self.objs[-1].out_n | ||
|
||
super().__init__() | ||
|
||
def _tick(self, ins): | ||
|
||
objs = self.objs | ||
|
||
for i in range(len(ins)): | ||
objs[0].in_buffer[i] = ins[i] | ||
|
||
for idx, obj in enumerate(objs[:-1]): | ||
next_obj = objs[idx + 1] | ||
obj.tick() | ||
for i in range(len(obj.out_buffer)): | ||
next_obj.in_buffer[i] = obj.out_buffer[i] | ||
|
||
last_obj = objs[-1] | ||
last_obj.tick() | ||
|
||
return np.copy(last_obj.out_buffer) | ||
|
||
|
||
class Stack(DSPObj): | ||
|
||
def __init__(self, objs): | ||
|
||
assert(objs) | ||
|
||
self.in_n = sum(obj.in_n for obj in objs) | ||
self.out_n = sum(obj.out_n for obj in objs) | ||
|
||
super().__init__() | ||
|
||
def _tick(self, ins): | ||
|
||
objs = self.objs | ||
|
||
# copy input to objs' input | ||
|
||
in_idx = 0 | ||
outs = [] | ||
|
||
for obj in objs: | ||
for i in range(obj.in_n): | ||
obj.in_buffer[i] = ins[in_idx] | ||
in_idx += 1 | ||
|
||
obj.tick() | ||
outs.extend(obj.out_buffer) | ||
|
||
return outs |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
import numpy as np | ||
|
||
from fakebox.dsp import DSPObj, DSPFloat, DSPZero | ||
from fakebox.lib.ba import Pipe | ||
|
||
|
||
class Phasor(DSPObj): | ||
|
||
def __init__(self, freq, init_phase=0.0): | ||
|
||
self.in_n = 2 | ||
self.out_n = 1 | ||
self.freq = freq | ||
self.init_phase = init_phase | ||
self.phase = self.init_phase | ||
super().__init__() | ||
|
||
def _tick(self, ins): | ||
freq_mod = ins[0] | ||
reset_phase_gate = ins[1] | ||
|
||
if reset_phase_gate > 0: | ||
self.reset_phase() | ||
|
||
current_phase = self.phase | ||
|
||
freq = self.freq + freq_mod | ||
inc_per_sample = freq / self.sample_rate | ||
raw_phase = current_phase + inc_per_sample | ||
self.phase = raw_phase % 1 | ||
return current_phase | ||
|
||
def reset_phase(self): | ||
self.phase = self.init_phase | ||
self.counter = 0 | ||
|
||
|
||
class Sin(DSPObj): | ||
|
||
def __init__(self): | ||
|
||
self.in_n = 1 | ||
self.out_n = 1 | ||
|
||
super().__init__() | ||
|
||
def _tick(self, ins): | ||
phase = ins[0] | ||
return np.sin(2 * np.pi * phase) | ||
|
||
|
||
def make_sinosc(freq, init_phase=0.0): | ||
phasor = Phasor(freq, init_phase) | ||
sinraw = Sin() | ||
sinosc = Pipe([phasor, sinraw]) | ||
return sinosc |